@charset "UTF-8";

:root {
  --charcoal-dark: #1a1a2e;
  --charcoal: #16213e;
  --teal-electric: #0f9b8e;
  --teal-light: #2dd4bf;
  --amber-warm: #f59e0b;
  --amber-light: #fbbf24;
  --text-white: #ffffff;
  --text-dark: #1a1a2e;
  --text-light: #e5e7eb;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --card-bg: #ffffff;
  --gradient-hero: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 50%, var(--teal-electric) 100%);
  --gradient-cta: linear-gradient(135deg, var(--teal-electric) 0%, var(--teal-light) 100%);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-brutalist: 6px 6px 0px var(--amber-warm);
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: #f8fafc;
  overflow-x: hidden;
}

strong, b, p {
  color: inherit;
}

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

a {
  color: var(--teal-electric);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--teal-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  min-height: 52px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--text-white);
  box-shadow: 0 4px 16px rgba(15, 155, 142, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 155, 142, 0.45);
  color: var(--text-white);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.btn-secondary:hover {
  background: var(--text-white);
  color: var(--charcoal-dark);
}

.btn-accent {
  background: var(--amber-warm);
  color: var(--text-dark);
  box-shadow: var(--shadow-brutalist);
}

.btn-accent:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px rgba(245, 158, 11, 0.4);
  color: var(--text-dark);
}


header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(26, 26, 46, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.navbar {
  padding: 16px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white) !important;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-cta);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--teal-light) !important;
  background: rgba(45, 212, 191, 0.1);
}


.navbar-toggler {
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  background: transparent;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mobile-menu {
  background: var(--charcoal-dark);
  border-top: 1px solid var(--glass-border);
  padding: 20px 0;
}

.mobile-menu .nav-link {
  padding: 12px 20px !important;
  font-size: 16px;
}


.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/img/texture-pattern.webp') repeat;
  opacity: 0.05;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(45, 212, 191, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-title span {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--amber-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
}

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

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--glass-border);
}


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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
  color: var(--charcoal-dark);
}

.section-subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}


.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--teal-electric);
}


.white-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.white-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}


.services-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-cta);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
}

.service-title {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--charcoal-dark);
}

.service-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--teal-electric);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}


.about-section {
  background: var(--charcoal-dark);
  color: var(--text-white);
}

.about-section .section-title {
  color: var(--text-white);
}

.about-section .section-subtitle {
  color: var(--text-light);
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

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


.features-section {
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--amber-warm);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--charcoal-dark);
}

.feature-content p {
  color: #64748b;
  margin: 0;
}


.portfolio-section {
  background: var(--charcoal-dark);
}

.portfolio-section .section-title {
  color: var(--text-white);
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(26, 26, 46, 0.95));
  color: var(--text-white);
}

.portfolio-overlay h4 {
  color: var(--text-white);
  font-size: 18px;
  margin-bottom: 4px;
}

.portfolio-overlay p {
  font-size: 14px;
  color: var(--teal-light);
  margin: 0;
}


.testimonials-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.testimonial-rating {
  color: var(--amber-warm);
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  color: #475569;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h5 {
  font-size: 16px;
  margin-bottom: 2px;
  color: var(--charcoal-dark);
}

.author-info p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}


.process-section {
  background: var(--gradient-hero);
}

.process-section .section-title {
  color: var(--text-white);
}

.process-step {
  text-align: center;
  padding: 40px 24px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--teal-light);
  margin: 0 auto 24px;
}

.process-step h4 {
  font-size: 22px;
  color: var(--text-white);
  margin-bottom: 12px;
}

.process-step p {
  color: var(--text-light);
  margin: 0;
}


.cta-section {
  background: linear-gradient(135deg, var(--teal-electric) 0%, var(--teal-light) 100%);
  padding: 80px 0;
}

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

.cta-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}


.contact-section {
  background: #f8fafc;
}

.contact-info-card {
  background: var(--charcoal-dark);
  border-radius: var(--radius-md);
  padding: 40px;
  color: var(--text-white);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-electric);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-item h5 {
  font-size: 14px;
  color: var(--teal-light);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-item p {
  font-size: 16px;
  color: var(--text-white);
  margin: 0;
}

.contact-form {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal-dark);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--teal-electric);
  box-shadow: 0 0 0 4px rgba(15, 155, 142, 0.1);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}


.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}


footer {
  background: var(--charcoal-dark);
  color: var(--text-white);
  padding: 80px 0 0;
}

.footer-content {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  font-size: 20px;
}

.footer-logo span {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
}

.footer-about p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--teal-electric);
  border-color: var(--teal-electric);
  color: var(--text-white);
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 24px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-light);
  font-size: 15px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
}


.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 420px;
  background: var(--charcoal-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-consent-banner h5 {
  color: var(--text-white);
  font-size: 16px;
  margin-bottom: 12px;
}

.cookie-consent-banner p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 16px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background: var(--teal-electric);
  color: var(--text-white);
}

.cookie-btn-accept:hover {
  background: var(--teal-light);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--glass-border);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}


.page-header {
  background: var(--gradient-hero);
  padding: 140px 0 60px;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/img/texture-pattern2.webp') repeat;
  opacity: 0.03;
}

.page-title {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--text-white);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--teal-light);
}


.blog-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.blog-article h2 {
  font-size: 28px;
  margin: 40px 0 20px;
  color: var(--charcoal-dark);
}

.blog-article h3 {
  font-size: 22px;
  margin: 32px 0 16px;
  color: var(--charcoal-dark);
}

.blog-article p {
  font-size: 17px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 20px;
}

.blog-article ul,
.blog-article ol {
  margin-bottom: 24px;
  padding-left: 28px;
}

.blog-article li {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 12px;
}


.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-question:hover {
  color: var(--teal-electric);
}

.faq-icon {
  font-size: 24px;
  color: var(--teal-electric);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-content {
  padding: 0 24px 24px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
}


.text-gradient {
  background: linear-gradient(135deg, var(--teal-electric) 0%, var(--amber-warm) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-hero);
}

.bg-gradient-secondary {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.mb-6 {
  margin-bottom: 60px;
}

.mt-6 {
  margin-top: 60px;
}


@media (max-width: 991.98px) {
  .hero-content {
    padding: 100px 0 60px;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    margin-top: 40px;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .cookie-consent-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 60px 0;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
    min-height: 48px;
  }
  
  .footer-content > .row > .col-md-4 {
    margin-bottom: 40px;
  }
  
  .contact-form {
    padding: 24px;
  }
  
  .contact-info-card {
    padding: 24px;
  }
}

@media (max-width: 575.98px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}


.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

@media (min-width: 768px) {
  .gallery-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}


.price-list {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f0;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item-name {
  font-weight: 600;
  color: var(--charcoal-dark);
}

.price-item-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--teal-electric);
}


.status-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge-new {
  background: var(--teal-electric);
  color: var(--text-white);
}

.status-badge-popular {
  background: var(--amber-warm);
  color: var(--text-dark);
}


.blog-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.blog-card-image img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
}
.blog-meta {
  font-size: 13px;
  color: #64748b;
}
.blog-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.blog-title a {
  color: var(--charcoal-dark);
  text-decoration: none;
}
.blog-title a:hover {
  color: var(--teal-electric);
}
.blog-excerpt {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}


.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-electric);
}
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: var(--radius-sm);
  color: var(--charcoal-dark);
  text-decoration: none;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}
.category-item a:hover {
  background: var(--teal-electric);
  color: var(--text-white);
}
.popular-post {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.popular-post img {
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.popular-post h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.4;
}
.tag-cloud .badge {
  background: #f1f5f9;
  color: var(--charcoal-dark);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.tag-cloud .badge:hover {
  background: var(--teal-electric);
  color: var(--text-white);
}
.cta-card {
  background: linear-gradient(135deg, var(--teal-electric) 0%, var(--teal-light) 100%);
  border-radius: var(--radius-md);
  padding: 32px;
  color: var(--text-white);
  text-align: center;
}


.article-header {
  margin-bottom: 40px;
}
.article-meta {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 16px;
}
.article-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 40px;
}
.article-image img {
  width: 100%;
  height: auto;
}
.article-body h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}
.article-body p {
  font-size: 17px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 24px;
}
