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

/* Root Variables - Deep Green Theme */
:root {
  --primary-green: #1b4332;
  --secondary-green: #2d5a3d;
  --accent-green: #40916c;
  --light-green: #52b788;
  --background-green: #f8fdf9;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --text-primary: #1b1b1b;
  --text-secondary: #666666;
  --border-color: #e5f0e9;
  --shadow: 0 4px 16px rgba(27, 67, 50, 0.1);
  --shadow-hover: 0 8px 32px rgba(27, 67, 50, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  font-weight: 400;
}

/* Selection styles */
::selection {
  background-color: var(--primary-green);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--primary-green);
  color: var(--white);
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  position: relative;
}

.logo {
  margin: 0;
}

.logo__anchor {
  text-decoration: none;
  color: var(--primary-green);
}

.logo__icon {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.header__block {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Remove list markers from header utility list */
.header__utilityList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__utilityItem {
  list-style: none;
}

.header__navigation {
  display: flex;
}

.navigation__list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navigation__item {
  position: relative;
}

.navigation__itemAnchor,
.navigation__itemButton {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navigation__itemAnchor:hover,
.navigation__itemButton:hover {
  color: var(--primary-green);
}

/* Current page indicator */
.navigation__itemAnchor.-current {
  color: var(--primary-green);
  position: relative;
}

.navigation__itemAnchor.-current::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary-green);
}

.navigation__itemTitle {
  display: block;
}

.navigation__itemIcon {
  width: 10px;
  height: 10px;
  transition: var(--transition);
}

.navigation__itemButton[aria-expanded="true"] .navigation__itemIcon {
  transform: rotate(180deg);
}

/* Megamenu */
.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  padding: 1rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
}

.megamenu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.megamenu__inner {
  padding: 0;
}

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

.megamenu__item {
  margin-bottom: 0.5rem;
}

.megamenu__item:last-child {
  margin-bottom: 0;
}

.megamenu__itemAnchor {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
  border-radius: 8px;
  transition: var(--transition);
}

.megamenu__itemAnchor:hover {
  background: var(--background-green);
  color: var(--primary-green);
}

.megamenu__itemTitle {
  font-weight: 500;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  background: var(--primary-green);
  color: var(--white);
}

.button:hover {
  background: var(--light-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.button.-header {
  background: var(--primary-green);
  color: var(--white);
}

.button.-thin {
  background: var(--primary-green);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.button__text {
  display: block;
}

.button__icon {
  display: flex;
  align-items: center;
}

/* Circle Icons */
.circleIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

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

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

.circleIcon.-xsmall {
  width: 20px;
  height: 20px;
  font-size: 10px;
}

.circleIcon.-small {
  width: 24px;
  height: 24px;
  font-size: 12px;
}

.circleIcon.-medium {
  width: 32px;
  height: 32px;
  font-size: 16px;
}

.circleIcon.-large {
  width: 40px;
  height: 40px;
  font-size: 20px;
}

.circleIcon.-xlarge {
  width: 48px;
  height: 48px;
  font-size: 24px;
}

.circleIcon__icon {
  width: 1em;
  height: 1em;
}

/* Hover Effects */

/* Hamburger Menu */
.burgerButton {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.burgerButton__inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.burgerButton__line {
  width: 25px;
  height: 3px;
  background: var(--primary-green);
  transition: var(--transition);
  border-radius: 2px;
}

.header__backdrop {
  display: none;
}

/* Hero Section (MV) */
.mv {
  position: relative;
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

/* Background Styles */
.mv .background {
  position: absolute;
  top: 0;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 20px);
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
}

.mv .slider-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mv .slider {
  height: 100%;
}

.mv .slider .slide {
  height: 100%;
  position: relative;
}

.mv .slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.mv .slider .slide .sp {
  display: none;
}

/* Slick slider custom styles */
.mv .slick-list {
  height: 100%;
  overflow: hidden;
}

.mv .slick-track {
  height: 100%;
}

.mv .slick-slide {
  margin: 0 5px;
  overflow: hidden;
  border-radius: 20px;
}

.mv .slick-dots {
  display: none !important;
}

.mv .slick-prev,
.mv .slick-next {
  display: none !important;
}

.mv__textWrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  margin-bottom: 2rem;
  overflow: visible;
}

.mv__heading {
  font-size: 10rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

/* English font */
.u-en {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

/* Hide elements based on device */
.u-sp {
  display: none;
}

/* Gradation text animation with mask */
[data-gradation-text-pc],
[data-gradation-text-sp] {
  display: inline-block;
  color: #ffffff;
  padding-bottom: 0.3em;
  animation: slideInFromLeft 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
  transform: translateX(-100px);
}

[data-gradation-text-pc]:nth-child(2) {
  animation-delay: 0.3s;
}

[data-gradation-text-sp]:nth-child(2) {
  animation-delay: 0.3s;
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.mv__space {
  display: block;
  height: -0.2em;
  margin-top: -0.3em;
}

.mv__anchorWithIconWrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

.anchorWithIcon {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.anchorWithIcon:hover {
  transform: translateX(8px);
}

.anchorWithIcon__text {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.anchorWithIcon__icon {
  display: flex;
}

.mv__cardWrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
  background-color: var(--white);
  border-top-left-radius: calc(3 * 1rem);
  box-shadow: 0 -4px 24px rgba(27, 67, 50, 0.08);
  z-index: 10;
}

.mv__newsSlider {
  position: relative;
  height: 100%;
  padding: 2rem;
}

.mv__newsSlider .slide {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.mv__newsSlider .slide:last-child {
  border-bottom: none;
}

.mv__newsSlider .slide a {
  display: block;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
}

.mv__newsSlider .slide a:hover {
  opacity: 0.8;
}

.mv__newsSlider .date_cat {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.mv__newsSlider .date {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

.mv__newsSlider .cat {
  font-size: 0.85rem;
  color: var(--white);
  background: var(--primary-green);
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  margin: 0;
  font-weight: 500;
}

.mv__newsSlider .ttl {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  color: var(--text-primary);
}

/* Navigation Button */
.mv__newsNav {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background: var(--primary-green);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--white);
}

.mv__newsNav:hover {
  background: var(--secondary-green);
  transform: translateY(-50%) scale(1.1);
}

.mv__newsNav svg {
  width: 18px;
  height: 18px;
}

.mv__card .card__header {
  margin-bottom: 1.5rem;
}

.mv__card .card__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.3;
  margin: 0;
}

.mv__card .card__body {
  flex: 1;
}

.mv__card .card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.mv__card .card__listItem {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.mv__card .card__listItem:last-child {
  margin-bottom: 0;
}

.mv__card .card__listItemIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: var(--accent-green);
}

.mv__card .card__listItemIcon svg {
  width: 100%;
  height: 100%;
}

.mv__card .card__listItemText {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.mv__card .card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.mv__card .card__footerText {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-green);
}

/* Cards */
.card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card.-webinars {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

.card.-white {
  background: var(--white);
  border-radius: 0 0 20px 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card.-news {
  border-left: 4px solid var(--primary-green);
  border-radius: 12px;
}

.card.-voice {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  /* padding: 1.5rem; */
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card__header {
  margin-bottom: 1rem;
}

.card__body {
  margin-bottom: 1rem;
  flex: 1;
}

.card.-voice .card__title {
  margin: 0 1.5rem;
}

.card.-voice .description__wrapper {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.card__title {
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin: 0;
}

.card__tags {
  margin-bottom: 1rem;
}

.card__tagsList {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.card__tagsItem {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.card__tagsItemDot {
  color: var(--primary-green);
  font-size: 8px;
}

.card__tagsItemTag {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.card__iconWrapper {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

/* Text Image Component */
.textImage {
  display: flex;
  gap: 1rem;
}

.textImage__thumbnail {
  flex-shrink: 0;
}

.textImage__thumbnail img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}

.textImage__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.textImage__infoLabel {
  background: var(--primary-green);
  color: var(--white);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  width: fit-content;
}

.textImage__infoDate {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.textImage__infoTimePeriod {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Category and Date */
.categoryAndDate {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.categoryAndDate__time {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.categoryAndDate__category {
  background: var(--primary-green);
  color: var(--white);
  font-size: 0.8rem;
  padding: 0.2rem 0.8rem;
  border-radius: 12px;
  font-weight: 500;
}

/* Achievements Section */
.achievements {
  padding: 80px 0;
  background: var(--light-gray);
}

.achievements__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.achievements__container {
  margin-bottom: 3rem;
}

.achievements__containerInner {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
}

.achievements__clientLogos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.logo-item {
  padding: 1rem;
  background: var(--background-green);
  border-radius: 8px;
  font-weight: 600;
  color: var(--primary-green);
  text-align: center;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.logo-item:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

.achievements__buttonWrapper {
  text-align: center;
}

/* News Section */
.news {
  padding: 80px 0;
  position: relative;
}

.news__header {
  text-align: center;
  margin-bottom: 3rem;
}

.top__heading {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.news__content {
  position: relative;
}

.movearea {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: calc(100% + 100px);
  z-index: 1;
}

.movearea .background {
  width: 100%;
  height: 100%;
  position: relative;
}

.movearea .background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.movearea .background .image {
  width: 100%;
  height: 100%;
}

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

.movearea .background .image.-sp {
  display: none;
}

/* Video Background Styles */
.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* Mobile optimization for video */
@media (max-width: 768px) {
  .background-video {
    /* Optimize for mobile performance */
    width: 100%;
    height: 100%;
  }
}

.staticarea {
  position: relative;
  z-index: 2;
}

.news__body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.news__tagsWrapper {
  margin-top: 4rem;
  margin-bottom: 3rem;
  text-align: center;
}

.news__tags {
  list-style: none;
  display: inline-flex;
  gap: 1rem;
  background: var(--white);
  padding: 0.5rem;
  border-radius: 50px;
  box-shadow: var(--shadow);
  margin: 0;
  position: relative;
  overflow: hidden;
}

.news__tags::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: var(--indicator-left, 0.5rem);
  width: var(--indicator-width, 0);
  height: calc(100% - 1rem);
  border-radius: 25px;
  background: var(--primary-green);
  transition: all 0.6s cubic-bezier(0.68, -0.15, 0.265, 1.35);
  z-index: 0;
  opacity: 0;
  animation: liquidFlow 3s ease-in-out infinite;
}

.news__tags.--active::before {
  opacity: 1;
}

.news__tagsItem {
  margin: 0;
  position: relative;
  z-index: 1;
}

.news__tagsItemAnchor {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: var(--text-secondary);
  border-radius: 25px;
  transition: color 0.3s ease;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.news__tagsItem.-active .news__tagsItemAnchor {
  color: var(--white);
}

.news__tagsItemAnchor:hover {
  color: var(--text-primary);
}

.news__listWrapper {
  margin-bottom: 3rem;
}

.news__listBlock {
  max-width: 800px;
  margin: 0 auto;
}

.news__listBlockInner {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-hover);
}

.news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news__item {
  margin: 0;
}

.news__buttonWrapper {
  text-align: center;
}

/* Service Section */
.service {
  padding: 80px 0 0;
  background: var(--background-color);
}

.service__block1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 4rem;
}

.service__header {
  text-align: center;
  margin-bottom: 3rem;
}

.service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service__lead {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
}

.service__textWrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service__text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.service__buttonWrapper {
  align-self: flex-start;
}

.service__block2 {
  background: var(--background-color);
  padding: 6rem 0 0;
  position: relative;
  min-height: 400vh; /* Extended scroll area */
}

.service__block2inner {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

/* Active state when accordion is in center */
.service__block2inner.is-fixed {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
}

/* Accordion */
.accordion__layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion__details {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  cursor: pointer;
  list-style: none;
  transition: var(--transition);
}

.accordion__summary:hover {
  background: var(--background-green);
}

.accordion__summaryText {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.accordion__summaryIcon {
  transition: var(--transition);
}

.accordion__details[open] .accordion__summaryIcon {
  transform: rotate(180deg);
}

.details__accordion {
  border-top: 1px solid var(--border-color);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion__details[open] .details__accordion {
  max-height: 600px;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion__body {
  padding: 2rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.accordion__thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.accordion__block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion__lead {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin: 0;
}

.accordion__message {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.accordion__button {
  margin-top: 1rem;
}

/* Case Study Section */
.casestudy {
  padding: 80px 0;
  background: var(--background-color);
}

.casestudy__header {
  text-align: center;
  margin-bottom: 3rem;
}

.casestudy__body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.heading {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 3rem 0;
}

.cards {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 0 0 3rem 0;
  padding: 0;
}

.cards__item {
  margin: 0;
}

.thumbnail {
  width: 100%;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.description__wrapper {
  margin-top: 1rem;
}

.description {
  margin: 0;
}

.description__item {
  display: flex;
  margin-bottom: 0.5rem;
}

.description__title {
  font-weight: 600;
  color: var(--text-primary);
  min-width: 60px;
  margin-right: 1rem;
}

.description__detail {
  color: var(--text-secondary);
  margin: 0;
}

.casestudy__buttonWrapper {
  text-align: center;
}

/* Contact Section */
.contact {
  background: var(--primary-green);
  padding: 80px 0;
}

.contact__anchor {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  transition: var(--transition);
}

.contact__anchor:hover {
  transform: translateY(-4px);
}

.contact__heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.contact__text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact__icon {
  display: inline-flex;
}

/* Footer - Common Styles */
.footer {
  background: #0f2419;
  color: var(--white);
  padding: 60px 0 30px;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

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

.footer-info p {
  opacity: 0.7;
  font-size: 0.95rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer__block2 {
  text-align: center;
  margin-bottom: 3rem;
}

.footer__block2 .logo__anchor {
  color: var(--white);
}

.footer__block2 .logo__icon {
  font-size: 1.5rem;
}

.footer__block3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__box1 {
  color: var(--white);
}

.company__name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.company__address {
  color: var(--medium-gray);
  line-height: 1.6;
  margin: 0;
}

.footer__box2 .navigation__list {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer__box2 .navigation__item {
  width: 100%;
}

.footer__box2 .navigation__itemAnchor {
  color: var(--medium-gray);
  padding: 0.5rem 0;
}

.footer__box2 .navigation__itemAnchor:hover {
  color: var(--white);
}

.itemChildren {
  list-style: none;
  margin: 0.5rem 0 0 1rem;
  padding: 0;
}

.itemChildren_item {
  margin-bottom: 0.25rem;
}

.itemChildren__itemAnchor {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--medium-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.itemChildren__itemAnchor:hover {
  color: var(--white);
}

.itemChildren__itemDot {
  font-size: 8px;
  color: var(--primary-green);
}

.itemChildren__itemTitle {
  display: block;
}

.footer__block4 {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #495057;
}

.footer__copyright {
  color: var(--medium-gray);
  margin: 0;
}

/* Responsive Breakpoints */
.br__pc {
  display: block;
}

.br__sp {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header__navigation {
    display: none;
  }

  .burgerButton {
    display: flex;
  }

  /* Mobile menu styles when open */
  .header.is-menuOpen .header__block {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 999;
    padding: 2rem;
    overflow-y: auto;
  }

  .header.is-menuOpen .header__navigation {
    display: block;
  }

  .header.is-menuOpen .navigation__list {
    flex-direction: column;
    gap: 0;
  }

  .header.is-menuOpen .navigation__item {
    border-bottom: 1px solid #eee;
  }

  .header.is-menuOpen .navigation__itemAnchor {
    padding: 1.5rem 0;
    display: block;
    font-size: 1.1rem;
  }

  .header.is-menuOpen .header__block .button.-header {
    display: flex;
    margin-top: 2rem;
    width: 100%;
    justify-content: center;
  }

  .header.is-menuOpen .header__backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

  .header.is-menuOpen .burgerButton__line.-one {
    transform: rotate(45deg) translateY(3.5px);
  }

  .header.is-menuOpen .burgerButton__line.-two {
    transform: rotate(-45deg) translateY(-3.5px);
  }

  .burgerButton__line {
    transition: transform 0.3s ease;
  }

  /* Hide header CTA on mobile */
  .header__block .button.-header {
    display: none;
  }

  /* Create floating CTA that's always visible */
  body::after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
    pointer-events: none;
    z-index: 999;
  }

  /* Show/hide based on device */
  .u-pc {
    display: none;
  }

  .u-sp {
    display: block !important;
  }

  /* Adjust heading size for mobile */
  .mv__heading {
    font-size: 4.5rem;
    line-height: 0.95;
  }

  .mv .slider .slide .pc {
    display: none;
  }

  .mv .slider .slide .sp {
    display: block;
  }

  .mv__heading {
    font-size: 2.5rem;
  }

  .mv__lead {
    font-size: 1.1rem;
  }

  .mv__cardWrapper {
    position: static;
    margin-top: 2rem;
  }

  .mv__card {
    max-width: none;
    margin: 0 20px;
  }

  .mv__anchorWithIconWrapper .-pc {
    display: none;
  }

  .mv__anchorWithIconWrapper .-sp {
    display: block;
  }

  .movearea .background .image.-pc {
    display: none;
  }

  .movearea .background .image.-sp {
    display: block;
  }

  .service__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service__lead {
    font-size: 1.5rem;
  }

  /* Service accordion mobile styles */
  .service__block2 {
    min-height: auto;
    height: auto;
    padding: 3rem 0 0;
  }

  .service__block2inner {
    position: relative;
    margin: 0 auto;
    transform: none;
    top: auto;
  }

  .service__block2inner.is-fixed {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
  }

  .accordion__layout {
    gap: 1rem;
  }

  /* All accordions open by default on mobile */
  .accordion__details {
    margin-bottom: 1rem;
  }

  .accordion__details[open] {
    border: 1px solid var(--border-color);
  }

  .accordion__body {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .accordion__summary {
    padding: 1.5rem;
    cursor: pointer;
    background: var(--background-green);
    transition: background 0.3s ease;
  }

  .accordion__summary:hover {
    background: var(--light-gray);
  }

  .accordion__summaryText {
    font-size: 1.1rem;
    font-weight: 700;
  }

  .accordion__thumbnail {
    display: none;
  }

  .details__accordion {
    transition: max-height 0.3s ease;
    border-top: 1px solid var(--primary-green);
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-nav ul {
    grid-template-columns: 1fr;
  }

  .footer__block3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .top__heading {
    font-size: 2rem;
  }

  .heading {
    font-size: 2rem;
  }

  .contact__heading {
    font-size: 2rem;
  }

  .br__pc {
    display: none;
  }

  .br__sp {
    display: block;
  }

  /* Customer stories mobile */
  .cards {
    gap: 1.5rem;
  }

  .card.-voice .card__title {
    font-size: 1rem;
  }

  /* Contact section mobile */
  .contact {
    padding: 60px 0;
  }

  .contact__heading {
    font-size: 2rem;
  }

  .contact__text {
    font-size: 1rem;
  }

  .achievements__clientLogos {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .mv__heading {
    font-size: 2rem;
  }

  .top__heading {
    font-size: 1.8rem;
  }

  .heading {
    font-size: 1.8rem;
  }

  .contact__heading {
    font-size: 1.8rem;
  }

  .service__lead {
    font-size: 1.3rem;
  }

  /* News section mobile */
  .news__tags {
    flex-wrap: wrap;
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .news__tagsItemAnchor {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .news__list {
    gap: 1rem;
  }

  .card.-news .card__title {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Brand section mobile */
  .brand-content-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .brand-left,
  .brand-right {
    width: 100%;
  }

  .main-message {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .sub-message {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .brand-bg-text {
    font-size: 4rem;
    opacity: 0.03;
  }

  /* Hero section mobile */
  .mv__cardWrapper {
    display: none;
  }

  /* Mobile news section after hero */
  .news-mobile {
    display: block;
    background: var(--light-gray);
    padding: 3rem 0;
  }

  .news-mobile__inner {
    max-width: 100%;
    padding: 0 20px;
  }

  .news-mobile__title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
  }

  .news-mobile__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .news-mobile__item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-primary);
    display: block;
    transition: var(--transition);
  }

  .news-mobile__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .news-mobile__date-cat {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }

  .news-mobile__date {
    font-size: 0.85rem;
    color: var(--text-secondary);
  }

  .news-mobile__cat {
    font-size: 0.75rem;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
  }

  .news-mobile__ttl {
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
  }

  .achievements__clientLogos {
    grid-template-columns: 1fr;
  }

  .news__tags {
    padding: 0.25rem;
    gap: 0.5rem;
  }

  .news__tagsItemAnchor {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

/* Floating CTA button - SP only */
.button.-floating {
  display: none;
}

@media (max-width: 768px) {
  .button.-floating {
    display: inline-flex !important;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: scale(0.95);
    animation: float-button 2s ease-in-out infinite;
    white-space: nowrap;
    align-items: center;
    gap: 0.5rem;
    min-width: max-content;
    flex-wrap: nowrap;
    width: auto;
    max-width: none;
  }

  .button.-floating .button__text {
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-block;
  }

  .button.-floating .button__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    width: auto;
    min-width: auto;
  }

  .button.-floating .circleIcon {
    flex-shrink: 0;
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
  }

  .button.-floating svg {
    display: block;
    flex-shrink: 0;
  }
}

@keyframes float-button {
  0%,
  100% {
    transform: translateY(0) scale(0.95);
  }
  50% {
    transform: translateY(-5px) scale(0.95);
  }
}

/* Mobile news section - hidden by default */
.news-mobile {
  display: none;
}

/* Page Header */
.pageHeader {
  background: var(--primary-green);
  padding: 120px 0 80px;
  text-align: center;
  color: var(--white);
}

.pageHeader__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pageHeader__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pageHeader__subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* News Page */
.newsPage {
  padding: 80px 0;
  background: var(--white);
}

.newsPage__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Loading and Animation States */
.is-shown {
  opacity: 1;
}

.inview {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes liquidFlow {
  0% {
    border-radius: 25px 20px 25px 30px;
  }
  25% {
    border-radius: 30px 25px 20px 25px;
  }
  50% {
    border-radius: 25px 30px 25px 20px;
  }
  75% {
    border-radius: 20px 25px 30px 25px;
  }
  100% {
    border-radius: 25px 20px 25px 30px;
  }
}

/* Service Page Styles */
.service-overview {
  padding: 80px 0;
  background: var(--white);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

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

/* Service Flow */
.service-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.flow-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.flow-item:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.flow-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}

.flow-item:hover .flow-number {
  color: var(--white);
}

.flow-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.flow-item p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.flow-arrow {
  font-size: 2rem;
  color: var(--primary-green);
  flex-shrink: 0;
}

/* Main Services Section */
.main-services {
  padding: 100px 0;
  background: var(--light-gray);
}

.service-detail {
  margin-bottom: 100px;
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-content {
  display: flex;
  align-items: center;
  gap: 80px;
  background: var(--white);
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.service-detail.reverse .service-content {
  flex-direction: row-reverse;
}

.service-icon-large {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-icon-large::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
}

.icon-web-large::before,
.icon-ad-large::before,
.icon-sns-large::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.service-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.service-lead {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.service-description {
  margin-bottom: 3rem;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-item {
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(27, 67, 50, 0.05);
  transform: translateX(8px);
}

.feature-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-green);
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Additional Services */
.additional-services {
  padding: 80px 0;
  background: var(--white);
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.additional-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.additional-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.additional-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.additional-card:hover .additional-icon {
  background: var(--primary-green);
}

.icon-bdr-service::before,
.icon-consulting::before,
.icon-analytics::before,
.icon-training::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.additional-card:hover .icon-bdr-service::before,
.additional-card:hover .icon-consulting::before,
.additional-card:hover .icon-analytics::before,
.additional-card:hover .icon-training::before {
  background: var(--white);
}

.additional-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

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

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: var(--light-gray);
}

.pricing-note {
  max-width: 800px;
  margin: 3rem auto;
  text-align: center;
}

.pricing-note p {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.pricing-cta {
  background: var(--white);
  padding: 4rem;
  border-radius: 16px;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.pricing-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.pricing-cta p {
  font-size: 1.05rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.pricing-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--white);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--primary-green);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-green);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 2rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-gray);
  line-height: 1.8;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: var(--primary-green);
  text-align: center;
  color: var(--white);
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-green);
  transform: translateY(-3px);
}

/* News Page Specific Styles */
.news-articles {
  display: grid;
  gap: 3rem;
}

.news-article {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.news-article:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.news-article.featured {
  grid-template-columns: 1fr;
  background: var(--primary-green);
  color: var(--white);
  border: none;
}

.article-image {
  position: relative;
  overflow: hidden;
}

.placeholder-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.placeholder-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.featured-image {
  height: 400px;
}

.article-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  color: var(--primary-green);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-category.service {
  background: #3b82f6;
  color: var(--white);
}

.article-category.case {
  background: #10b981;
  color: var(--white);
}

.article-category.trend {
  background: #f59e0b;
  color: var(--white);
}

.article-category.company {
  background: #6366f1;
  color: var(--white);
}

.article-content {
  padding: 2rem;
}

.news-article.featured .article-content {
  padding: 3rem;
}

.article-date {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  display: block;
}

.news-article.featured .article-date {
  color: rgba(255, 255, 255, 0.8);
}

.article-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: var(--primary-green);
}

.news-article.featured .article-title {
  font-size: 2rem;
  color: var(--white);
}

.article-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.news-article.featured .article-excerpt {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.read-more::after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: translateX(5px);
}

.news-article.featured .read-more {
  color: var(--white);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
}

.pagination-btn {
  padding: 0.5rem 1rem;
  background: var(--white);
  color: var(--primary-green);
  text-decoration: none;
  border: 1px solid var(--primary-green);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pagination-btn:hover:not(.disabled) {
  background: var(--primary-green);
  color: var(--white);
}

.pagination-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pagination-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary-green);
  text-decoration: none;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pagination-number:hover,
.pagination-number.active {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}

.pagination-dots {
  color: var(--text-gray);
}

/* Newsletter Signup */
.newsletter-signup {
  padding: 80px 0;
  background: var(--light-gray);
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.newsletter-benefits {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.newsletter-benefits li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.newsletter-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

.newsletter-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group input[type="email"] {
  flex: 1;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input[type="email"]:focus {
  outline: none;
  border-color: var(--primary-green);
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* News Page Responsive */
@media (max-width: 768px) {
  .news-article {
    grid-template-columns: 1fr;
  }

  .placeholder-image {
    height: 150px;
  }

  .featured-image {
    height: 250px;
  }

  .article-content {
    padding: 1.5rem;
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .newsletter-form {
    padding: 2rem 1.5rem;
  }

  .form-group {
    flex-direction: column;
  }

  .pagination-numbers {
    display: none;
  }
}

/* Results Page Styles */
.results-overview {
  padding: 80px 0;
  background: var(--white);
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-gray);
}

/* Case Studies */
.case-studies {
  padding: 100px 0;
  background: var(--light-gray);
}

.case-study {
  margin-bottom: 80px;
}

.case-study:last-child {
  margin-bottom: 0;
}

.case-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  background: var(--white);
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.case-study.reverse .case-content {
  grid-template-columns: 400px 1fr;
}

.case-study.reverse .case-visual {
  order: -1;
}

.case-category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-green);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.case-info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary-green);
}

.case-challenge,
.case-solution {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.case-challenge strong,
.case-solution strong {
  display: block;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.case-results h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.metric {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--light-gray);
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.5rem;
}

.metric:hover .metric-value {
  color: var(--white);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.metric:hover .metric-label {
  color: var(--white);
}

/* Case Visual */
.case-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-chart {
  display: flex;
  gap: 3rem;
  align-items: flex-end;
  padding: 2rem;
}

.chart-before,
.chart-after {
  text-align: center;
}

.chart-before h5,
.chart-after h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-gray);
}

.chart-bar {
  width: 120px;
  background: var(--primary-green);
  border-radius: 8px 8px 0 0;
  margin: 0 auto 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  min-height: 20px;
}

.chart-bar.sns {
  background: var(--accent-green);
}

.chart-bar.manufacturing {
  background: var(--light-green);
}

.chart-before .chart-bar {
  opacity: 0.5;
}

.chart-before span,
.chart-after span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-green);
  font-family: "Poppins", sans-serif;
}

.improvement-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.improvement-item {
  text-align: center;
}

.improvement-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.improvement-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-green);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-gray);
  font-style: italic;
  position: relative;
  padding-left: 2rem;
}

.testimonial-content p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--primary-green);
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--primary-green);
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* Industries */
.industries {
  padding: 80px 0;
  background: var(--light-gray);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.industry-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.industry-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.industry-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.industry-item:hover .industry-icon {
  background: var(--primary-green);
}

.icon-it::before,
.icon-ecommerce::before,
.icon-manufacturing::before,
.icon-finance::before,
.icon-healthcare::before,
.icon-education::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.industry-item:hover .icon-it::before,
.industry-item:hover .icon-ecommerce::before,
.industry-item:hover .icon-manufacturing::before,
.industry-item:hover .icon-finance::before,
.industry-item:hover .icon-healthcare::before,
.industry-item:hover .icon-education::before {
  background: var(--white);
}

.industry-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-green);
}

.industry-item p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Results Page Responsive */
@media (max-width: 768px) {
  .results-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .case-content {
    grid-template-columns: 1fr !important;
    padding: 40px 20px;
    gap: 3rem;
  }

  .case-study.reverse .case-visual {
    order: 0;
  }

  .result-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .chart-bar {
    width: 80px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .industry-item {
    padding: 1.5rem;
  }
}

/* Contact Page Styles */
.contact-form-section {
  padding: 80px 0;
  background: var(--white);
}

.contact-form-section .container {
  max-width: 1400px;
}

.contact-content {
  display: grid;
  grid-template-columns: 0.6fr 1.8fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
}

.contact-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 3rem;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/*/* Contact page feature icons */
.icon-consultation,
.icon-response,
.contact-features .icon-custom {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-consultation::before,
.icon-response::before,
.contact-features .icon-custom::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: var(--primary-green);
  border-radius: 4px;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--primary-green);
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.contact-details {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
}

.contact-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  min-width: 80px;
}

.contact-value {
  font-weight: 500;
}

.contact-value a {
  color: var(--primary-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-value a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.form-group {
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 1.5rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-green);
  text-align: right;
}

.required {
  color: #ef4444;
  font-weight: normal;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group:has(.checkbox-group) {
  grid-template-columns: 140px 1fr;
  align-items: flex-start;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 0.95rem;
  user-select: none;
}

.checkbox-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.checkbox-item:hover input ~ .checkmark {
  border-color: var(--primary-green);
}

.checkbox-item input:checked ~ .checkmark {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-item input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-item .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-group:has(textarea),
.form-group:has(.privacy-checkbox) {
  display: block;
}

.form-group:has(textarea) label,
.form-group:has(.privacy-checkbox) label {
  display: block;
  text-align: left;
  margin-bottom: 0.5rem;
}

.privacy-checkbox {
  margin-top: 0.5rem;
}

.privacy-link {
  color: var(--primary-green);
  text-decoration: underline;
}

.privacy-link:hover {
  text-decoration: none;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.btn-submit {
  min-width: 200px;
  padding: 1rem 3rem;
}

/* Contact Flow */
.contact-flow {
  padding: 80px 0;
  background: var(--light-gray);
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.flow-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.flow-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-green);
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .form-group {
    grid-template-columns: 1fr;
  }

  .form-group label {
    text-align: left;
    margin-bottom: 0.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .contact-details {
    padding: 1.5rem;
  }
}

/* Service Page Responsive Styles */
@media (max-width: 768px) {
  .service-flow {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .service-content {
    flex-direction: column !important;
    padding: 40px 20px;
    gap: 40px;
  }

  .service-icon-large {
    width: 150px;
    height: 150px;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .service .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service .footer-nav ul {
    grid-template-columns: 1fr;
  }

  .pricing-cta {
    padding: 2rem 1.5rem;
  }

  .faq-question {
    padding: 1.2rem 1.5rem;
  }

  .faq-question h4 {
    font-size: 1rem;
  }

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

  .cta h2 {
    font-size: 2rem;
  }
}

/* Company Page Styles */

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(
    135deg,
    var(--background-green) 0%,
    var(--light-gray) 100%
  );
}

.page-header-content {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

/* Company Mission Section */
.company-mission {
  padding: 80px 0;
  background: var(--white);
}

.mission-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.mission-text {
  animation: slideInLeft 1s ease-out 0.3s both;
}

.mission-graphic {
  animation: slideInRight 1s ease-out 0.5s both;
}

.mission-text .section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary-green);
}

.mission-description {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: var(--text-primary);
}

.mission-description strong {
  color: var(--primary-green);
  font-weight: 600;
}

.mission-highlight {
  background: var(--background-green);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
  border-left: 4px solid var(--accent-green);
}

.mission-highlight h3 {
  font-size: 1.4rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.mission-highlight p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.mission-core {
  font-weight: 700;
  color: var(--primary-green);
  font-size: 1.15rem;
  line-height: 1.6;
}

.mission-graphic {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  filter: brightness(0.9) contrast(1.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-image:hover .mission-graphic {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/*/* Company Strengths Section */
.company-strengths {
  padding: 80px 0;
  background: var(--background-light);
}

.company-strengths .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.company-strengths .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 3rem;
}

.strength-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.strength-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.strength-card:hover .strength-icon {
  transform: scale(1.05);
}

.strength-icon {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

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

/*/* Remove old strength icon styles for company page only */
.company-strengths .icon-bdr,
.company-strengths .icon-custom,
.company-strengths .icon-support {
  display: none;
}

.strength-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.strength-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
}

/* Company Info Section */
.company-info {
  padding: 80px 0;
  background: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.info-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary-green);
}

.info-table {
  max-width: 900px;
  animation: fadeIn 1s ease-out 0.4s both;
}

.info-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.info-row:hover {
  background-color: var(--background-green);
  padding-left: 1rem;
  margin-left: -1rem;
  padding-right: 1rem;
  margin-right: -1rem;
}

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

.info-label {
  font-weight: 700;
  color: var(--primary-green);
}

.info-value {
  color: var(--text-primary);
  line-height: 1.6;
}

/* Representative Message Section */
.representative-message {
  padding: 80px 0;
  background: var(--white);
}

.representative-message .section-title {
  margin-bottom: 3rem;
}

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

.representative-message .message-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.rep-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.career-timeline {
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.career-timeline h3 {
  font-size: 1.4rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.timeline-list {
  list-style: none;
  padding: 0;
}

.timeline-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 1rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.timeline-list li:hover {
  padding-left: 1rem;
  background: var(--background-green);
}

.timeline-list .year {
  font-weight: 600;
  color: var(--primary-green);
  margin-right: 1rem;
  display: inline-block;
  min-width: 80px;
}

.representative-info {
  margin-top: 2rem;
}

.rep-position {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.rep-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 0;
}

.representative-photo {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: slideInRight 1s ease-out 0.4s both;
}

/* Mobile Styles for Company Page */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .mission-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mission-graphic {
    height: 250px;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .info-label {
    font-size: 0.9rem;
  }

  .rep-grid {
    grid-template-columns: 1fr;
  }

  /* Representative Message Mobile */
  .representative-message .message-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .message-image {
    order: -1;
    text-align: center;
  }

  .representative-photo {
    max-width: 300px;
  }

  .timeline-list li {
    font-size: 0.9rem;
  }

  .timeline-list .year {
    display: block;
    margin-bottom: 0.5rem;
  }
}
