.resources-page {
  min-height: 100vh;
  padding: 8rem 0 4rem 0;
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.resources-hero {
  position: relative;
  background: radial-gradient(circle at top right, rgba(0, 163, 255, 0.05) 0%, transparent 60%);
}

.resources-hero::before {
  display: none;
}

.resources-hero-shell {
  display: grid;
  gap: 0;
}

.resources-title {
  margin: 0 0 1rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--foreground);
  white-space: nowrap;
}

.resources-subtitle {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 600;
  background: linear-gradient(90deg, #1DBBD1 0%, #B969DC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.resources-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.resources-hero-visual {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
}

.resources-hero-visual img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.32));
}

.resources-hero-copy {
  max-width: none;
}

.resources-tagline {
  margin: 0 0 2rem;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 500;
}

.resources-body {
  display: grid;
  gap: 1.5rem;
}

.resources-body p {
  margin: 0;
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.6;
}

.resources-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: #1e252b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--foreground);
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.resources-download-btn:hover {
  transform: translateY(-2px);
  background: #2a333c;
  border-color: rgba(255, 255, 255, 0.12);
}

.resources-download-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.2rem;
  line-height: 1;
}

.resources-carousel-section {
  padding: 60px 0;
}

.resources-carousel .production-carousel-card-inner h4 {
  max-width: 16ch;
  font-size: 1.5rem;
  line-height: 1.08;
}

.resources-carousel .production-carousel-card-inner p {
  max-width: 24ch;
  font-size: 1rem;
  line-height: 1.6;
}

.resources-knowledge-section {
  padding: 100px 0;
}

.resources-knowledge-shell {
  display: grid;
  gap: 60px;
}

.resources-module-title {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0;
  display: inline-block;
  background: linear-gradient(90deg, #1DBBD1 0%, #B969DC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.resources-knowledge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.resources-knowledge-card {
  min-height: 465px;
  padding: 3rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(23, 31, 35, 0.78) 0%, rgba(12, 17, 22, 0.92) 100%),
    radial-gradient(circle at 18% 0%, rgba(39, 194, 219, 0.1), transparent 36%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 16px 40px rgba(0, 0, 0, 0.24);
}

.resources-knowledge-card h3 {
  margin: 0 0 1.5rem;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 15ch;
}

.resources-knowledge-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.resources-knowledge-list li {
  position: relative;
  padding-left: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.4;
}

.resources-knowledge-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  top: 0;
  color: #2ec7dc;
  font-weight: 700;
}

.resources-result {
  margin: 1.5rem 0 0;
  color: #1DBBD1;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 600;
}

.resources-knowledge-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.resources-knowledge-visual img {
  display: block;
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
  object-fit: contain;
}

.resources-sops-section {
  padding: 100px 0;
}

.resources-sops-shell {
  display: grid;
  gap: 60px;
}

.resources-sops-heading {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
}

.resources-sops-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.resources-sops-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.resources-sops-visual img {
  display: block;
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  border-radius: 0.85rem;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.32);
  object-fit: contain;
}

.resources-sops-card {
  min-height: 470px;
  padding: 3rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(23, 31, 35, 0.78) 0%, rgba(12, 17, 22, 0.92) 100%),
    radial-gradient(circle at 18% 0%, rgba(39, 194, 219, 0.1), transparent 36%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 16px 40px rgba(0, 0, 0, 0.24);
}

.resources-sops-card h3 {
  margin: 0 0 1.5rem;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 15ch;
}

.resources-sops-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.resources-sops-list li {
  position: relative;
  padding-left: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.4;
}

.resources-sops-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  top: 0;
  color: #2ec7dc;
  font-weight: 700;
}

.resources-sops-result {
  margin: 1.5rem 0 0;
  color: #1DBBD1;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 600;
}

.resources-training-section {
  padding: 100px 0;
}

.resources-training-shell {
  display: grid;
  gap: 60px;
}

.resources-training-heading {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
}

.resources-training-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.resources-training-card {
  min-height: 420px;
  padding: 3rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(23, 31, 35, 0.78) 0%, rgba(12, 17, 22, 0.92) 100%),
    radial-gradient(circle at 18% 0%, rgba(39, 194, 219, 0.1), transparent 36%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 16px 40px rgba(0, 0, 0, 0.24);
}

.resources-training-card h3 {
  margin: 0 0 1.5rem;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 16ch;
}

.resources-training-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.resources-training-list li {
  position: relative;
  padding-left: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.4;
}

.resources-training-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  top: 0;
  color: #2ec7dc;
  font-weight: 700;
}

.resources-training-result {
  margin: 1.5rem 0 0;
  color: #1DBBD1;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 600;
}

.resources-training-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.resources-training-visual img {
  display: block;
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  border-radius: 0.85rem;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.32);
  object-fit: contain;
}

.resources-ai-section {
  padding: 100px 0;
}

.resources-ai-shell {
  display: grid;
  gap: 60px;
}

.resources-ai-heading {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
}

.resources-ai-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.resources-ai-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.resources-ai-visual img {
  display: block;
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.32);
  object-fit: contain;
}

.resources-ai-card {
  min-height: 435px;
  padding: 3rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(23, 31, 35, 0.78) 0%, rgba(12, 17, 22, 0.92) 100%),
    radial-gradient(circle at 18% 0%, rgba(39, 194, 219, 0.1), transparent 36%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 16px 40px rgba(0, 0, 0, 0.24);
}

.resources-ai-card h3 {
  margin: 0 0 1.5rem;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 15ch;
}

.resources-ai-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.resources-ai-list li {
  position: relative;
  padding-left: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.4;
}

.resources-ai-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  top: 0;
  color: #2ec7dc;
  font-weight: 700;
}

.resources-ai-result {
  margin: 1.5rem 0 0;
  color: #1DBBD1;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 600;
}

.resources-business-section {
  padding: 100px 0;
}

.resources-business-shell {
  display: grid;
  gap: 60px;
}

.resources-business-heading {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
}

.resources-business-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.resources-business-card {
  min-height: 420px;
  padding: 3rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(23, 31, 35, 0.78) 0%, rgba(12, 17, 22, 0.92) 100%),
    radial-gradient(circle at 18% 0%, rgba(39, 194, 219, 0.1), transparent 36%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 16px 40px rgba(0, 0, 0, 0.24);
}

.resources-business-card h3 {
  margin: 0 0 1.5rem;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.resources-business-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.resources-business-list li {
  position: relative;
  padding-left: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.4;
}

.resources-business-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  top: 0;
  color: #2ec7dc;
  font-weight: 700;
}

.resources-business-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.resources-business-visual img {
  display: block;
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.32);
  object-fit: contain;
}

@media (max-width: 992px) {
  .resources-page {
    padding-top: 7rem;
  }

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

  .resources-hero-visual {
    justify-content: flex-start;
  }

  .resources-hero-visual img {
    max-width: 100%;
    width: auto;
  }

  .resources-hero-copy {
    max-width: none;
  }

  .resources-module-title,
  .resources-sops-heading,
  .resources-training-heading,
  .resources-ai-heading,
  .resources-business-heading {
    font-size: 2rem;
  }

  .resources-carousel-section {
    padding-top: 4rem;
  }

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

  .resources-knowledge-card {
    min-height: 0;
    padding: 2.25rem;
  }

  .resources-knowledge-visual {
    justify-content: flex-start;
  }

  .resources-knowledge-visual img {
    max-width: 100%;
    width: auto;
  }

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

  .resources-sops-card {
    min-height: 0;
    padding: 2.25rem;
  }

  .resources-sops-visual {
    justify-content: flex-start;
  }

  .resources-sops-visual img {
    max-width: 100%;
    width: auto;
  }

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

  .resources-training-card {
    min-height: 0;
    padding: 2.25rem;
  }

  .resources-training-visual {
    justify-content: flex-start;
  }

  .resources-training-visual img {
    max-width: 100%;
    width: auto;
  }

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

  .resources-ai-card {
    min-height: 0;
    padding: 2.25rem;
  }

  .resources-ai-visual {
    justify-content: flex-start;
  }

  .resources-ai-visual img {
    max-width: 100%;
    width: auto;
  }

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

  .resources-business-card {
    min-height: 0;
    padding: 2.25rem;
  }

  .resources-business-visual {
    justify-content: flex-start;
  }

  .resources-business-visual img {
    max-width: 100%;
    width: auto;
  }
}

@media (max-width: 767px) {
  .resources-page {
    padding: 6.5rem 0 3rem;
  }

  .resources-title {
    white-space: normal;
    font-size: 2.5rem;
  }

  .resources-subtitle {
    font-size: 1.5rem;
  }

  .resources-body p {
    font-size: 1rem;
  }

  .resources-download-btn {
    width: 100%;
    font-size: 1rem;
  }

  .resources-hero-visual img {
    max-width: 100%;
    width: auto;
  }

  .resources-carousel-section {
    padding-top: 3rem;
  }

  .resources-carousel .production-carousel-card-inner h4 {
    max-width: 18ch;
    font-size: 1.5rem;
  }

  .resources-carousel .production-carousel-card-inner p {
    max-width: none;
    font-size: 0.98rem;
  }

  .resources-knowledge-section {
    padding-top: 3rem;
  }

  .resources-knowledge-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .resources-knowledge-card h3 {
    font-size: 1.75rem;
  }

  .resources-knowledge-list li,
  .resources-result {
    font-size: 1rem;
  }

  .resources-knowledge-visual img {
    max-width: 100%;
    width: auto;
  }

  .resources-sops-section {
    padding-top: 3rem;
  }

  .resources-sops-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .resources-sops-card h3 {
    font-size: 1.75rem;
  }

  .resources-sops-list li,
  .resources-sops-result {
    font-size: 1rem;
  }

  .resources-training-section {
    padding-top: 3rem;
  }

  .resources-training-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .resources-training-card h3 {
    font-size: 1.75rem;
  }

  .resources-training-list li,
  .resources-training-result {
    font-size: 1rem;
  }

  .resources-training-visual img {
    max-width: 100%;
    width: auto;
  }

  .resources-ai-section {
    padding-top: 3rem;
  }

  .resources-ai-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .resources-ai-card h3 {
    font-size: 1.75rem;
  }

  .resources-ai-list li,
  .resources-ai-result {
    font-size: 1rem;
  }

  .resources-ai-visual img {
    max-width: 100%;
    width: auto;
  }

  .resources-business-section {
    padding-top: 3rem;
  }

  .resources-business-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .resources-business-card h3 {
    font-size: 1.75rem;
  }

  .resources-business-list li {
    font-size: 1rem;
  }

  .resources-business-visual img {
    max-width: 100%;
    width: auto;
  }
}
