.hackersworkshop-page {
  background: #f6f2ef;
  color: #374151;
  font-family: "Varela Round", sans-serif;
}

.hackersworkshop-page main {
  padding-top: 68px;
}

.hackersworkshop-page .nav {
  background: rgba(246, 242, 239, 0.9);
}

.hackersworkshop-page .nav__cta {
  color: #fff;
}

.hackersworkshop-page .hero {
  background: #1b2d4f;
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
}

.hackersworkshop-page .hero-blob-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  top: -180px;
  right: -80px;
  background: #ef7da0;
  opacity: 0.12;
}

.hackersworkshop-page .hero-blob-2 {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  bottom: -100px;
  left: -60px;
  background: #ef7da0;
  opacity: 0.09;
}

.hackersworkshop-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.hackersworkshop-page .hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.hackersworkshop-page .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #ef7da0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: rgba(239, 125, 160, 0.12);
  padding: 6px 16px;
  border-radius: 50px;
}

.hackersworkshop-page .hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef7da0;
}

.hackersworkshop-page .hero h1 {
  font-family: "Bungee", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hackersworkshop-page .hero h1 span,
.hackersworkshop-page .highlight-quote span,
.hackersworkshop-page .cta-title span {
  color: #ef7da0;
}

.hackersworkshop-page .hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hackersworkshop-page .hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  margin-bottom: 40px;
}

.hackersworkshop-page .hero-stat {
  display: block;
  flex: 1 1 0;
  min-width: 0;
}

.hackersworkshop-page .hero-stat-num {
  display: block;
  font-family: "Bungee", sans-serif;
  font-size: 26px;
  color: #ef7da0;
  line-height: 1;
  white-space: nowrap;
}

.hackersworkshop-page .hero-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  line-height: 1.45;
}

.hackersworkshop-page .hero-actions,
.hackersworkshop-page .cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hackersworkshop-page .btn-primary,
.hackersworkshop-page .btn-white,
.hackersworkshop-page .btn-outline,
.hackersworkshop-page .btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}

.hackersworkshop-page .btn-primary {
  background: #ef7da0;
  color: #fff;
  padding: 14px 32px;
}

.hackersworkshop-page .btn-primary:hover {
  background: #d4507a;
}

.hackersworkshop-page .btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  padding: 14px 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.hackersworkshop-page .btn-outline:hover {
  border-color: #ef7da0;
  color: #ef7da0;
}

.hackersworkshop-page .hero-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 32px;
  backdrop-filter: blur(8px);
}

.hackersworkshop-page .hero-card-label {
  font-family: "Bungee", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #ef7da0;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hackersworkshop-page .hero-card-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hackersworkshop-page .hero-card-item:last-child {
  border-bottom: none;
}

.hackersworkshop-page .hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(239, 125, 160, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #ef7da0;
}

.hackersworkshop-page .hero-card-stat {
  font-family: "Bungee", sans-serif;
  font-size: 15px;
  color: #fff;
  margin-bottom: 2px;
}

.hackersworkshop-page .hero-card-source {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.05em;
}

.hackersworkshop-page .section {
  padding: 80px 0 0;
}

.hackersworkshop-page .section-header {
  margin-bottom: 40px;
}

.hackersworkshop-page .section-label {
  font-family: "Bungee", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #ef7da0;
  text-transform: uppercase;
  background: rgba(239, 125, 160, 0.18);
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 14px;
}

.hackersworkshop-page .section-title {
  font-family: "Bungee", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  color: #1b2d4f;
  line-height: 1.12;
}

.hackersworkshop-page .section-title span {
  color: #ef7da0;
}

.hackersworkshop-page .section-sub {
  font-size: 17px;
  color: #6b7280;
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.7;
}

.hackersworkshop-page .problem-grid,
.hackersworkshop-page .learn-grid,
.hackersworkshop-page .trainers-grid,
.hackersworkshop-page .formats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hackersworkshop-page .problem-card,
.hackersworkshop-page .trainer-card,
.hackersworkshop-page .format-card,
.hackersworkshop-page .strategic-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(239, 125, 160, 0.12), 0 2px 8px rgba(17, 24, 39, 0.06);
}

.hackersworkshop-page .problem-card {
  padding: 28px;
}

.hackersworkshop-page .problem-num {
  font-family: "Bungee", sans-serif;
  font-size: 2rem;
  color: #ef7da0;
  line-height: 1;
  margin-bottom: 10px;
}

.hackersworkshop-page .problem-text,
.hackersworkshop-page .trainer-text,
.hackersworkshop-page .format-tagline,
.hackersworkshop-page .strategic-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.65;
}

.hackersworkshop-page .problem-source {
  font-size: 12px;
  color: #6b7280;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

.hackersworkshop-page .highlight-block {
  background: #1b2d4f;
  border-radius: 20px;
  padding: 40px 48px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.hackersworkshop-page .highlight-block::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: -100px;
  right: -60px;
  background: #ef7da0;
  opacity: 0.1;
}

.hackersworkshop-page .highlight-block-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hackersworkshop-page .highlight-quote {
  font-family: "Bungee", sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  color: #fff;
  line-height: 1.2;
}

.hackersworkshop-page .highlight-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.hackersworkshop-page .learn-card {
  background: #fff8fa;
  border: 1px solid rgba(239, 125, 160, 0.24);
  border-radius: 14px;
  padding: 26px;
  display: flex;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(239, 125, 160, 0.12), 0 2px 8px rgba(17, 24, 39, 0.06);
}

.hackersworkshop-page .learn-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ef7da0;
  color: #fff;
  font-family: "Bungee", sans-serif;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hackersworkshop-page .learn-title,
.hackersworkshop-page .trainer-name,
.hackersworkshop-page .format-duration,
.hackersworkshop-page .strategic-title {
  font-family: "Bungee", sans-serif;
  color: #1b2d4f;
}

.hackersworkshop-page .learn-title {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.hackersworkshop-page .learn-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.75;
}

.hackersworkshop-page .trainer-card,
.hackersworkshop-page .format-card {
  overflow: hidden;
}

.hackersworkshop-page .format-card {
  position: relative;
}

.hackersworkshop-page .trainer-head {
  background: #1b2d4f;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hackersworkshop-page .trainer-head-blob {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  top: -60px;
  right: -40px;
  background: #ef7da0;
  opacity: 0.15;
}

.hackersworkshop-page .trainer-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bungee", sans-serif;
  font-size: 22px;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  overflow: hidden;
  background: rgba(239, 125, 160, 0.24);
}

.hackersworkshop-page .trainer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hackersworkshop-page .trainer-name {
  font-size: 20px;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
}

.hackersworkshop-page .trainer-role {
  font-size: 13px;
  color: #ef7da0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hackersworkshop-page .trainer-body {
  padding: 26px;
}

.hackersworkshop-page .trainer-company {
  display: inline-block;
  font-size: 12px;
  color: #ef7da0;
  background: rgba(239, 125, 160, 0.18);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.hackersworkshop-page .format-card.recommended {
  border-color: #ef7da0;
  border-width: 2px;
}

.hackersworkshop-page .format-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  z-index: 2;
  background: #ef7da0;
  color: #fff;
  font-family: "Bungee", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
  display: inline-block;
}

.hackersworkshop-page .format-head {
  background: #ffeef2;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.hackersworkshop-page .format-duration {
  font-size: 28px;
}

.hackersworkshop-page .format-price {
  font-family: "Bungee", sans-serif;
  font-size: 20px;
  color: #ef7da0;
  margin-top: 4px;
}

.hackersworkshop-page .format-body {
  padding: 24px 28px;
}

.hackersworkshop-page .format-body--extras {
  padding: 0;
}

.hackersworkshop-page .format-body--extras .format-feature {
  color: #fff;
}

.hackersworkshop-page .contact {
  padding-top: 80px;
  background: transparent;
}

.hackersworkshop-page .contact__form,
.hackersworkshop-page .contact__row,
.hackersworkshop-page .contact__field {
  background: transparent;
  box-shadow: none;
}

.hackersworkshop-page .contact__input,
.hackersworkshop-page .contact__textarea,
.hackersworkshop-page .contact__select {
  background: #fff;
  box-shadow: none;
}

.hackersworkshop-page .format-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #374151;
  margin-bottom: 10px;
  line-height: 1.5;
}

.hackersworkshop-page .format-feature::before {
  content: "→";
  color: #ef7da0;
  flex-shrink: 0;
  margin-top: 1px;
}

.hackersworkshop-page .strategic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hackersworkshop-page .strategic-card {
  padding: 24px;
  text-align: center;
}

.hackersworkshop-page .strategic-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(239, 125, 160, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 14px;
  color: #ef7da0;
}

.hackersworkshop-page .strategic-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.hackersworkshop-page .divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 60px 0 0;
}

.hackersworkshop-page .cta-section {
  background: #1b2d4f;
  border-radius: 28px;
  margin: 80px 0;
  padding: 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hackersworkshop-page .cta-blob-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  top: -140px;
  right: -80px;
  background: #ef7da0;
  opacity: 0.12;
}

.hackersworkshop-page .cta-blob-2 {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  bottom: -100px;
  left: -60px;
  background: #ef7da0;
  opacity: 0.09;
}

.hackersworkshop-page .cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hackersworkshop-page .cta-label {
  font-size: 12px;
  color: #ef7da0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hackersworkshop-page .cta-title {
  font-family: "Bungee", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hackersworkshop-page .cta-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
}

.hackersworkshop-page .btn-white {
  background: #fff;
  color: #1b2d4f;
  padding: 14px 32px;
}

.hackersworkshop-page .btn-ghost-white {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  padding: 14px 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.hackersworkshop-page .footer {
  margin-top: 0;
}

@media (max-width: 900px) {
  .hackersworkshop-page .hero-inner,
  .hackersworkshop-page .problem-grid,
  .hackersworkshop-page .learn-grid,
  .hackersworkshop-page .trainers-grid,
  .hackersworkshop-page .formats-grid,
  .hackersworkshop-page .highlight-block-inner {
    grid-template-columns: 1fr;
  }

  .hackersworkshop-page .hero-card {
    display: none;
  }

  .hackersworkshop-page .strategic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hackersworkshop-page .hero {
    padding: 60px 0;
  }

  .hackersworkshop-page .container {
    padding: 0 24px;
  }

  .hackersworkshop-page .cta-section {
    padding: 48px 28px;
  }
}

@media (max-width: 700px) {
  .hackersworkshop-page .hero-stats {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .hackersworkshop-page .strategic-grid {
    grid-template-columns: 1fr;
  }
}
