.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 35px rgba(20, 184, 166, 0.28);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 55px rgba(20, 184, 166, 0.38);
}

.btn-outline {
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-4px);
}

.feature-card {
  min-height: 220px;
  padding: 26px;
  border-radius: 30px;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-card span {
  font-size: 38px;
}

.feature-card h3 {
  margin-top: 16px;
  font-size: 22px;
  color: var(--primary);
}

.feature-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.resource-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border-radius: 32px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: 0.28s ease;
  overflow: hidden;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.resource-card.premium {
  background:
    radial-gradient(circle at top right, rgba(20,184,166,0.18), transparent 35%),
    white;
}

.file-badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.resource-card h3 {
  margin-top: 22px;
  font-size: 24px;
  color: var(--primary);
}

.resource-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.resource-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.resource-actions a {
  padding: 11px 15px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  color: var(--primary);
  background: #f1f5f9;
  transition: 0.25s ease;
}

.resource-actions a:first-child {
  color: white;
  background: var(--primary);
}

.resource-actions a:hover {
  transform: translateY(-3px);
}

.scenario-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  border-radius: 34px;
  color: white;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  transition: 0.28s ease;
}

.scenario-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.14);
}

.scenario-number {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-bottom: 22px;
}

.scenario-card h3 {
  font-size: 24px;
}

.scenario-card p {
  margin-top: 12px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
}

.scenario-card a {
  display: inline-flex;
  margin-top: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #020617;
  background: white;
  font-weight: 900;
}

.gallery-card {
  min-height: 220px;
  border-radius: 30px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  font-size: 20px;
  background:
    linear-gradient(135deg, rgba(15,23,42,0.15), rgba(15,23,42,0.55)),
    linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow-md);
  transition: 0.28s ease;
}

.gallery-card:hover {
  transform: scale(1.04);
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
  }

  .resource-card,
  .scenario-card,
  .feature-card {
    border-radius: 24px;
  }
}

.hero-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-logos img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: #fff;
  padding: 8px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.hero-copy h1 {
  font-size: clamp(42px, 5vw, 68px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  font-weight: 850 !important;
  max-width: 760px;
}

.hero-copy h1 span {
  color: #99f6e4;
}

.video-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.video-card video {
  width: 100%;
  border-radius: 20px;
  background: #020617;
}

.video-card h3 {
  margin-top: 14px;
  font-size: 18px;
  color: var(--primary);
  line-height: 1.4;
}

.image-card {
  display: block;
  background: white;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.image-card span {
  display: block;
  padding: 14px;
  font-weight: 800;
  color: var(--primary);
}