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

:root {
  --primary: #1D9E75;
  --primary-light: #5DCAA5;
  --primary-dark: #0F6E56;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ========== NAVIGATION ========== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.nav-logo img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-logo:hover {
  opacity: 0.75;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ========== HAMBURGER MENU ========== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu-overlay.active {
  display: flex;
}

.mobile-menu-overlay a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 250px;
  text-align: center;
}

.mobile-menu-overlay a:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ========== HERO SECTION ========== */
#hero {
  height: 100vh;
  background: #000;
  position: relative;
  overflow: hidden;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
  transition: background 4s ease, box-shadow 4s ease;
}

.code-stream {
  position: absolute;
  font-family: monospace;
  font-size: 9px;
  color: #5DCAA5;
  white-space: nowrap;
  will-change: transform, opacity;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(93, 202, 165, 0.8);
  transition: color 4s ease, text-shadow 4s ease;
}

.tech-floating {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9FE1CB;
  will-change: transform, opacity;
  font-size: 24px;
  transition: color 4s ease;
  text-shadow: 0 0 15px rgba(159, 225, 203, 0.9);
}

#hero-bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s;
}

.flow-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1D9E75, transparent);
  opacity: 0.3;
  will-change: transform;
  transition: background 4s ease;
}

.spiral-trail {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s;
}

#hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  text-align: center;
  transition: opacity 2.5s;
  z-index: 100;
  pointer-events: none;
  width: 95%;
}

#hero-logo h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 110px;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: 18px;
  margin: 0;
  color: #ffffff;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.9),
    0 0 40px rgba(255, 255, 255, 0.7),
    0 0 60px rgba(255, 255, 255, 0.5),
    0 0 80px rgba(255, 255, 255, 0.3);
  animation: logoGlow 2.5s ease-in-out infinite;
}

#hero-logo .hero-text {
  font-size: 30px;
  color: #ffffff;
  letter-spacing: 6px;
  margin: 32px 0 0 0;
  font-weight: 500;
  text-shadow:
    0 0 15px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(255, 255, 255, 0.6),
    0 0 45px rgba(255, 255, 255, 0.4);
}

@keyframes logoGlow {
  0%, 100% {
    text-shadow:
      0 0 20px rgba(255, 255, 255, 0.9),
      0 0 40px rgba(255, 255, 255, 0.7),
      0 0 60px rgba(255, 255, 255, 0.5),
      0 0 80px rgba(255, 255, 255, 0.3);
  }
  50% {
    text-shadow:
      0 0 25px rgba(255, 255, 255, 1),
      0 0 50px rgba(255, 255, 255, 0.8),
      0 0 75px rgba(255, 255, 255, 0.6),
      0 0 100px rgba(255, 255, 255, 0.4);
  }
}

#hero-center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  z-index: 99;
  pointer-events: none;
  animation: iconGlow 2.5s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% {
    filter:
      drop-shadow(0 0 4px rgba(136, 108, 52, 1))
      drop-shadow(0 0 10px rgba(136, 108, 52, 0.8))
      drop-shadow(0 0 22px rgba(136, 108, 52, 0.5))
      drop-shadow(0 0 40px rgba(136, 108, 52, 0.25));
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    filter:
      drop-shadow(0 0 7px rgba(136, 108, 52, 1))
      drop-shadow(0 0 18px rgba(136, 108, 52, 0.9))
      drop-shadow(0 0 36px rgba(136, 108, 52, 0.6))
      drop-shadow(0 0 65px rgba(136, 108, 52, 0.3));
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-align: center;
  animation: bounce 2s infinite;
  z-index: 100;
}

.scroll-indicator i {
  display: block;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ========== SECTIONS ========== */
section {
  padding: 100px 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== NEWS ========== */
#news {
  background: var(--bg-light);
}

.news-list {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
  overflow: hidden;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
  transition: background 0.2s ease;
  cursor: pointer;
}

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

.news-item:hover {
  background: var(--bg-light);
}

.news-date {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-category {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--primary-light);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-item .news-title {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.4;
  flex: 1;
}

a.news-item {
  text-decoration: none;
}

/* ========== MORE LINK ========== */
.section-more {
  text-align: center;
  margin-top: 2rem;
}

.more-link {
  display: inline-block;
  padding: 0.7rem 2rem;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.more-link:hover {
  background: var(--primary);
  color: var(--white);
}

.more-link i {
  margin-left: 0.3rem;
  transition: transform 0.3s ease;
}

.more-link:hover i {
  transform: translateX(4px);
}

/* ========== BLOG ========== */
#blog {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  display: block;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-dark);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(29, 158, 117, 0.2);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  overflow: hidden;
}

.blog-card-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-category {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--primary-light);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.blog-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== SERVICES ========== */
#services {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.service-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 2px solid transparent;
  border-radius: 16px;
  transition: all 0.3s ease;
  background: var(--white);
}

.service-card:hover {
  border-color: var(--primary-light);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(29, 158, 117, 0.15);
  transform: translateY(-5px);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(29, 158, 117, 0.3);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ========== WORKS ========== */
#works {
  background: var(--white);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.works-card {
  display: block;
  position: relative;
  background: var(--white);
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

a.works-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(29, 158, 117, 0.2);
}

.works-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-light);
  border-radius: 12px 12px 0 0;
}

.works-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

a.works-card:hover .works-card-image img {
  transform: scale(1.05);
}

.works-card-body {
  padding: 1rem;
}

.works-card-body h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.works-card-body p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.works-badge {
  position: absolute;
  top: -0.5rem;
  left: -0.3rem;
  z-index: 2;
  padding: 0.25rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.works-text-list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.works-text-group h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--primary);
}

.works-text-group dl {
  margin: 0;
}

.works-text-group dt {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0 0.2rem;
}

.works-text-group dt a {
  color: var(--primary-dark);
  text-decoration: none;
}

.works-text-group dt a:hover {
  text-decoration: underline;
}

.works-text-group dd {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-left: 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.works-badge-sm {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  border-radius: 3px;
  vertical-align: middle;
}

@media (max-width: 1200px) {
  .works-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .works-text-list {
    grid-template-columns: 1fr;
  }

  .works-card-body h3 {
    font-size: 0.85rem;
  }

  .works-card-body p {
    font-size: 0.78rem;
  }
}

.works-detail-image {
  margin: 2rem 0;
  text-align: center;
}

.works-detail-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

.works-detail-badge {
  margin-bottom: 1.5rem;
}

.works-detail-link {
  margin-top: 2rem;
  text-align: center;
}

.works-detail-link .nav-button i {
  margin-right: 0.4rem;
}

/* ========== PROGRAMS ========== */
#programs {
  background: var(--white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.program-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(29, 158, 117, 0.2);
}

.program-header {
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}

.program-type {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.program-version {
  font-size: 0.9rem;
  opacity: 0.8;
}

.program-content {
  padding: 1.5rem 2rem;
  flex: 1;
}

.program-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.program-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.program-features li {
  padding: 0.4rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.program-features li i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.program-footer {
  padding: 0 2rem 2rem 2rem;
  display: flex;
  gap: 1rem;
}

.btn {
  flex: 1;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(29, 158, 117, 0.3);
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

/* ========== CONTACT ========== */
#contact {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}

#contact .section-title,
#contact .section-subtitle {
  color: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.3rem;
  margin-top: 0.2rem;
  color: var(--primary-light);
}

.contact-item div h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-item div p {
  opacity: 0.9;
  line-height: 1.6;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--white);
  background: var(--white);
}

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

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--white);
  color: var(--primary);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--primary-light);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ========== CAPTCHA ========== */
.captcha-group {
  margin-bottom: 1.5rem;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.captcha-image {
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  height: 50px;
}

.captcha-reload {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.captcha-reload:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
}

/* ========== FORM MESSAGE ========== */
.form-message {
  padding: 0;
  margin-bottom: 0;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.form-message.show {
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.form-message.success {
  background: rgba(29, 158, 117, 0.2);
  border: 1px solid var(--primary-light);
  color: var(--white);
}

.form-message.error {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid #dc3545;
  color: #ffcccc;
}

/* ========== FOOTER ========== */
footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 2rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-icon {
  height: 50px;
  width: auto;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.copyright {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #hero-logo h1 {
    font-size: 60px;
    letter-spacing: 10px;
  }

  #hero-logo .company {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .news-item {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
  }

  .news-item .news-title {
    width: 100%;
  }

  .blog-grid,
  .programs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
  }

  .nav-logo img {
    height: 22px;
  }

  #hero-logo h1 {
    font-size: 40px;
    letter-spacing: 5px;
  }

  #hero-logo .company {
    font-size: 12px;
  }

}
