.rz-hero-section {
  background: url("/images/hero-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.rz-hero-section .rz-main-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 550px;
  text-align: left;
  position: relative;
  z-index: 2;
  margin-left: calc((100% - 1140px) / 2);
  padding-left: 12px;
}

@media (min-width: 1400px) {
  .rz-hero-section .rz-main-content {
    margin-left: calc((100% - 1320px) / 2);
  }
}

@media (max-width: 1199px) {
  .rz-hero-section .rz-main-content {
    margin-left: calc((100% - 960px) / 2);
  }
}

.rz-main-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.rz-main-content p {
  font-size: 18px;
  color: var(--text);
  max-width: 500px;
  text-align: left;
  line-height: 1.7;
}

.rz-main-content .btn {
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.rz-main-content .btn-primary {
  background-color: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
}

.rz-main-content .btn-primary:hover {
  background-color: var(--red-hover);
  border-color: var(--red-hover);
}

.rz-main-content .btn-secondary {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}

.rz-main-content .btn-secondary:hover {
  background-color: var(--black-hover);
  border-color: var(--black-hover);
  color: var(--white);
}

.rz-img-content {
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-60%);
  width: 60%;
  max-width: 850px;
}

.rz-img-content img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 1400px) {
  .rz-img-content {
    right: -50px;
    width: 55%;
  }
}

@media (min-width: 1600px) {
  .rz-img-content {
    right: 50px;
    width: 50%;
  }
}

.rz-trusted-by {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.rz-trusted-by h1 {
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
}

.rz-trusted-by .rz-company-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.rz-trusted-by .rz-company-logos .company-logo {
  height: 34px;
  width: auto;
  opacity: 1;
  filter: none;
  border-radius: 0px !important;
}

.rz-home-jobs {
  background-color: #ffffff;
  padding: 120px 0;
}

.rz-home-steps,
.rz-home-benefits,
.rz-home-cta {
  padding: 90px 0;
}

.rz-home-steps {
  background: #ffffff;
}

.rz-home-benefits {
  background: var(--gray);
}

.rz-home-categories {
  background: #ffffff;
  padding: 90px 0;
}

.rz-home-categories-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--black);
}

.rz-home-categories-header p {
  color: #666;
  font-size: 18px;
  margin-bottom: 0;
}

.category-card {
  display: block;
  background: #ffffff;
  border: 1px solid #d4d4d4;
  border-radius: 14px;
  padding: 26px;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: var(--red);
}

.category-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  margin-bottom: 16px;
}

.category-icon i {
  font-size: 18px;
  color: var(--red);
}

.category-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.category-desc {
  color: #666;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 14px;
}

.category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--red);
  background: rgba(183, 28, 28, 0.1);
  border: none;
  border-radius: 999px;
  padding: 4px 10px;
}

.rz-home-categories .btn-outline-dark {
  border-radius: 10px;
  padding: 10px 18px;
}

.rz-home-benefits .rz-home-benefit-card {
  border: 1px solid #e9e9e9;
  box-shadow: none;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.rz-home-benefits .rz-home-benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 28, 28, 0.28);
  background: #ffffff;
}

.rz-home-benefit-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.rz-home-benefits .rz-home-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  margin-bottom: 0;
}

.rz-home-benefits .rz-home-benefit-title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.rz-home-benefits .rz-home-benefit-text {
  margin-top: 0;
}

.rz-home-benefits .rz-home-benefit-list {
  list-style: none;
  padding-left: 0;
  margin: 14px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rz-home-benefits .rz-home-benefit-list li {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #444;
}

.rz-home-benefits .rz-home-benefit-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 6px;
  flex: 0 0 10px;
  background: rgba(183, 28, 28, 0.25);
  border: 1px solid rgba(183, 28, 28, 0.35);
}

.rz-home-step-card,
.rz-home-benefit-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.rz-home-steps .rz-home-step-card {
  box-shadow: none;
  border: none;
  text-align: center;
}

.rz-home-steps .rz-home-step-badge {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  background: rgba(183, 28, 28, 0.1);
  border: 1px solid rgba(183, 28, 28, 0.18);
  margin: 0 auto 14px auto;
}

.rz-home-steps .rz-home-step-badge i {
  font-size: 28px;
}

.rz-home-steps .rz-home-step-title {
  margin-bottom: 10px;
}

.home-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.home-step-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--red);
  background: rgba(183, 28, 28, 0.1);
  border: 1px solid rgba(183, 28, 28, 0.18);
  margin-bottom: 14px;
}

.home-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: #f3f3f3;
  border: 1px solid #e8e8e8;
}

.home-step-icon i {
  font-size: 18px;
}

.home-step-list {
  margin: 14px 0 0 0;
  padding-left: 18px;
  color: #444;
}

.home-step-list li {
  margin: 6px 0;
}

.rz-home-step-title,
.rz-home-benefit-title {
  font-weight: 900;
  color: var(--black);
  margin-bottom: 10px;
}

.rz-home-step-text,
.rz-home-benefit-text {
  color: #444;
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

.rz-home-benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(183, 28, 28, 0.1);
  border: 1px solid rgba(183, 28, 28, 0.18);
  color: var(--red);
}

.rz-home-benefit-icon i {
  font-size: 18px;
}

.home-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-timeline-item {
  display: flex;
  align-items: stretch;
  gap: 14px;
}

.home-timeline-marker {
  width: 64px;
  flex: 0 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.home-timeline-marker::after {
  content: "";
  position: absolute;
  top: 62px;
  bottom: -12px;
  width: 2px;
  background: rgba(17, 17, 17, 0.12);
}

.home-timeline-item:last-child .home-timeline-marker::after {
  display: none;
}

.home-timeline-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--red);
  background: rgba(183, 28, 28, 0.1);
  border: 1px solid rgba(183, 28, 28, 0.18);
}

.home-timeline-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: #f3f3f3;
  border: 1px solid #e8e8e8;
  margin-top: 10px;
}

.home-timeline-icon i {
  font-size: 18px;
}

.home-timeline-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.home-steps-panel {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 110px;
}

.home-steps-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.home-steps-panel-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 6px 0;
}

.home-steps-panel-text {
  margin: 0;
  color: #444;
  line-height: 1.6;
}

.home-steps-panel-badge {
  font-size: 12px;
  font-weight: 800;
  color: var(--red);
  background: rgba(183, 28, 28, 0.1);
  border: 1px solid rgba(183, 28, 28, 0.18);
  border-radius: 999px;
  padding: 6px 10px;
}

.home-stat {
  background: #f5f5f5;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 14px;
}

.home-stat-label {
  font-size: 13px;
  font-weight: 800;
  color: #555;
}

.home-stat-value {
  font-size: 22px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.02em;
}

.home-steps-panel-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-benefit-list {
  margin: 12px 0 0 0;
  padding-left: 18px;
  color: #444;
}

.home-benefit-list li {
  margin: 6px 0;
}

.rz-home-cta {
  padding: 100px 0;
  background: rgba(183, 28, 28, 0.08);
}

.rz-home-cta-wrapper {
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.rz-home-cta-heading {
  font-size: 42px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
}

.rz-home-cta-desc {
  font-size: 18px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 32px;
  position: relative;
}

.rz-home-cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

.rz-home-cta-buttons .btn-signup {
  background: var(--red);
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-weight: 600;
}

.rz-home-cta-buttons .btn-signup:hover {
  background: var(--red-hover);
  color: #ffffff;
}

.rz-home-cta-buttons .btn-outline-red {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 14px 28px;
}

.rz-home-cta-buttons .btn-outline-red:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.3);
  color: var(--black);
}

.rz-home-cta-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.rz-home-cta-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(183, 28, 28, 0.15);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.2s ease;
}

.rz-home-cta-card:hover {
  border-color: rgba(183, 28, 28, 0.3);
}

.rz-home-cta-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(183, 28, 28, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rz-home-cta-card-icon i {
  font-size: 20px;
  color: var(--red);
}

.rz-home-cta-card-content h5 {
  font-weight: 600;
  color: var(--black);
  margin: 0 0 4px 0;
  font-size: 15px;
}

.rz-home-cta-card-content p {
  color: #666666;
  font-size: 13px;
  margin: 0;
}

.rz-faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
  margin: 100px auto 50px auto;
}

.rz-faq .accordion {
  width: 70%;
  margin-bottom: 4rem;
}

#accordionExample {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--white);
}

.accordion-item + .accordion-item {
  border-top: 1px solid #e0e0e0;
  margin-top: 10px;
}

.accordion-button {
  background-color: var(--white);
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  padding: 1.25rem;
  transition: all 0.2s ease;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:hover {
  background-color: var(--red);
  color: var(--white);
}

.accordion-button:not(.collapsed) {
  background-color: var(--red);
  color: var(--white);
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  background-color: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  padding: 1.25rem;
}

.accordion-collapse {
  transition: height 0.25s ease;
}

.rz-home-resume-builder {
  padding: 90px 0;
}

.rz-resume-builder-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.rz-resume-builder-content {
  flex: 1;
}

.rz-resume-builder-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
}

.rz-resume-builder-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.rz-resume-builder-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.rz-resume-builder-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(183, 28, 28, 0.08);
  color: var(--red);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.rz-resume-builder-feature i {
  font-size: 12px;
}

.rz-resume-builder-preview {
  flex: 0 0 280px;
  background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 24px;
  position: relative;
}

.rz-resume-builder-preview::before {
  content: "Preview";
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.rz-resume-mock-header {
  text-align: center;
  border-bottom: 2px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.rz-resume-mock-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
}

.rz-resume-mock-title {
  font-size: 12px;
  color: var(--red);
}

.rz-resume-mock-section {
  margin-bottom: 10px;
}

.rz-resume-mock-section-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.rz-resume-mock-line {
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  margin-bottom: 6px;
}

.rz-resume-mock-line.short {
  width: 60%;
}

.rz-resume-mock-line.medium {
  width: 80%;
}

@media (max-width: 991px) {
  .home-steps-panel {
    position: static;
  }

  .rz-hero-section {
    flex-direction: column;
    padding: 40px 30px;
    min-height: auto;
    gap: 30px;
    overflow: visible;
  }

  .rz-hero-section .rz-main-content {
    align-items: center;
    text-align: center;
    max-width: 100%;
    margin-left: 0;
    padding-left: 0;
  }

  .rz-main-content h1 {
    font-size: 36px;
    text-align: center;
  }

  .rz-main-content p {
    text-align: center;
    max-width: 100%;
  }

  .rz-img-content {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
  }

  .rz-img-content img {
    max-height: 400px;
    width: 100%;
    object-fit: contain;
  }

  .rz-trusted-by {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .rz-trusted-by .rz-company-logos {
    flex-direction: column;
    gap: 2rem;
  }

  .rz-home-cta-wrapper {
    padding: 36px;
  }

  .rz-home-cta-heading {
    font-size: 32px;
  }

  .rz-home-cta-cards {
    margin-top: 30px;
  }

  .rz-resume-builder-card {
    flex-direction: column;
    padding: 30px;
  }

  .rz-resume-builder-preview {
    flex: none;
    width: 100%;
    max-width: 300px;
  }

  .rz-resume-builder-content h2 {
    font-size: 28px;
  }

  .rz-faq-content {
    text-align: center;
  }

  .rz-faq .accordion {
    width: 90%;
  }
}

@media (max-width: 575px) {
  .home-timeline-marker {
    width: 56px;
    flex-basis: 56px;
  }

  .rz-home-cta-wrapper {
    padding: 28px;
  }

  .rz-home-cta-heading {
    font-size: 28px;
  }

  .rz-home-cta-buttons {
    flex-direction: column;
  }

  .rz-home-cta-buttons .btn {
    width: 100%;
  }
}
