/* ==================== 
   BASE STYLES 
==================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Yu Mincho", "游明朝", YuMincho, serif;
  background-color: #e2e2e2;
  color: #000;
}

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

/* ==================== 
   HEADER 
==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  letter-spacing: 2px;
}

.header-nav {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.header-nav a:hover {
  color: #e77001;
}

.header-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.header-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #333;
}

/* モバイルメニュー */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(231, 112, 1, 0.98);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-nav {
  list-style: none;
  padding: 100px 40px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-menu-nav a {
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 3px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
}

/* ==================== 
   HERO SECTION 
   1440px基準でvw計算
   例: 100px → 100/1440*100 = 6.944vw
==================== */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #e2e2e2;
  margin-top: 64px;
}

/* 写真 - 一番下のレイヤー */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* 斜めSVG背景 - 画面幅いっぱい */
.hero-bg-diagonal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* テキストコンテナ - 一番上 */
.hero-content {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 0 0 6.944vw; /* 左に100px */
}

.hero-text {
  max-width: 38.194vw; /* 550px */
  color: #fff;
}

.hero-name-en {
  font-size: 5.278vw;  /* 76px */
  font-weight: 400;
  margin: 0 0 0.347vw 0; /* 5px */
  letter-spacing: 0;
  line-height: 1;
}

.hero-name-jp {
  font-size: 3.194vw;  /* 46px */
  font-weight: 400;
  margin: 0 0 4.167vw 0; /* 60px */
  text-align: right;
  padding-right: 3.472vw; /* 50px */
  letter-spacing: 0;
}

.hero-slogan {
  font-size: 2.361vw;  /* 34px */
  font-weight: 400;
  margin: 0 0 0.694vw 0; /* 10px */
  letter-spacing: 0;
}

/* PC用スローガン表示、スマホ用は非表示 */
.hero-slogan-pc {
  display: block;
}

.hero-slogan-sp {
  display: none;
}

.hero-dots {
  display: flex;
  gap: 0.417vw; /* 6px */
  margin-bottom: 2.083vw; /* 30px */
}

.dot {
  width: 0.903vw;  /* 13px */
  height: 0.903vw; /* 13px */
  border-radius: 50%;
  box-shadow: 0.208vw 0 0.208vw rgba(0, 0, 0, 0.5);
}

.dot-1 { background-color: #e64f3f; }
.dot-2 { background-color: #a6372b; }
.dot-3 { background-color: #86322a; }

/* ヒーローSNSアイコン - PC版では非表示 */
.hero-sns {
  display: none;
}

.hero-description {
  font-size: 1.319vw;  /* 19px */
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  text-shadow: 0 0.278vw 0.278vw rgba(0, 0, 0, 0.25);
}

/* ====================
   STORY SECTION
==================== */
.story {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 0;
  background-color: #e2e2e2;
}

.story-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 60px;
}

.story-title {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 4px;
  margin: 0 0 20px 0;
  color: #e77001;
}

.story-subtitle {
  display: inline-block;
  font-size: 24px;
  letter-spacing: 2px;
  margin: 0;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ff9736 0%, #e77001 100%);
  color: #fff;
  border-radius: 8px;
}

.story-carousel-wrapper {
  position: relative;
  padding: 0 60px;
}

.story-carousel {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 10px;
}

.story-carousel::-webkit-scrollbar {
  display: none;
}

.story-card {
  flex: 0 0 320px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.story-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.story-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

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

.story-card-content {
  padding: 25px;
}

.story-year {
  display: inline-block;
  padding: 6px 16px;
  background-color: #e77001;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.story-card-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
  letter-spacing: 1px;
  color: #222;
}

.story-card-text {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #555;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #e77001;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background-color: #c96000;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
  left: 10px;
}

.carousel-btn-next {
  right: 10px;
}

.story-message {
  margin: 50px 60px 0;
  padding: 40px;
  background: linear-gradient(135deg, #ff9736 0%, #e77001 100%);
  text-align: center;
  border-radius: 12px;
}

.story-message p {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  line-height: 1.8;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ====================
   VISION BANNER
==================== */
.vision-banner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 0;
  background-color: #e2e2e2;
}

.vision-header {
  text-align: center;
  padding: 0 60px;
}

.vision-title {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 4px;
  margin: 0 0 20px 0;
  color: #e77001;
}

.vision-subtitle {
  display: inline-block;
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 1.8;
  margin: 0;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ff9736 0%, #e77001 100%);
  color: #fff;
  border-radius: 8px;
}

/* ==================== 
   VISION CARDS 
==================== */
.vision-cards {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 70px 40px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.vision-card {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 120px 130px;
  background-color: #fff;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.25);
}

.vision-card-text {
  flex: 1;
}

.vision-card-title {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.5;
  margin: 0 0 40px 0;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}

.vision-card-description {
  font-size: 19px;
  line-height: 1.8;
  margin: 0;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.vision-card-image {
  flex-shrink: 0;
  width: 600px;
}

.vision-card-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.vision-card-coming-soon {
  background-color: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
  border-radius: 8px;
}

/* ==================== 
   PROFILE SECTION 
==================== */
.profile {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 100px 100px;
  background-color: #e2e2e2;
}

.profile-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  padding-bottom: 20px;
}

.profile-quote {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 3px;
  margin: 0 0 20px 0;
}

.profile-intro {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 600px;
}

.profile-header-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 3px;
  background-color: #ff810b;
}

.profile-content {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.profile-photo {
  text-align: center;
}

.profile-photo img {
  width: 310px;
  height: 360px;
  object-fit: cover;
  margin-bottom: 15px;
}

.profile-photo-name-en {
  font-size: 21px;
  letter-spacing: 2px;
  margin: 0;
}

.profile-photo-name-jp {
  font-size: 36px;
  letter-spacing: 4px;
  margin: 10px 0 0 0;
}

.profile-timeline {
  position: relative;
  padding-left: 40px;
}

.timeline-line {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 2px;
  height: calc(100% - 28px);
  background-color: #ff810b;
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.timeline-dot {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-color: #ff810b;
  border-radius: 50%;
  margin-left: -40px;
}

.timeline-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.timeline-year {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 2px;
}

.timeline-detail {
  font-size: 19px;
  letter-spacing: 2px;
  line-height: 1.6;
}

/* ==================== 
   ACTIVITY SECTION 
==================== */
.activity {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 125px;
  display: flex;
  gap: 90px;
  background-color: #e2e2e2;
}

.activity-info {
  width: 250px;
}

.activity-badge {
  display: inline-block;
  padding: 15px 40px;
  background-color: #3f4772;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px 10px 0 10px;
  margin-bottom: 25px;
}

.activity-title {
  font-size: 39px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 25px 0;
  font-family: "Yu Gothic", sans-serif;
}

.activity-social {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.activity-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.activity-social a:hover {
  transform: translateY(-2px);
}

.activity-social img {
  width: 36px;
  height: 36px;
}

.activity-description {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 2;
  font-family: "Yu Gothic", sans-serif;
}

.activity-coming-soon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.coming-soon {
  font-family: "Lato", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #999;
  letter-spacing: 4px;
}

/* ==================== 
   ISSUES SECTION 
==================== */
.issues {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 60px;
  background-color: #e2e2e2;
}

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

.issues-title {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 4px;
  margin: 0 0 10px 0;
  color: #e77001;
}

.issues-subtitle {
  font-size: 20px;
  letter-spacing: 2px;
  margin: 0;
  color: #333;
}

.issues-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.issues-card {
  flex: 1;
  max-width: 400px;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  position: relative;
}

.issues-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #e77001;
  opacity: 0.3;
  margin-bottom: 15px;
  line-height: 1;
}

.issues-card-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 20px 0;
  letter-spacing: 1px;
  color: #222;
  line-height: 1.4;
}

.issues-card-description {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  color: #555;
}

.issues-card-cta {
  background: linear-gradient(135deg, #ff9736 0%, #e77001 100%);
  display: flex;
  flex-direction: column;
}

.issues-card-cta .issues-number {
  color: #fff;
  opacity: 0.5;
}

.issues-card-cta .issues-card-title {
  color: #fff;
}

.issues-card-cta .issues-card-description {
  color: rgba(255, 255, 255, 0.9);
  flex-grow: 1;
}

.issues-card-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  background-color: #fff;
  color: #e77001;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.issues-card-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ==================== 
   CONTACT SECTION 
==================== */
.contact {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 100px;
  display: flex;
  gap: 135px;
  background-color: #e2e2e2;
}

.contact-intro {
  flex: 1;
  padding-top: 170px;
}

.contact-title {
  font-family: "Noe Display", serif;
  font-size: 64px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.contact-description {
  font-size: 30px;
  line-height: 1.6;
  margin: 0;
}

.contact-form {
  width: 565px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group label {
  font-size: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-family: inherit;
  border: none;
  background-color: #f7f7f7;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid #ff810b;
  outline-offset: 2px;
}

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

.submit-btn {
  width: 100%;
  padding: 16px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background-color: #000;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #333;
}

.submit-btn:active {
  background-color: #555;
}

/* ==================== 
   FOOTER 
==================== */
.footer {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 70px 0 30px;
  background-color: #e77001;
  text-align: center;
}

.footer-address {
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 30px;
  font-family: "Yu Gothic", sans-serif;
}

.footer-copyright {
  font-size: 14px;
  color: #fff;
  opacity: 0.4;
  margin: 0;
  font-family: "Yu Gothic", sans-serif;
}

/* ====================
   RESPONSIVE - TABLET & MOBILE
==================== */
@media screen and (max-width: 768px) {
  /* ===== HEADER MOBILE ===== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 100;
    box-shadow: none;
  }

  .header-inner {
    padding: 12px 20px;
    justify-content: flex-end;
  }

  .header-logo {
    display: none;
  }

  .header-nav {
    display: none;
  }

  .header-menu-btn {
    display: flex;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  /* ===== HERO MOBILE ===== */
  .hero {
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    margin-top: 0;
    aspect-ratio: auto;
  }

  /* 写真 - 上半分 */
  .hero-image {
    position: relative;
    height: 62%;
    width: 100%;
  }

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

  /* カーブ付きSVG - 写真とオレンジの境目 */
  .hero-bg-diagonal {
    display: block;
    position: absolute;
    top: 47%;
    left: 0;
    width: 100%;
    max-width: none;
    height: 20%;
    z-index: 2;
    transform: none;
  }

  .hero-bg-diagonal path {
    d: path("M0,0 Q30,40 100,70 L100,100 L0,100 Z");
  }

  /* テキストコンテナ - 下半分、オレンジ単一色 */
  .hero-content {
    position: relative;
    height: 38%;
    width: 100%;
    padding: 20px 25px 15px;
    background-color: #ff9736;
    align-items: flex-start;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-name-en {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 5px;
    opacity: 0.9;
  }

  .hero-name-jp {
    font-size: 38px;
    text-align: left;
    padding-right: 0;
    margin-bottom: 15px;
    letter-spacing: 4px;
  }

  /* PC用スローガン非表示、スマホ用表示 */
  .hero-slogan-pc {
    display: none;
  }

  .hero-slogan-sp {
    display: block;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }

  /* ドットを表示 */
  .hero-dots {
    display: flex;
  }

  .hero-description {
    display: none;
  }

  /* スマホ版SNSアイコン - 右下に配置 */
  .hero-sns {
    display: flex;
    gap: 15px;
    position: absolute;
    bottom: 25px;
    right: 20px;
  }

  .hero-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-sns img {
    width: 28px;
    height: 28px;
  }

  /* ===== STORY MOBILE ===== */
  .story {
    padding: 50px 0;
  }

  .story-header {
    padding: 0 20px;
    margin-bottom: 30px;
  }

  .story-title {
    font-size: 32px;
  }

  .story-subtitle {
    font-size: 16px;
  }

  .story-carousel-wrapper {
    padding: 0 20px;
  }

  .story-card {
    flex: 0 0 280px;
  }

  .story-card-image {
    height: 200px;
  }

  .carousel-btn {
    display: none;
  }

  .story-message {
    margin: 30px 20px 0;
    padding: 25px;
  }

  .story-message p {
    font-size: 18px;
    letter-spacing: 1px;
  }

  /* ===== VISION MOBILE ===== */
  .vision-banner {
    padding: 25px 0;
  }

  .vision-banner h2 {
    font-size: 36px;
  }

  .vision-cards {
    padding: 40px 20px;
    gap: 40px;
  }

  .vision-card {
    flex-direction: column;
    padding: 40px 25px;
    gap: 30px;
  }

  .vision-card-subtitle {
    font-size: 18px;
  }

  .vision-card-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .vision-card-description {
    font-size: 15px;
  }

  .vision-card-image {
    width: 100%;
    order: -1; /* 画像を上に */
  }

  .vision-card-image img {
    height: 200px;
    border-radius: 8px;
  }

  /* ===== PROFILE MOBILE ===== */
  .profile {
    padding: 50px 20px;
  }

  .profile-header {
    margin-bottom: 40px;
  }

  .profile-quote {
    font-size: 20px;
  }

  .profile-intro {
    font-size: 13px;
  }

  .profile-header-line {
    width: 90%;
  }

  .profile-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .profile-photo img {
    width: 200px;
    height: 240px;
  }

  .profile-photo-name-en {
    font-size: 16px;
  }

  .profile-photo-name-jp {
    font-size: 28px;
  }

  .profile-timeline {
    padding-left: 30px;
    width: 100%;
  }

  .timeline-dot {
    width: 20px;
    height: 20px;
    margin-left: -30px;
  }

  .timeline-line {
    left: 10px;
  }

  .timeline-year {
    font-size: 15px;
  }

  .timeline-detail {
    font-size: 14px;
  }

  /* ===== ACTIVITY MOBILE ===== */
  .activity {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .activity-info {
    width: 100%;
  }

  .activity-title {
    font-size: 28px;
  }

  .activity-photos {
    flex-direction: column;
  }

  .activity-photo {
    width: 100%;
    height: 250px;
  }

  /* ===== ISSUES MOBILE ===== */
  .issues {
    padding: 50px 20px;
  }

  .issues-title {
    font-size: 32px;
  }

  .issues-cards {
    flex-direction: column;
    gap: 25px;
  }

  .issues-card {
    max-width: 100%;
    padding: 30px;
  }

  .issues-number {
    font-size: 36px;
  }

  .issues-card-title {
    font-size: 18px;
  }

  .issues-card-description {
    font-size: 14px;
  }

  /* ===== CONTACT MOBILE ===== */
  .contact {
    flex-direction: column;
    padding: 50px 20px;
    gap: 40px;
  }

  .contact-intro {
    padding-top: 0;
  }

  .contact-title {
    font-size: 40px;
  }

  .contact-description {
    font-size: 18px;
  }

  .contact-form {
    width: 100%;
  }

  /* ===== FOOTER MOBILE ===== */
  .footer {
    padding: 40px 20px 20px;
  }
}
