/* ===== 新デザインシステム CSS ===== */

/* ===== CSS Variables ===== */
:root {
  /* カラーパレット */
  --color-white: #FFFFFF;
  --color-light-gray: #F7FAFC;
  --color-cool-gray: #E2E8F0;
  --color-warm-gray: #718096;
  --color-charcoal: #2D3748;
  
  /* グリーンアクセント */
  --color-primary-green: #38A169;
  --color-light-green: #68D391;
  --color-dark-green: #2F855A;
  --color-success-green: #48BB78;
  
  /* フォントファミリー */
  --font-primary: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  --font-english: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
  /* フォントサイズ */
  --text-4xl: 2.25rem; /* 36px */
  --text-3xl: 1.875rem; /* 30px */
  --text-2xl: 1.5rem; /* 24px */
  --text-xl: 1.25rem; /* 20px */
  --text-lg: 1.125rem; /* 18px */
  --text-base: 1rem; /* 16px */
  --text-sm: 0.875rem; /* 14px */
  
  /* スペーシング */
  --space-1: 0.25rem; /* 4px */
  --space-2: 0.5rem; /* 8px */
  --space-4: 1rem; /* 16px */
  --space-6: 1.5rem; /* 24px */
  --space-8: 2rem; /* 32px */
  --space-12: 3rem; /* 48px */
  --space-16: 4rem; /* 64px */
  --space-20: 5rem; /* 80px */
  
  /* その他 */
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* ===== Base Styles ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-charcoal);
  background-color: var(--color-white);
  margin: 0;
  padding: 0;
  cursor: default;
}

a:hover, button:hover, .footer-contact-btn:hover {
  cursor: pointer;
}

#art-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 44px; height: 44px;
  pointer-events: none;
  z-index: 9999;
  border: 2.5px solid #166534; /* 濃いグリーン */
  border-radius: 50%;
  background: rgba(255,255,255,0.55); /* 白半透明で見やすく */
  box-shadow: 0 0 0 2px #4ade80aa, 0 0 12px #b9fbc0;
  transition: background 0.2s, border 0.2s, opacity 0.2s;
  mix-blend-mode: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}
#art-cursor::after {
  content: '';
  display: block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #4ade80; /* 明るいグリーン */
  box-shadow: 0 0 8px #b9fbc0;
}

/* ホバー時はアートカーソルを非表示にし、指カーソルだけ */
a:hover ~ #art-cursor,
button:hover ~ #art-cursor,
.footer-contact-btn:hover ~ #art-cursor {
  opacity: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

/* ===== ヘッダーナビゲーション ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-cool-gray);
  z-index: 1000;
  transition: var(--transition);
}

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

.nav-brand .brand-link {
  font-family: var(--font-english);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.nav-brand .brand-link:hover {
  color: var(--color-primary-green);
  transform: scale(1.05);
}

.brand-logo {
  height: 80px;
  width: auto;
 
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand-logo:hover {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-8);
}

.nav-link {
  font-weight: 500;
  color: var(--color-charcoal);
  text-decoration: none;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary-green);
  background-color: rgba(56, 161, 105, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  margin: 2px 0;
  transition: var(--transition);
}

/* --- Hero Section Stylish Animation --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #14532d 0%, #166534 100%); /* 濃いモスグリーン系 */
  overflow: hidden;
}

/* 背景に動くグラデーションエフェクト */
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at 30% 30%, #4ade80 0%, transparent 70%),
              radial-gradient(circle at 70% 70%, #166534 0%, transparent 70%); /* 濃いグリーン */
  animation: bgMove 10s linear infinite alternate;
  z-index: 0;
  opacity: 0.5;
}
@keyframes bgMove {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(30px, 30px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff; /* テキストを白に */
  text-shadow: 0 2px 8px rgba(20, 83, 45, 0.18), 0 1px 0 #222; /* ほんのりシャドウ */
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideIn 1.2s 0.2s cubic-bezier(.77,0,.18,1) forwards;
  color: #fff; /* タイトルも白 */
  text-shadow: 0 4px 16px rgba(20, 83, 45, 0.25), 0 1px 0 #222;
}
.hero-accent {
  background: linear-gradient(90deg, #b9fbc0 30%, #4ade80 100%); /* 明るいグリーンでアクセント */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 8px rgba(20, 83, 45, 0.18), 0 1px 0 #222;
}
.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideIn 1.2s 0.5s cubic-bezier(.77,0,.18,1) forwards;
  color: #fff; /* サブタイトルも白 */
  text-shadow: 0 2px 8px rgba(20, 83, 45, 0.18), 0 1px 0 #222;
}
.hero-description {
  font-size: 1.1rem;
  color: #f0fdf4; /* 明るい白緑で可読性UP */
  margin-bottom: 2.2rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideIn 1.2s 0.8s cubic-bezier(.77,0,.18,1) forwards;
  text-shadow: 0 2px 8px rgba(20, 83, 45, 0.18), 0 1px 0 #222;
}
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideIn 1.2s 1.1s cubic-bezier(.77,0,.18,1) forwards;
}
.btn {
  padding: 0.8em 2.2em;
  border-radius: 2em;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 2px 16px 0 rgba(99,102,241,0.08);
}
.btn-primary {
  background: linear-gradient(90deg, #166534 0%, #4ade80 100%);
  color: #fff;
  text-shadow: 0 1px 4px rgba(20, 83, 45, 0.18);
  border: 2px solid #b9fbc0;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #4ade80 0%, #166534 100%);
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(20,83,45,0.18);
}
.btn-outline {
  background: transparent;
  border: 2px solid #b9fbc0;
  color: #b9fbc0;
  text-shadow: 0 1px 4px rgba(20, 83, 45, 0.18);
}
.btn-outline:hover {
  background: #166534;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(20,83,45,0.18);
}

/* スクロールインジケーター */
.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  opacity: 0;
  animation: fadeInScroll 1.2s 1.6s forwards;
}
@keyframes fadeInScroll {
  to { opacity: 1; }
}
.scroll-text {
  font-size: 1rem;
  color: #fff; /* 白に変更 */
  margin-bottom: 0.3em;
  letter-spacing: 0.1em;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-left: 3px solid #fff; /* 白に変更 */
  border-bottom: 3px solid #fff; /* 白に変更 */
  transform: rotate(-45deg);
  animation: arrowBounce 1.2s infinite;
  margin-top: 0.2em;
}
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0) rotate(-45deg); }
  50% { transform: translateY(10px) rotate(-45deg); }
}

/* レスポンシブ調整 */
@media (max-width: 700px) {
  .hero-title { font-size: 2.1rem; }
  .hero-section { padding: 2.5em 0 1em 0; }
  .hero-content { padding: 0 1em; }
  .hero-actions { flex-direction: column; gap: 0.7rem; }
}

/* ===== セクション共通 ===== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-title {
  font-family: var(--font-english);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: var(--space-4);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-primary-green);
  border-radius: 2px;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-warm-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== WORKSセクション ===== */
.works-section {
  background: var(--color-white);
  padding: var(--space-20) 0;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.work-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-cool-gray);
  transition: var(--transition);
  overflow: hidden;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-green);
}

.work-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(56, 161, 105, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.work-card:hover .work-overlay {
  opacity: 1;
}

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

.work-link {
  color: var(--color-white);
  font-weight: 600;
  text-decoration: none;
  padding: var(--space-4) var(--space-6);
  border: 2px solid var(--color-white);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

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

.work-content {
  padding: var(--space-6);
}

.work-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: var(--space-4);
  line-height: 1.4;
}

.work-description {
  color: var(--color-warm-gray);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.tag {
  background: rgba(56, 161, 105, 0.1);
  color: var(--color-primary-green);
  padding: var(--space-1) var(--space-4);
  border-radius: 20px;
  font-size: var(--text-sm);
  font-weight: 500;
}

/* ===== ABOUTセクション ===== */
.about-section {
  background: var(--color-light-gray);
  padding: var(--space-20) 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
  align-items: start;
  margin-top: var(--space-12);
}

.about-image {
  text-align: center;
}

.profile-image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 4px solid var(--color-primary-green);
  box-shadow: 0 8px 24px rgba(56, 161, 105, 0.2);
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.about-name {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: var(--space-2);
}

.about-title {
  font-size: var(--text-xl);
  color: var(--color-primary-green);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.about-description {
  color: var(--color-warm-gray);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

/* About Highlight Section - Modern Design */
.about-highlight {
  margin: 2rem 0;
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.about-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4ade80, #38a169, #2f855a);
}

.highlight-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.highlight-icon {
  font-size: 2rem;
  filter: grayscale(0.2);
}

.highlight-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

.highlight-content {
  display: grid;
  gap: 1rem;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.achievement-label {
  font-size: 0.9rem;
  font-weight: 600;

  min-width: 80px;
  text-align: center;
  padding: 0.4rem 0.8rem;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 12px;
 
}

.achievement-value {
  flex: 1;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  font-weight: 500;
}

.about-conclusion {
  font-weight: 600;
  color: #1a202c;
  margin-top: 1.5rem;
}

.skills-title,
.timeline-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: var(--space-6);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
}

.skill-category-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary-green);
  margin-bottom: var(--space-4);
}

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

.skill-list li {
  color: var(--color-warm-gray);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-cool-gray);
}

.skill-list li:last-child {
  border-bottom: none;
}

.timeline {
  position: relative;
  padding-left: var(--space-8);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-primary-green);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-8);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--color-primary-green);
  border-radius: 50%;
  border: 3px solid var(--color-white);
}

.timeline-date {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary-green);
  margin-bottom: var(--space-2);
}

.timeline-content h5 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: var(--space-2);
}

.timeline-content p {
  color: var(--color-warm-gray);
  line-height: 1.6;
  margin: 0;
}

/* ===== PRICINGセクション ===== */
.pricing-section {
  background: var(--color-light-gray);
  padding: var(--space-20) 0;
}

.pricing-note {
  font-size: var(--text-sm);
  color: var(--color-warm-gray);
  text-align: center;
  margin-top: var(--space-4);
  font-style: italic;
}

.pricing-table {
  max-width: 800px;
  margin: var(--space-16) auto 0;
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--color-cool-gray);
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--color-cool-gray);
  transition: var(--transition);
}

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

.pricing-item:hover {
  background: rgba(56, 161, 105, 0.03);
}

.pricing-service {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-charcoal);
  margin: 0;
  flex: 1;
}

.pricing-cost {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary-green);
  margin: 0;
  min-width: 140px;
  text-align: right;
}

/* ===== フッター ===== */

/* ===== レスポンシブデザイン ===== */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-12);
  }
  
  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-list {
    display: none;
  }
  .nav-list.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 16px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-radius: 12px;
    z-index: 2000;
    min-width: 160px;
    padding: 1em 0.5em;
    gap: 0.5em;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }
  
  .nav-list {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .works-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .profile-image {
    width: 200px;
    height: 200px;
  }
  
  .timeline {
    padding-left: var(--space-6);
  }
  
  .timeline-item::before {
    left: -32px;
  }
  
  /* Pricing responsive styles */
  .pricing-table {
    margin: var(--space-12) var(--space-4) 0;
  }
  
  .pricing-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
  }
  
  .pricing-service {
    font-size: var(--text-base);
  }
  
  .pricing-cost {
    font-size: var(--text-lg);
    text-align: left;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: var(--text-3xl);
  }
  
  .work-content {
    padding: var(--space-4);
  }
  
  .about-name {
    font-size: var(--text-2xl);
  }

  .about-highlight {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .highlight-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .highlight-title {
    font-size: 1.2rem;
  }

  .achievement-item {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    padding: 0.8rem 0;
  }

  .achievement-label {
    min-width: auto;
    align-self: center;
  }

  .achievement-value {
    font-size: 0.9rem;
  }
}

/* ===== アニメーション ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* ===== フォーカス状態 ===== */
.focus-visible {
  outline: 2px solid var(--color-primary-green);
  outline-offset: 2px;
}

@media (max-width: 700px) {
  #art-cursor {
    display: none !important;
  }
}

/* ===== パララックスヒーローセクション ===== */
.hero-parallax {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-parallax .parallax-mid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero-parallax .floating-elements .element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-parallax .element-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 8%;
  animation: float-1 20s ease-in-out infinite;
}
.hero-parallax .element-2 {
  width: 80px;
  height: 80px;
  top: 65%;
  right: 12%;
  animation: float-2 15s ease-in-out infinite reverse;
}
.hero-parallax .element-3 {
  width: 100px;
  height: 100px;
  bottom: 25%;
  left: 15%;
  animation: float-3 25s ease-in-out infinite;
}
.hero-parallax .parallax-front {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-parallax .hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}
.hero-parallax .hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 16px rgba(20, 83, 45, 0.25), 0 1px 0 #222;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.3s forwards;
  color: #fff;
}
.hero-parallax .hero-subtitle {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.6s forwards;
  color: #fff;
  text-shadow: 0 2px 8px rgba(20, 83, 45, 0.18), 0 1px 0 #222;
}
.hero-parallax .hero-description {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.9s forwards;
  color: #f0fdf4;
  text-shadow: 0 2px 8px rgba(20, 83, 45, 0.18), 0 1px 0 #222;
}
.hero-parallax .hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 1.2s forwards;
}
.hero-parallax .btn {
  padding: 0.8em 2.2em;
  border-radius: 2em;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 2px 16px 0 rgba(99,102,241,0.08);
}
.hero-parallax .btn-primary {
  background: linear-gradient(90deg, #166534 0%, #4ade80 100%);
  color: #fff;
  text-shadow: 0 1px 4px rgba(20, 83, 45, 0.18);
  border: 2px solid #b9fbc0;
}
.hero-parallax .btn-primary:hover {
  background: linear-gradient(90deg, #4ade80 0%, #166534 100%);
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(20,83,45,0.18);
}
.hero-parallax .btn-secondary {
  background: transparent;
  border: 2px solid #b9fbc0;
  color: #b9fbc0;
  text-shadow: 0 1px 4px rgba(20, 83, 45, 0.18);
}
.hero-parallax .btn-secondary:hover {
  background: #166534;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(20,83,45,0.18);
}
.hero-parallax .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  opacity: 0;
  animation: fadeInUp 1s ease 1.5s forwards;
}
.hero-parallax .scroll-arrow {
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0.5rem auto;
  position: relative;
}
.hero-parallax .scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
}
@keyframes patternMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100px, -100px); }
}
@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(40px, -30px) scale(1.1) rotate(120deg); }
  66% { transform: translate(-30px, 20px) scale(0.9) rotate(240deg); }
}
@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-25px, -40px) rotate(180deg); }
}
@keyframes float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  75% { transform: translate(-20px, 35px) scale(0.95); }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}
@media (max-width: 768px) {
  .hero-parallax .parallax-mid .floating-elements .element-1 { width: 80px; height: 80px; }
  .hero-parallax .parallax-mid .floating-elements .element-2 { width: 60px; height: 60px; }
  .hero-parallax .parallax-mid .floating-elements .element-3 { width: 70px; height: 70px; }
  .hero-parallax .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-parallax .btn {
    width: 200px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-parallax * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== DigiRise風パララックスヒーロー ===== */
.hero-digirise {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-digirise .animated-background {
  position: fixed;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  z-index: 1;
}
.hero-digirise .bg-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a4d3a 0%, #2d5a3d 25%, #4a7c59 50%, #5a8a6b 75%, #6b9d7c 100%);
  opacity: 0.8;
  animation: gradientShift 20s ease-in-out infinite;
}
.hero-digirise .bg-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero-digirise .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
}
.hero-digirise .shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation: float-large 25s ease-in-out infinite;
}
.hero-digirise .shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation: float-medium 20s ease-in-out infinite reverse;
}
.hero-digirise .shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation: float-small 15s ease-in-out infinite;
}
.hero-digirise .dot-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.2) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.15) 1.5px, transparent 1.5px);
  background-size: 40px 40px, 60px 60px, 80px 80px;
  animation: dotMove 60s linear infinite;
  opacity: 0.6;
}
.hero-digirise .typography-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero-digirise .large-text {
  font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  line-height: 0.8;
  letter-spacing: -0.05em;
  text-align: center;
  user-select: none;
  animation: textFloat 30s ease-in-out infinite;
}
.hero-digirise .accent-text {
  position: absolute;
  top: 60%;
  right: 10%;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
  color: #7dd87d;
  text-shadow: 0 0 20px rgba(125, 216, 125, 0.5);
  line-height: 1.2;
  text-align: right;
  animation: accentGlow 4s ease-in-out infinite alternate;
}
.hero-digirise .main-content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-digirise .hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}
.hero-digirise .hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1.5s ease 0.5s forwards;
}
.hero-digirise .hero-subtitle {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1.5s ease 0.8s forwards;
  color: rgba(255, 255, 255, 0.9);
}
.hero-digirise .hero-description {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1.5s ease 1.1s forwards;
  color: rgba(255, 255, 255, 0.8);
}
.hero-digirise .hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1.5s ease 1.4s forwards;
}
.hero-digirise .btn {
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.hero-digirise .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}
.hero-digirise .btn:hover::before {
  left: 100%;
}
.hero-digirise .btn-primary {
  background: rgba(125, 216, 125, 0.3);
  color: white;
  border: 2px solid rgba(125, 216, 125, 0.5);
  box-shadow: 0 0 30px rgba(125, 216, 125, 0.2);
}
.hero-digirise .btn-primary:hover {
  background: rgba(125, 216, 125, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(125, 216, 125, 0.3);
}
.hero-digirise .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.hero-digirise .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.hero-digirise .brand-logo {
  position: absolute;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  animation: fadeInUp 1.5s ease 1.7s forwards;
}
.hero-digirise .logo-symbol {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #7dd87d;
}
.hero-digirise .logo-text {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  font-weight: 300;
}
.hero-digirise .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 5;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0;
  animation: fadeInUp 1.5s ease 2s forwards;
}
.hero-digirise .scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(125, 216, 125, 0.8), transparent);
  margin: 1rem auto 0;
  position: relative;
}
.hero-digirise .scroll-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #7dd87d;
  border-radius: 50%;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { 
    background: linear-gradient(135deg, #1a4d3a 0%, #2d5a3d 25%, #4a7c59 50%, #5a8a6b 75%, #6b9d7c 100%);
  }
  50% { 
    background: linear-gradient(135deg, #2d5a3d 0%, #4a7c59 25%, #5a8a6b 50%, #6b9d7c 75%, #1a4d3a 100%);
  }
}
@keyframes dotMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-40px, -40px); }
}
@keyframes float-large {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(50px, -30px) scale(1.1) rotate(120deg); }
  66% { transform: translate(-30px, 40px) scale(0.9) rotate(240deg); }
}
@keyframes float-medium {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-40px, -50px) rotate(180deg); }
}
@keyframes float-small {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -25px) scale(1.05); }
  75% { transform: translate(-25px, 35px) scale(0.95); }
}
@keyframes textFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}
@keyframes accentGlow {
  0% { 
    text-shadow: 0 0 20px rgba(125, 216, 125, 0.5);
    transform: scale(1);
  }
  100% { 
    text-shadow: 0 0 40px rgba(125, 216, 125, 0.8);
    transform: scale(1.02);
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.5; transform: translateX(-50%) scale(1.2); }
}
@media (max-width: 768px) {
  .hero-digirise .typography-layer .large-text {
    font-size: clamp(4rem, 15vw, 8rem);
  }
  .hero-digirise .typography-layer .accent-text {
    top: 70%;
    right: 5%;
    font-size: clamp(1rem, 3vw, 1.5rem);
  }
  .hero-digirise .main-content .hero-content .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .hero-digirise .main-content .hero-content .btn {
    width: 250px;
  }
  .hero-digirise .main-content .brand-logo {
    bottom: 6rem;
  }
  .hero-digirise .scroll-indicator {
    bottom: 1rem;
    right: 1rem;
    writing-mode: horizontal-tb;
    text-align: center;
  }
  .hero-digirise .scroll-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, rgba(125, 216, 125, 0.8), transparent);
  }
  .hero-digirise .scroll-line::after {
    right: 0;
    left: auto;
    transform: translateY(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-digirise * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== PARALLAX HERO Section ===== */
.parallax-hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  color: #1e293b;
}

.parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8) saturate(1.1) contrast(1.1);
  opacity: 0.6;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.85) 0%, rgba(241, 245, 249, 0.8) 50%, rgba(226, 232, 240, 0.9) 100%);
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.parallax-container {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.parallax-content {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.media-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.3);
  transition: all 0.1s ease-out;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.title-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
}

.parallax-title-left,
.parallax-title-right {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 800;
  color: #1e293b;
  text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.2), 0 0 40px rgba(16, 185, 129, 0.2);
  transition: transform 0.1s ease-out;
  margin: 0;
  line-height: 1;
  font-family: var(--font-english);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1e293b 0%, #10b981 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  pointer-events: none;
}

.parallax-subtitle-left,
.parallax-subtitle-right {
  font-size: 2.2rem;
  color: #E8E3D3;
  font-weight: 700;
  transition: transform 0.1s ease-out;
  margin: 0;
  letter-spacing: 0.05em;
  opacity: 0.95;
}

.parallax-hero-section .content-section {
  width: 100%;
  padding: 5rem 2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.95) 20%, rgba(248, 250, 252, 1) 100%);
}

.parallax-hero-section .content-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.parallax-hero-section .content-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #334155;
}

/* 私の3つの強み - モダンデザイン */
.parallax-hero-section .strengths-section {
  margin-top: 5rem;
  padding-top: 0;
}

.parallax-hero-section .strengths-title {
  font-size: 2rem;
  font-weight: 300;
  color: #334155;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: 0.1em;
  position: relative;
}

.parallax-hero-section .strengths-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #4ade80, #38a169);
  border-radius: 1px;
}

.parallax-hero-section .strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.parallax-hero-section .strength-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  border: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.parallax-hero-section .strength-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4ade80, #38a169, #2f855a);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.parallax-hero-section .strength-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.parallax-hero-section .strength-item:hover::before {
  opacity: 1;
}

.parallax-hero-section .strength-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: grayscale(0.3);
  transition: all 0.3s ease;
}

.parallax-hero-section .strength-item:hover .strength-icon {
  transform: scale(1.1);
  filter: grayscale(0);
}

.parallax-hero-section .strength-content {
  width: 100%;
}

.parallax-hero-section .strength-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.parallax-hero-section .strength-item:hover .strength-title {
  color: #38a169;
}

.parallax-hero-section .strength-description {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  transition: color 0.3s ease;
}

.parallax-hero-section .strength-item:hover .strength-description {
  color: #4a5568;
}

.parallax-hero-section .content-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #1e293b;
  font-family: var(--font-english);
  background: linear-gradient(135deg, #1e293b 0%, #10b981 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.parallax-hero-section .content-text {
  font-size: 1.5rem;
    line-height: 1.9;
    /* margin-bottom: 2rem; */
    font-weight: 600;
}

.parallax-hero-section .hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .media-container {
    width: 250px;
    height: 350px;
    border-radius: 16px;
  }
  
  .parallax-title-left,
  .parallax-title-right {
    font-size: clamp(2rem, 12vw, 4rem);
  }
  
  .parallax-subtitle-left,
  .parallax-subtitle-right {
    font-size: 1.8rem;
  }
  
  .content-section {
    padding: 4rem 1.5rem;
  }

  .parallax-hero-section .strengths-section {
    margin-top: 4rem;
  }

  .parallax-hero-section .strengths-title {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }

  .parallax-hero-section .strengths-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 400px;
  }

  .parallax-hero-section .strength-item {
    padding: 2rem 1.5rem;
  }

  .parallax-hero-section .strength-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .parallax-hero-section .strength-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .parallax-hero-section .strength-description {
    font-size: 0.9rem;
  }
  
  .parallax-hero-section .content-text {
    font-size: 1.1rem;
  }
  
  .parallax-hero-section .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .parallax-hero-section .hero-actions .btn {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .media-container {
    width: 220px;
    height: 320px;
  }
  
  .subtitle-container {
    margin-top: 2rem;
  }
  
  .content-section {
    padding: 3rem 1rem;
  }
}

