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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  background: url("images/bundle-images/background-bundle-hero.png")
    bottom/cover no-repeat;
  min-height: 875px;
  padding: 40px 40px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.hero-bg-office {
  display: none;
}

.font-normal {
  font-weight: 400;
}

.hero-instructor-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 546px;
  height: 658px;
  background: url("images/bundle-images/aiman-isolated\ 1.png") center
    center/cover no-repeat;
  z-index: 3;
}

.hero-instructor-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 480px;
  height: 620px;
  background: url("images/bundle-images/aiman-isolated\ 2.png") center
    center/cover no-repeat;
  z-index: 3;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
  width: 100%;
}

.hero-heading {
  text-align: center;
  margin-bottom: 15px;
}

.hero-heading h1 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-heading h1 .text-market {
  color: #000;
}

.hero-heading h1 .text-execution {
  color: #dc2626;
}

.hero-heading h1 .font-normal {
  font-weight: 400;
}

.hero-subtitle {
  font-size: 27px;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.hero-description {
  font-size: 20px;
  color: #4a4a4a;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description .instructor-name {
  color: #dc2626;
  font-weight: 600;
  font-size: 20px;
}

.hero-button-wrapper {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
}

.hero-main-content {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  position: relative;
  margin-bottom: 30px;
  margin-top: 40px;
}

.instructor-left,
.instructor-right {
  flex: 0 0 260px;
  position: relative;
  z-index: 3;
  align-self: flex-end;
}

.instructor-left {
  text-align: right;
}

.instructor-right {
  text-align: left;
}

.instructor-image {
  width: 260px;
  height: 380px;
  background-size: cover;
  background-position: center top;
  border-radius: 8px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.instructor-image::after {
  display: none;
}

.laptop-container {
  flex: 0 0 600px;
  position: relative;
  z-index: 2;
  margin: 0 -20px;
}

.laptop-mockup {
  width: 100%;
  background: #1a1a1a;
  border-radius: 12px 12px 0 0;
  padding: 12px 12px 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.laptop-screen {
  width: 100%;
  aspect-ratio: 16/10;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.screen-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.screen-top-bar {
  height: 30%;
  background: linear-gradient(
    90deg,
    #1e3a5f 0%,
    #2d5a8f 30%,
    #d97706 50%,
    #dc2626 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.screen-top-bar::before {
  content: "TAPE";
  position: absolute;
  top: 10px;
  left: 20px;
  background: #dc2626;
  color: #fff;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
}

.screen-chart-area {
  flex: 1;
  background: #0a0a0a;
  position: relative;
  padding: 20px;
}

.chart-candlesticks {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 200px;
  height: 60%;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.candle {
  flex: 1;
  background: #22c55e;
  border-radius: 2px;
  min-height: 20px;
}

.candle.red {
  background: #ef4444;
}

.screen-ticker {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 180px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid #333;
  border-radius: 4px;
  padding: 12px;
}

.ticker-header {
  font-size: 9px;
  color: #999;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
}

.ticker-title {
  font-size: 13px;
  color: #fff;
  margin-bottom: 8px;
  text-align: right;
  font-weight: 700;
}

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

.ticker-row {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  padding: 2px 0;
}

.ticker-symbol {
  color: #fff;
  font-weight: 600;
}

.ticker-price {
  color: #4ade80;
  font-weight: 500;
}

.laptop-base {
  width: 100%;
  height: 20px;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 0 0 12px 12px;
  position: relative;
}

.laptop-notch {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #3a3a3a;
  border-radius: 6px 6px 0 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px 60px;
  background: linear-gradient(90deg, #991b1b 0%, #dc2626 50%, #991b1b 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 25px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.5);
}

.cta-icon {
  width: 32px;
  height: 32px;
  background: url("images/bundle-images/lock-icon.png") center/contain no-repeat;
  flex-shrink: 0;
  display: inline-block;
}

.cta-icon::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Framework Section */
.framework-section {
  background: #1a1a1a;
  padding: 80px 40px;
}

.framework-content {
  max-width: 1200px;
  margin: 0 auto;
}

.framework-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  position: relative;
  display: inline-block;
  width: 100%;
}

.framework-title::after {
  content: "";
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 58%;
  height: 3px;
  background: linear-gradient(90deg, #00000000 0%, #dc2626 50%, #00000000 100%);
  border-radius: 2px;
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 60px;
  margin-top: 10rem;
}

.instructor-card {
  background: rgba(22, 21, 24, 1);
  background: linear-gradient(
    160deg,
    rgba(233, 9, 9, 0.61) 0%,
    rgba(22, 21, 24, 1) 33%
  );
  border-radius: 16px;
  padding: 100px 60px 45px;
  text-align: center;
  position: relative;
  border: 0.5px solid #e48686;
  max-width: 469px;
  margin: 0 auto;
}

.instructor-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #4a5a6a 0%, #3a4a5a 100%);
  border: 1px solid #e48686;
  position: absolute;
  overflow: hidden;
  left: 137px;
  top: -127px;
}

.instructor-avatar::after {
  display: none;
}

.instructor-avatar-paras {
  background: url("images/bundle-images/square_paras.jpg") center/cover
    no-repeat;
}

.instructor-avatar-aiman {
  background: url("images/bundle-images/square_aiman.png") center/cover
    no-repeat;
}

.instructor-label {
  font-size: 12px;
  color: #e48686;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
  background: #e90909;
  background: linear-gradient(
    344deg,
    rgba(233, 9, 9, 0.41) 0%,
    rgba(22, 21, 24, 0.51) 49%
  );
  padding: 0.5em 2em;
  width: fit-content;
  margin: 0 auto 1rem;
  border-radius: 5px;
}

.instructor-name {
  font-size: 37px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.1;
}

.instructor-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-check {
  color: #e48686;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0;
}

.feature-text {
  color: #e0e0e0;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
}

.complimentary-offer {
  text-align: center;
  margin-top: 60px;
  background: linear-gradient(rgb(22 21 24 / 96%), rgb(22 21 24 / 86%)),
    url(images/bundle-images/cta-bundl.jpeg) center / cover no-repeat;
  padding: 40px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgb(241 0 0 / 29%);
  margin-top: -5rem;
}

.complimentary-text {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.complimentary-text .highlight {
  color: #dbb95e;
  font-weight: 700;
}

.powered-by {
  font-size: 14px;
  color: #999;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}

.powered-by-logo {
  display: inline-block;
  margin-left: 6px;
  max-width: 215px;
}

/* Bundle Section */
.bundle-section {
  background: #000;
  padding: 80px 40px 100px;
  position: relative;
  overflow: hidden;
}

.bundle-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.bundle-bg-network {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(22 21 24 / 16%), rgb(22 21 24 / 86%)),
    url(images/bundle-images/lower-bundle.png) center / cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.bundle-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
}

.bundle-item {
  text-align: center;
  position: relative;
}

.bundle-plus {
  position: absolute;
  top: 150px;
  font-size: 48px;
  color: #666;
  font-weight: 300;
  z-index: 10;
  pointer-events: none;
}

.bundle-item:nth-child(2) ~ .bundle-plus:nth-of-type(1) {
  left: calc(33.33% + 20px);
}

.bundle-item:nth-child(4) ~ .bundle-plus:nth-of-type(2) {
  left: calc(66.66% + 20px);
}

.bundle-card-image {
  width: 100%;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.bundle-item-title {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.bundle-item-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 25px;
}

img.bundle-logo-tt {
  max-width: 191px;
}

span.bundle-featured-text {
  color: #dbb95e;
}

.bundle-features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
  margin-top: 2rem;
}

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

.bundle-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}

.bundle-feature-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.bundle-feature-icon svg {
  width: 16px;
  height: 16px;
  fill: #dc2626;
}

.bundle-feature-text {
  color: #d4d4d4;
  font-size: 14px;
  font-weight: 500;
}

.bundle-item.highlight .bundle-item-title {
  color: #d97706;
}

.bundle-item.highlight .bundle-card-image {
  background: linear-gradient(135deg, #2a2a1a 0%, #1a1a0a 100%);
}

/* Price Section */
.price-container {
  text-align: center;
  padding: 30px 60px;
  border: 1px solid #dc2626;
  border-radius: 16px;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.price-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
  border-color: #ef4444;
}

.price-main {
  font-size: 64px;
  font-weight: 700;
  background: linear-gradient(135deg, #f4e4a7 0%, #dbb95e 50%, #b8933d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 2;
}

.price-original {
  font-size: 24px;
  color: #999;
  font-weight: 500;
  text-decoration: line-through;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-main-content {
    flex-wrap: wrap;
  }

  .instructor-left,
  .instructor-right {
    flex: 0 0 200px;
  }

  .instructor-image {
    width: 200px;
    height: 280px;
  }

  .laptop-container {
    flex: 0 0 500px;
    margin: 0 -20px;
  }

  .instructors-grid {
    gap: 40px;
  }

  .bundle-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 719px;
    padding: 30px 15px 0;
    background-position: center top;
  }

  .hero-instructor-left,
  .hero-instructor-right {
    display: none;
  }

  .powered-by-logo {
    margin-left: 0;
    max-width: 165px;
  }

  .hero-content {
    padding-bottom: 0;
    padding-top: 20px;
  }

  .hero-heading h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .hero-description {
    margin-bottom: 20px;
    line-height: 1.5;
    padding: 0 10px;
    font-size: 15px;
  }

  .feature-text {
    font-weight: 400;
    font-size: 16px;
  }

  .instructor-name {
    font-size: 15px !important;
  }

  .hero-description br {
    display: none;
  }

  .hero-button-wrapper {
    bottom: 20px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .cta-button {
    font-size: 14px;
    padding: 12px 16px;
    gap: 6px;
    white-space: nowrap;
    display: inline-flex;
  }

  .complimentary-text {
    font-size: 20px;
  }

  .powered-by {
    flex-wrap: wrap;
  }

  .cta-icon::before {
    display: none;
  }

  .complimentary-offer {
    margin-top: 1rem;
  }

  .cta-icon {
    width: 16px;
    height: 16px;
  }

  .instructor-avatar {
    position: initial;
  }

  .instructor-card {
    padding: 1rem;
  }

  .hero-main-content {
    flex-direction: column;
  }

  .instructor-left,
  .instructor-right {
    display: none;
  }

  .laptop-container {
    flex: 1 1 auto;
    margin: 0;
    max-width: 100%;
  }

  .framework-title {
    font-size: 32px;
  }

  .instructors-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 1rem;
  }

  .bundle-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .price-container {
    padding: 3rem 1rem;
  }

  .bundle-plus {
    margin: 20px 0;
    transform: rotate(90deg);
  }

  .price-main {
    font-size: 31px;
  }

  .price-original {
    font-size: 20px;
  }
}

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

.hero-content > * {
  animation: fadeInUp 0.6s ease-out backwards;
}

.hero-heading {
  animation-delay: 0.1s;
}

.hero-subtitle {
  animation-delay: 0.2s;
}

.hero-description {
  animation-delay: 0.3s;
}

.hero-main-content {
  animation-delay: 0.4s;
}

.cta-button {
  animation-delay: 0.5s;
}

@media (min-width: 2000px) {
  .hero-section {
    min-height: 1115px;
  }
}

/* Bundle Welcome Page Styles */
.bundle-welcome body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #0a0a0a;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  position: relative;
  overflow-x: hidden;
}

/* Network background effect */
.bundle-welcome body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at 20% 20%,
      rgba(220, 38, 38, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(220, 38, 38, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

/* Subtle grid pattern */
.bundle-welcome body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.bundle-welcome .container {
  max-width: 680px;
  width: 100%;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 4rem 20px;
}

.bundle-welcome .page-header {
  text-align: center;
  margin-bottom: 40px;
}

.bundle-welcome .page-label {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fefefe;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.bundle-welcome .page-label::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 58%;
  height: 3px;
  background: linear-gradient(90deg, #00000000 0%, #dc2626 50%, #00000000 100%);
  border-radius: 2px;
}

.bundle-welcome .page-title {
  font-size: 38px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  margin-top: 20px;
}

.bundle-welcome .page-subtitle {
  font-size: 18px;
  color: #cecece;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.bundle-welcome .page-subtitle strong {
  color: #fff;
  font-weight: 600;
}

.bundle-welcome .content-card {
  background: #fff;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.bundle-welcome .step-section {
  margin-bottom: 40px;
}

.bundle-welcome .step-section:last-child {
  margin-bottom: 0;
}

.bundle-welcome .step-number {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.5;
}

.bundle-welcome .step-number strong {
  color: rgb(152, 1, 1);
}

.bundle-welcome .step-number .instructor {
  font-weight: 400;
  color: #666;
}

.bundle-welcome .step-button {
  display: inline-block;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  margin-top: 12px;
  border: none;
  cursor: pointer;
}

.bundle-welcome .step-button:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bundle-welcome .step-note {
  font-size: 14px;
  color: #666;
  margin-top: 12px;
}

.bundle-welcome .important-box {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 24px;
  border-radius: 8px;
  margin-top: 16px;
}

.bundle-welcome .important-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.bundle-welcome .important-title strong {
  color: #000;
}

.bundle-welcome .important-content {
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.6;
}

.bundle-welcome .important-list {
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
}

.bundle-welcome .important-list li {
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.bundle-welcome .important-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

.bundle-welcome .email-button {
  display: inline-block;
  background: #7c2d12;
  background: linear-gradient(90deg, #991b1b 0%, #dc2626 50%, #991b1b 100%);
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.bundle-welcome .email-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124, 45, 18, 0.3);
}

.bundle-welcome .help-text {
  font-size: 14px;
  color: #9b9b9b;
  margin-top: 16px;
  text-align: center;
}

.bundle-welcome .help-text a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 600;
}

.bundle-welcome .help-text a:hover {
  text-decoration: underline;
}

.bundle-welcome .footer-help {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: #666;
}

.bundle-welcome .footer-help a {
  color: #999;
  text-decoration: none;
}

p.bundle-team-email {
  color: #000000;
  margin-top: 0.5rem;
  font-style: italic;
  font-size: 14px;
}

.bundle-welcome .footer-help a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .bundle-welcome body {
    padding: 30px 16px;
  }

  .bundle-welcome .page-title {
    font-size: 36px;
  }

  .bundle-welcome .page-subtitle {
    font-size: 16px;
  }

  .bundle-welcome .content-card {
    padding: 32px 24px;
  }

  .bundle-welcome .step-number {
    font-size: 16px;
  }

  .bundle-welcome .step-button,
  .bundle-welcome .email-button {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .bundle-welcome .page-title {
    font-size: 28px;
  }

  .bundle-welcome .page-label {
    font-size: 15px;
    line-height: 1.5rem;
  }

  .bundle-welcome .content-card {
    padding: 24px 20px;
  }
  .bundle-welcome .important-title {
    font-size: 14px;
  }
  p.bundle-team-email {
    font-size: 12px;
    text-align: center;
  }
}
