* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f8f7;
  color: #1f2a2a;
}

.actions-hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.you-we {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card {
  position: relative;
  display: block;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 15%,
    rgba(0, 0, 0, 0.2) 55%,
    rgba(0, 0, 0, 0.08) 100%
  );
  transition: background 0.35s ease;
}

.card-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.card-content h1 {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1.1;
}

.card-content p {
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.5;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.card:hover img {
  transform: scale(1.06);
}

.card:hover::after {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 15%,
    rgba(0, 0, 0, 0.28) 55%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.card:focus-visible {
  outline: 3px solid #78c4a3;
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .you-we {
    grid-template-columns: 1fr;
  }

  .card {
    height: 420px;
  }

  .card-content h1 {
    font-size: 1.7rem;
  }
}

@media (max-width: 520px) {
  .actions-hero {
    padding: 30px 15px;
  }

  .card {
    height: 340px;
    border-radius: 18px;
  }

  .card-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .card-content h1 {
    font-size: 1.45rem;
  }

  .card-content p {
    font-size: 0.95rem;
  }
}

.you-section {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(180deg, #eef7f4 0%, #f8fbfa 100%);
}

.You {
  max-width: 1350px;
  margin: 0 auto;
}

.You-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.You-head h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  color: #16352d;
  margin-bottom: 14px;
}

.You-head p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4d6760;
}

.engagement-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: stretch;
}

.engagement-sidebar {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(24, 88, 74, 0.1);
  border-radius: 24px;
  padding: 22px;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(17, 52, 45, 0.08);
  height: fit-content;
  position: sticky;
  top: 20px;
}

.sidebar-label {
  font-size: 0.9rem;
  color: #64817a;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.level-btn {
  width: 100%;
  border: none;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.28s ease;
  border: 1px solid rgba(26, 92, 77, 0.1);
  box-shadow: 0 8px 18px rgba(16, 49, 42, 0.05);
}

.level-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(16, 49, 42, 0.1);
}

.level-btn.active {
  background: linear-gradient(135deg, #1b6b58 0%, #2f8c73 100%);
  color: #fff;
  border-color: transparent;
}

.level-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 107, 88, 0.08);
  color: #1b6b58;
  font-weight: 700;
  font-size: 1rem;
}

.level-btn.active .level-number {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.level-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.level-text strong {
  font-size: 1rem;
  font-weight: 700;
}

.level-text small {
  font-size: 0.83rem;
  opacity: 0.82;
}

.engagement-content {
  min-width: 0;
}

.level-panel {
  display: none;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 88, 74, 0.1);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(17, 52, 45, 0.09);
  backdrop-filter: blur(12px);
}

.level-panel.active {
  display: block;
}

.panel-head {
  margin-bottom: 22px;
}

.panel-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: #16352d;
  margin-bottom: 10px;
}

.panel-head p {
  color: #55706a;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 760px;
}

.cards-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.cards-scroll::-webkit-scrollbar {
  height: 10px;
}

.cards-scroll::-webkit-scrollbar-track {
  background: #dcebe6;
  border-radius: 20px;
}

.cards-scroll::-webkit-scrollbar-thumb {
  background: #7aa99b;
  border-radius: 20px;
}

.action-card {
  flex: 0 0 320px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(16, 49, 42, 0.08);
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(16, 49, 42, 0.14);
}

.action-image {
  height: 210px;
  overflow: hidden;
}

.action-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.action-card:hover .action-image img {
  transform: scale(1.06);
}

.action-body {
  padding: 20px;
}

.action-body h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  color: #18342d;
  margin-bottom: 12px;
}

.action-body p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #59726b;
  margin-bottom: 16px;
}

.action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.action-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #1c6a58;
  color: #fff;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}

.action-links a:hover {
  background: #155243;
  transform: translateY(-2px);
}

@media (max-width: 1050px) {
  .engagement-layout {
    grid-template-columns: 1fr;
  }

  .engagement-sidebar {
    position: static;
  }

  .engagement-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .sidebar-label {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .level-btn {
    margin-bottom: 0;
  }
}

@media (max-width: 760px) {
  .engagement-sidebar {
    grid-template-columns: 1fr;
  }

  .level-btn {
    padding: 14px;
  }

  .level-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .level-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .action-card {
    flex: 0 0 86%;
  }

  .action-image {
    height: 190px;
  }
}

.eco-test {
  padding: 80px 20px;
  background: #eef7f4;
}

.test-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.test-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.test-container p {
  color: #5a6e68;
  margin-bottom: 20px;
}

.question {
  margin-bottom: 20px;
}

.question p {
  font-weight: bold;
  margin-bottom: 8px;
}

.question label {
  display: block;
  margin-bottom: 6px;
  cursor: pointer;
}

.test-btn {
  margin-top: 15px;
  padding: 12px 20px;
  border: none;
  background: #1c6a58;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
}

.test-btn:hover {
  background: #155243;
}

.result-box {
  margin-top: 25px;
  padding: 20px;
  border-radius: 15px;
  font-size: 1.1rem;
  background: #e6f4ef;
}

.hidden {
  display: none;
}

.we-section {
  width: 100%;
  padding: 100px 20px;
  background: linear-gradient(180deg, #f7fbfa 0%, #edf6f3 100%);
}

.we-container {
  max-width: 1250px;
  margin: 0 auto;
}

.we-head {
  max-width: 900px;
  margin-bottom: 40px;
}

.we-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #2d8a71;
  font-weight: 700;
}

.we-head h1 {
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1.05;
  color: #16352d;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.we-subtext {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #5d756e;
  max-width: 820px;
}

.we-main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.we-main-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 42px rgba(18, 55, 47, 0.08);
  border: 1px solid rgba(27, 88, 74, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.we-main-card:hover,
.we-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(18, 55, 47, 0.12);
}

.we-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #e8f5f0;
  color: #1c6a58;
  font-weight: 700;
  margin-bottom: 18px;
}

.we-main-card h2 {
  font-size: 1.6rem;
  color: #17342d;
  margin-bottom: 14px;
  line-height: 1.2;
}

.we-main-card p {
  color: #607771;
  line-height: 1.8;
  margin-bottom: 14px;
}

.we-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.we-feature-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 16px 36px rgba(18, 55, 47, 0.08);
  border: 1px solid rgba(27, 88, 74, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.we-feature-card h3 {
  font-size: 1.35rem;
  color: #17342d;
  margin-bottom: 12px;
  line-height: 1.25;
}

.we-feature-card p {
  color: #617873;
  line-height: 1.8;
  margin-bottom: 12px;
}

.we-feature-card.dark {
  background: linear-gradient(135deg, #173d34 0%, #24584a 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 20px 42px rgba(13, 38, 32, 0.16);
}

.we-feature-card.dark .we-number {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.we-feature-card.dark h3,
.we-feature-card.dark p {
  color: #ffffff;
}

.we-feature-card.accent {
  background: linear-gradient(180deg, #eef8f4 0%, #ddf0e8 100%);
}

.we-bottom-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 88, 74, 0.08);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 16px 36px rgba(18, 55, 47, 0.08);
  backdrop-filter: blur(10px);
}

.we-bottom-left h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.12;
  color: #17342d;
}

.we-bottom-right p {
  color: #607771;
  line-height: 1.9;
  margin-bottom: 14px;
  font-size: 1rem;
}

@media (max-width: 980px) {
  .we-main-grid,
  .we-feature-grid,
  .we-bottom-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .we-section {
    padding: 70px 16px;
  }

  .we-main-card,
  .we-feature-card,
  .we-bottom-panel {
    padding: 24px;
    border-radius: 22px;
  }

  .we-head h1 {
    font-size: 2.2rem;
  }

  .we-subtext {
    font-size: 1rem;
  }

  .we-main-card h2 {
    font-size: 1.35rem;
  }

  .we-feature-card h3 {
    font-size: 1.2rem;
  }
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #dcebe6;
  border-radius: 10px;
  margin: 20px 0;
  overflow: hidden;
}

#progress {
  height: 100%;
  width: 0%;
  background: #1c6a58;
  transition: width 0.3s ease;
}

.question label {
  display: block;
  padding: 12px;
  margin: 8px 0;
  border-radius: 10px;
  background: #f2f7f5;
  cursor: pointer;
  transition: 0.2s;
}

.question label:hover {
  background: #d9ebe6;
}

.result-box ul {
  margin-top: 10px;
  padding-left: 20px;
}

.result-box button {
  margin-top: 15px;
  padding: 10px 16px;
  border: none;
  background: #1c6a58;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}


.second-header {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.second-header-container {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.second-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.second-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.second-logo-text {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.second-top-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.second-top-buttons a {
  color: #dbe4f0;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.second-top-buttons a:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

.active-second-button {
  color: #ffffff;
  background-color: #2f80ed;
  box-shadow: 0 8px 24px rgba(47, 128, 237, 0.28);
}

@media (max-width: 900px) {
  .second-header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .second-top-buttons {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .second-header-container {
    min-height: auto;
    padding: 16px 0;
  }

  .second-logo-text {
    font-size: 1.05rem;
  }

  .second-top-buttons a {
    font-size: 0.95rem;
    padding: 9px 14px;
  }
}
