/* Reset & Base */
:root {
  /* Colors */
  --color-base: #ffffff;
  --color-main: #022c22; /* Deep Dark Green */
  --color-primary: #047857; /* Rich Green */
  --color-accent: #34d399; /* Neon Green */
  --color-accent-hover: #10b981;
  --color-text: #1f2937;
  --color-text-light: #9ca3af;
  --color-bg-light: #f8fafc;
  
  /* Typography */
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Poppins', sans-serif;
  
  /* Layout */
  --header-height: 80px;
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-jp);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-base);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

.d-block {
  display: block;
}

/* Opening Animation */
.opening-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-main);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.opening-logo {
  font-family: var(--font-jp); /* 日本語フォントに変更 */
  font-size: 8rem; /* さらに巨大化 */
  font-weight: 900;
  color: #ffffff; /* 真っ白に変更 */
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px) scale(0.9); /* スケールアニメーションの準備 */
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.4); /* 発光効果も白ベースに */
}

@media (max-width: 768px) {
  .opening-logo {
    font-size: 4rem; /* スマホでの調整 */
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  /* スマホのアドレスバー対策 */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  transition: height 0.4s ease;
  padding: 0 24px;
  max-width: 100%; /* containerのmax-widthを上書き */
  width: 100%;
}

.header.scrolled .header-container {
  height: 60px;
}

.logo a {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.05em;
}

.logo .logo-en {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.nav ul {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-en);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-main);
  position: relative;
  letter-spacing: 0.05em;
}

.nav-link:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-link:not(.btn-nav):hover::after {
  width: 100%;
}

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

.btn-nav:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.2);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  /* margin-rightを削除して左右対称に */
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-main);
  transition: all 0.3s ease;
  transform-origin: center center;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
  background: var(--color-base);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.shape-1 {
  width: 700px; /* 少し大きく */
  height: 700px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.25) 0%, rgba(255, 255, 255, 0) 70%); /* 濃さは控えめに、範囲を広げる */
  top: -15%;
  right: -15%;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(4, 120, 87, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: 5%;
  left: -10%;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  top: 40%;
  right: 20%;
}

/* WebGL Container - Three.js Object */
#webgl-container {
  position: absolute;
  top: 0;
  right: 5%;
  width: 50%;
  height: 100%;
  z-index: 1; /* ヘッダーより下に */
  pointer-events: none;
}

/* スマホ・タブレットではオブジェクトを背景に回す */
@media (max-width: 960px) {
  #webgl-container {
    width: 100%;
    right: auto;
    left: 0;
    z-index: 0; /* テキストより後ろに */
    opacity: 0.15; /* 薄くして背景として機能させる */
  }
}

.hero-container {
  position: relative;
  z-index: 2; /* オブジェクトより上、ヘッダーより下 */
}

/* スマホではテキストを確実に前面に */
@media (max-width: 960px) {
  .hero-container {
    z-index: 2;
  }
}

.hero-content {
  max-width: 800px;
}

.hero-lead {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  display: block;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-main);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.text-accent {
  color: transparent;
  -webkit-text-stroke: 1px var(--color-primary);
  position: relative;
  display: inline-block;
}

.text-accent::after {
  content: '加速';
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-accent);
  -webkit-text-stroke: 0;
  clip-path: inset(0 100% 0 0);
  animation: fillText 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards 1s;
}

@keyframes fillText {
  to { clip-path: inset(0 0 0 0); }
}

.hero-text {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 48px;
  max-width: 600px;
  color: #4b5563;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--color-main);
  color: #fff;
  border: 2px solid var(--color-main);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-main);
}

.btn-primary:hover .arrow {
  transform: translateX(5px);
}

.arrow {
  transition: transform 0.3s ease;
}

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

.btn-secondary:hover {
  background: var(--color-main);
  color: #fff;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badge {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(4, 120, 87, 0.08);
  padding: 8px 16px;
  border-radius: 30px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.scroll-indicator span {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-main);
  font-weight: 700;
  writing-mode: vertical-rl;
}

.scroll-indicator .line {
  width: 1px;
  height: 60px;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.scroll-indicator .line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-main);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Sections Common */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.section-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.section-title .en {
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-main);
  opacity: 0.1;
  position: absolute;
  top: -40px;
  left: -20px;
  white-space: nowrap;
  pointer-events: none;
}

.section-title .jp {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-main);
  position: relative;
  padding-left: 20px;
}

.section-title .jp::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 40px;
  background: var(--color-accent);
}

.watermark {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-size: 15vw;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.02);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

/* About Section */
.about {
  background-color: var(--color-base);
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-lead {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-main);
}

.about-desc p {
  color: #4b5563;
  margin-bottom: 16px;
  line-height: 2;
}

.about-desc p:last-child {
  margin-bottom: 0;
}

/* PC専用改行 */
.pc-only {
  display: inline;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

/* Service Section */
.service {
  background-color: var(--color-main);
  color: #fff;
  clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
  padding-top: 170px; /* clip-path分 + 余白 */
}

.service .section-title .en {
  color: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.service .section-title .jp {
  color: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  border-color: var(--color-accent);
}

.service-number {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-accent);
}

.service-card p {
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.8;
}

/* Company Section */
.company {
  background-color: var(--color-bg-light);
  padding-top: 120px;
}

.company-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.company-row {
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid #e5e7eb;
}

.company-row:last-child {
  border-bottom: none;
}

.company-row dt {
  width: 200px;
  font-weight: 700;
  color: var(--color-main);
  flex-shrink: 0;
}

.company-row dd {
  flex: 1;
  color: #4b5563;
}

.business-list {
  padding-left: 0;
}

.business-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 8px;
}

.business-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* Contact Section */
.contact-box {
  background: var(--color-main);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  /* margin-bottom: -60px; 削除: フッターへの被りを解除 */
  z-index: 10;
}

.contact-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-header {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.contact .section-title .en {
  color: rgba(255, 255, 255, 0.1);
  left: 50%;
  transform: translateX(-50%);
}

.contact .section-title .jp {
  color: #fff;
  padding-left: 0;
  display: inline-block;
}

.contact .section-title .jp::before {
  display: none;
}

.contact-text {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #d1d5db;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 60px;
  background: #fff;
  color: var(--color-main);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-contact:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: var(--color-accent);
  color: #fff;
}

/* Form Styles */
.form-section {
  padding-top: 180px; /* Header height + spacing */
  padding-bottom: 120px;
  background-color: #f0fdf4; /* Very light green background */
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 20px 40px rgba(6, 78, 59, 0.08); /* Greenish shadow */
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 6px solid var(--color-main); /* Top Accent Line */
  position: relative;
}

.form-title {
  text-align: center;
  margin-bottom: 40px;
}

.form-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 10px;
}

.form-title p {
  color: #6b7280;
  font-size: 0.95rem;
}

/* Form Alert */
.form-alert {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.7;
}

.form-alert--error {
  background: #fef2f2;
  border: 2px solid #fecaca;
  color: #991b1b;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--color-main);
  font-size: 0.95rem;
}

.form-group label .required {
  color: #ef4444;
  font-size: 0.8rem;
  margin-left: 6px;
  vertical-align: top;
}

.form-control {
  width: 100%;
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.1);
}

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

.form-btn-wrapper {
  margin-top: 40px;
  text-align: center;
}

.btn-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  padding: 18px;
  background: var(--color-main);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(2, 44, 34, 0.15);
}

.btn-submit:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(2, 44, 34, 0.25);
}

@media (max-width: 768px) {
  .form-wrapper {
    padding: 30px 20px;
  }
  
  .name-group {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-section {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

/* Footer */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 0 40px; /* 重なり解除に合わせて余白を調整 */
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  text-align: center;
}

.footer-logo h2 {
  font-family: var(--font-jp);
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.footer-logo .logo-sub {
  font-size: 0.8rem;
  opacity: 0.6;
}

.copyright {
  font-size: 0.8rem;
  font-family: var(--font-en);
}

/* Responsive */
@media (max-width: 960px) {
  :root {
    --header-height: 60px;
  }
  
  .header-container {
    padding: 0 16px; /* スマホでは少し狭く */
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 16px;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    padding: 100px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }
  
  .nav.active {
    transform: translateX(0);
  }
  
  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  /* ===== Hero Section ===== */
  .hero {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height - スマホのアドレスバー対応 */
  }
  
  .hero-container {
    padding-top: 100px;
  }
  
  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
    line-height: 1.4;
  }
  
  .hero-lead {
    font-size: 0.7rem;
    margin-bottom: 10px;
    letter-spacing: 0.15em;
  }
  
  .hero-text {
    font-size: 0.85rem;
    margin-bottom: 24px;
    line-height: 1.8;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.85rem;
    justify-content: center;
  }
  
  .hero-badges {
    gap: 6px;
    margin-bottom: 0;
  }
  
  .hero-badge {
    font-size: 0.65rem;
    padding: 5px 10px;
  }
  
  .scroll-indicator {
    bottom: 20px;
    z-index: 10;
  }
  
  .scroll-indicator span {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
  }
  
  .scroll-indicator .line {
    height: 24px;
  }

  /* ===== Sections Common ===== */
  .section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 32px;
  }
  
  .section-title .en {
    font-size: 2rem;
    top: -20px;
  }
  
  .section-title .jp {
    font-size: 1.3rem;
  }
  
  .watermark {
    font-size: 4rem;
    top: 20px;
    right: -10px;
  }

  /* ===== About Section ===== */
  .about-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .about-desc p {
    font-size: 0.85rem;
    line-height: 1.9;
    margin-bottom: 12px;
  }

  /* ===== Service Section ===== */
  .service {
    clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 100%);
    padding-top: 100px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .service-card {
    padding: 24px 20px;
  }
  
  .service-number {
    font-size: 2rem;
    top: 8px;
    right: 12px;
  }
  
  .service-icon {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  
  .service-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 0.8rem;
    line-height: 1.7;
  }

  /* ===== Company Section ===== */
  .company-wrapper {
    padding: 20px 16px;
    border-radius: 12px;
  }
  
  .company-row {
    flex-direction: column;
    gap: 6px;
    padding: 14px 0;
  }
  
  .company-row dt {
    width: 100%;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
  }
  
  .company-row dd {
    font-size: 0.85rem;
    line-height: 1.7;
  }
  
  .business-list li {
    font-size: 0.8rem;
    padding-left: 14px;
    margin-bottom: 6px;
  }
  
  .business-list li::before {
    width: 5px;
    height: 5px;
    top: 8px;
  }

  /* ===== Contact Section ===== */
  .contact-box {
    padding: 40px 20px;
    border-radius: 16px;
  }
  
  .contact-box .section-title .en {
    font-size: 2rem;
  }
  
  .contact-box .section-title .jp {
    font-size: 1.2rem;
  }
  
  .contact-text {
    font-size: 0.85rem;
    line-height: 1.7;
  }
  
  .btn-contact {
    padding: 14px 32px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  /* ===== Footer ===== */
  .footer {
    padding: 40px 0;
  }
  
  .footer-logo h2 {
    font-size: 1.3rem;
  }
  
  .footer-logo .logo-sub {
    font-size: 0.7rem;
  }
  
  .copyright {
    font-size: 0.65rem;
    margin-top: 16px;
  }
}
