/* =============================================
   Become a Professional - Page Styles
   ============================================= */

/* Hero Section */
.pro-hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 220px 20px 80px;
  position: relative;
  overflow: hidden;
}

.pro-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 800px;
  background: linear-gradient(
    135deg,
    #1a1a2e 0%,
    #16213e 40%,
    #0f3460 70%,
    #1a1a2e 100%
  );
  z-index: 0;
}

.pro-hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 700px;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(255, 90, 0, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 30%,
      rgba(255, 160, 60, 0.1) 0%,
      transparent 50%
    );
  z-index: 0;
}

.pro-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.pro-hero-section h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.pro-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.pro-hero-cta {
  display: inline-flex;
  margin-bottom: 40px;
  text-decoration: none;
  padding: 14px 32px;
}

.pro-hero-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pro-hero-avatars {
  display: flex;
  align-items: center;
}

.pro-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.9);
  object-fit: cover;
  margin-left: -10px;
}

.pro-avatar:first-child {
  margin-left: 0;
}

.pro-hero-stat-items {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pro-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pro-stat-item strong {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.pro-stat-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.pro-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

.pro-hero-image {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: -20px auto 0;
}

.pro-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.pro-benefits-section {
  padding: 60px 20px;
  text-align: center;
}

.pro-section-title {
  font-size: 64px;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 12px;
}

.pro-section-subtitle {
  font-size: 18px;
  color: var(--secondary-text);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.benefits {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 48px;
  max-width: 1400px;
  margin: 100px auto 0;
}

.benefit {
  position: relative;
  flex: 1;
  max-width: 450px;
}

.benefit-number {
  position: relative;
  left: 20%;
  transform: translateX(-50%);
  font-size: 120px;
  font-weight: 800;
  color: rgba(25, 0, 102, 0.08);
  z-index: 0;
  transition: all 0.3s ease;
}

.benefit-card {
  position: sticky;
  top: 30vh;
  height: 350px;
  border-radius: 32px;
  padding: 32px;
  z-index: 1;
  isolation: isolate;
  background: linear-gradient(
    90deg,
    #ff00b8 0%,
    #b009fe 34%,
    #3e1ffc 60%,
    #00deff 100%
  );
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.benefit-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: #ffffff;
  z-index: -1;
}

.benefit-card::before {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 200px;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 92, 22, 0.3) 100%
  );
  z-index: 0;
  opacity: 0.5;
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
  transition: all 0.3s ease;
  z-index: -1;
}

.benefit-card:hover::before {
  opacity: 0.8;
  transform: translateX(-10px) translateY(-10px);
}

.benefit-image {
  width: auto;
  height: 90px;
  margin: 0 auto;
  display: block;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.benefit-card h3 {
  font-size: 42px;
  width: 80%;
  font-weight: 600;
  color: #3d065f;
  margin: 0 auto;
  transition: transform 0.3s ease;
  cursor: default;
}

.benefit-card p {
  font-size: 18px;
  width: 80%;
  margin: 0 auto;
  color: #3d065f;
  margin-top: 12px;
  line-height: 1.5;
}

.benefit:nth-child(1) .benefit-card {
  top: 20vh;
  transition-delay: 0s;
}
.benefit:nth-child(2) .benefit-card {
  top: 25vh;
  transition-delay: 0.1s;
}
.benefit:nth-child(3) .benefit-card {
  top: 30vh;
  transition-delay: 0.2s;
}

@keyframes floatNumber {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* Feature Sections */
.pro-features-section {
  padding: 40px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.pro-feature-row {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 80px 0;
}

.pro-feature-row.reverse {
  flex-direction: row-reverse;
}

.pro-feature-text {
  flex: 1;
}

.pro-feature-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.pro-feature-text > p {
  font-size: 16px;
  color: var(--secondary-text);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pro-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pro-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--primary-text);
  font-family: "Harmonia Sans Pro", sans-serif;
}

.pro-check-icon {
  color: var(--brand-orange-primary);
  font-size: 22px;
  flex-shrink: 0;
}

.pro-feature-cta {
  display: inline-flex;
  text-decoration: none;
  font-size: 15px;
  padding: 12px 28px;
}

.pro-feature-media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.pro-feature-media-2,
.pro-feature-media-4 {
  margin-right: 90px;
}

.pro-feature-img {
  width: 140%;
  max-width: none;
}

.pro-feature-img:hover {
  transform: translateY(-8px);
}

.pro-feature-row + .pro-feature-row {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pro-banner {
  position: relative;
  width: 100%;
  background: var(--brand-orange-primary);
  margin: 30px auto;
  padding: 60px;
  border-radius: 32px;
}

.pro-banner-inner {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pro-banner-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
  color: #ffffff;
}

.pro-banner-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.pro-banner-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 400px;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 30px 0px 30px 0px;
}

.testimonials-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 80px;
  color: var(--primary-text);
  z-index: 1;
}

.testimonials-scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 40px;
  z-index: 1;
}

.testimonials-scroll {
  display: flex;
  gap: 32px;
  padding: 0 20px;
  width: max-content;
  transition: transform 0.1s ease-out;
}

.testimonials-scroll.reverse {
  transition: transform 0.1s ease-out;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 420px;
  min-width: 420px;
  height: 320px;
  border-radius: 32px;
  padding: 40px 32px 32px;
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 0px;
  width: 200px;
  height: 320px;
  opacity: 0.25;
  z-index: 0;
  clip-path: polygon(0 0, 40% 17%, 40% 100%, 0% 100%);
  transition: opacity 0.3s ease;
}

.testimonial-card:hover::after {
  opacity: 0.35;
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}

.testimonial-quote {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  padding-left: 10px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 18px;
  color: #000;
}

.testimonial-author span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
}

.testimonial-lime {
  background: #b9f94c;
}
.testimonial-lime::after {
  background: #6a00ff;
}
.testimonial-lime .testimonial-quote {
  color: #4b0082;
}

.testimonial-coral {
  background: #ffd6c5;
}
.testimonial-coral::after {
  background: #ff5c16;
}
.testimonial-coral .testimonial-quote {
  color: #8b2800;
}

.testimonial-purple {
  background: #f7ccff;
}
.testimonial-purple::after {
  background: #8b2cff;
}
.testimonial-purple .testimonial-quote {
  color: #4a0070;
}

.testimonial-cream {
  background: #fff5f0;
}
.testimonial-cream::after {
  background: #ff8a50;
}
.testimonial-cream .testimonial-quote {
  color: #6a2c00;
}

.testimonial-mint {
  background: #a7f3d0;
}
.testimonial-mint::after {
  background: #059669;
}
.testimonial-mint .testimonial-quote {
  color: #065f46;
}

.testimonial-sky {
  background: #bae6fd;
}
.testimonial-sky::after {
  background: #0284c7;
}
.testimonial-sky .testimonial-quote {
  color: #075985;
}

.testimonial-peach {
  background: #fecaca;
}
.testimonial-peach::after {
  background: #dc2626;
}
.testimonial-peach .testimonial-quote {
  color: #991b1b;
}

.testimonial-lavender {
  background: #e9d5ff;
}
.testimonial-lavender::after {
  background: #9333ea;
}
.testimonial-lavender .testimonial-quote {
  color: #6b21a8;
}

.testimonial-yellow {
  background: #fef08a;
}
.testimonial-yellow::after {
  background: #ca8a04;
}
.testimonial-yellow .testimonial-quote {
  color: #713f12;
}

.testimonial-rose {
  background: #fecdd3;
}
.testimonial-rose::after {
  background: #e11d48;
}
.testimonial-rose .testimonial-quote {
  color: #881337;
}

/* FAQ Section */
.pro-faq-section {
  padding: 100px 0px 220px 0px;
  text-align: center;
}

.pro-faq-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pro-faq-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 32px;
  transition: background 0.3s ease;
  overflow: hidden;
  text-align: left;
}

.pro-faq-item.open {
  background: #fff7ed;
}

.pro-faq-question {
  color: var(--primary-text);
  width: 100%;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Harmonia Sans Pro", sans-serif;
  gap: 16px;
  text-decoration: none;
}

.pro-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--brand-orange-primary);
  border: 2px solid var(--brand-orange-primary);
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pro-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease;
  opacity: 0;
}

.pro-faq-item.open .pro-faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 16px;
}

.pro-faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  width: 90%;
}

/* CTA Banner */
.pro-showcase {
  position: relative;
  width: 100%;
  min-height: 360px;
  background: #101828;
  padding: 60px 0px 120px 0px;
}

.pro-showcase-inner {
  padding: 90px;
  position: relative;
  overflow: visible;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.pro-showcase-inner::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.pro-showcase-inner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.pro-showcase-content {
  position: relative;
  z-index: 1;
}

.pro-showcase-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.pro-showcase-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 400px;
  line-height: 1.6;
}

.pro-showcase-btn {
  text-decoration: none;
  background: #ffffff;
  color: var(--brand-orange-primary);
  box-shadow: 3px 3px 0px 2px rgba(0, 0, 0, 0.15);
  padding: 14px 32px;
}

.pro-showcase-media {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.pro-cta-laptop {
  transform: translateY(-40px);
  max-width: none;
  margin-top: -200px;
  width: 800px !important;
}

/* Scroll animations */
.pro-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.pro-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive — Large Tablet ===== */
@media (max-width: 980px) {
  .pro-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pro-feature-row {
    gap: 48px;
  }
}

/* ===== Responsive — Tablet ===== */
@media (max-width: 768px) {
  .pro-hero-section h1 {
    font-size: 2.5rem;
  }

  .pro-hero-section {
    padding: 160px 16px 60px;
  }

  .pro-section-title {
    font-size: 32px;
  }

  .pro-benefits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pro-feature-row,
  .pro-feature-row.reverse {
    flex-direction: column;
    gap: 40px;
    padding: 48px 0;
  }

  .pro-feature-text h2 {
    font-size: 28px;
  }

  .pro-showcase-inner {
    flex-direction: column;
    text-align: center;
    padding: 48px 24px;
  }

  .pro-showcase-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .pro-cta-phone {
    transform: translateY(0);
    width: 200px;
    margin-top: 32px;
  }

  .pro-faq-question {
    font-size: 17px;
  }

  .pro-testimonial-card {
    width: 260px;
    min-width: 260px;
  }
}

/* ===== Responsive — Mobile (max 575px) ===== */
@media (max-width: 575px) {
  .pro-hero-section,
  .pro-benefits-section,
  .pro-features-section,
  .testimonials-section,
  .pro-faq-section {
    overflow-x: hidden !important;
  }

  .btn-primary {
    width: 90% !important;
  }

  .btn-large {
    font-size: 12px;
  }

  /* ── Hero ── */
  .pro-hero-section {
    padding: 130px 16px 60px;
  }

  .pro-hero-section h1 {
    font-size: 2.25rem;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
  }

  .pro-hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .pro-hero-cta {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 20px;
    margin-bottom: 28px;
  }

  .pro-avatar {
    width: 32px;
    height: 32px;
  }

  .pro-hero-stat-items {
    gap: 16px;
  }

  .pro-stat-item strong {
    font-size: 20px;
  }

  .pro-stat-item span {
    font-size: 12px;
  }

  .pro-stat-divider {
    height: 28px;
  }

  /* ── Benefits Section ── */
  .pro-benefits-section {
    padding: 40px 24px 30px;
  }

  .pro-section-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .pro-section-subtitle {
    font-size: 12px;
    max-width: 90%;
    margin: 0 auto 40px;
  }

  .benefits {
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }

  .benefit {
    max-width: 100%;
  }

  .benefit-number {
    font-size: 60px;
    left: 50%;
  }

  .benefit-card {
    position: relative;
    top: auto;
    height: auto;
    min-height: 240px;
    padding: 28px 24px 44px;
    border-radius: 24px;
  }

  .benefit:nth-child(1) .benefit-card,
  .benefit:nth-child(2) .benefit-card,
  .benefit:nth-child(3) .benefit-card {
    top: auto;
  }

  .benefit-image {
    height: 70px;
    margin-bottom: 16px;
  }

  .benefit-card h3 {
    font-size: 24px;
    width: 100%;
  }

  .benefit-card p {
    font-size: 14px;
    width: 100%;
    margin-top: 8px;
  }

  .benefit-card::before {
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 140px;
  }

  /* ── Feature Rows ── */
  .pro-features-section {
    padding: 40px 24px 30px;
  }

  .pro-feature-row,
  .pro-feature-row.reverse {
    flex-direction: column;
    gap: 24px;
    padding: 32px 0;
  }

  .pro-feature-text h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .pro-feature-text > p {
    font-size: 12px;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .pro-feature-list {
    gap: 10px;
    margin-bottom: 24px;
  }

  .pro-feature-list li {
    font-size: 12px;
    gap: 10px;
  }

  .pro-check-icon {
    font-size: 18px;
  }

  .pro-feature-cta {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    font-size: 14px;
    padding: 10px 20px;
  }

  .pro-feature-media {
    width: 100%;
    margin-top: 30px;
  }

  .pro-feature-media-2,
  .pro-feature-media-4 {
    margin-right: 0px;
  }

  .pro-feature-img {
    width: 100%;
    max-width: 100%;
  }

  /* ── Banner ── */
  .pro-banner {
    padding: 36px 20px;
    border-radius: 20px;
    margin: 20px 0;
  }

  .pro-banner-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .pro-banner-content p {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .pro-banner-content .btn-primary {
    max-width: 280px;
    justify-content: center;
  }

  /* ── Testimonials ── */
  .testimonials-section {
    padding: 20px 0;
  }

  .testimonials-title {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    padding: 0 16px;
  }

  .testimonials-scroll-wrapper {
    padding: 16px 0 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testimonials-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }

  .testimonials-scroll {
    gap: 16px;
    padding: 0 12px;
    /* Let the row size naturally so native scroll works */
    width: max-content;
    transform: none !important;
  }

  .testimonial-card {
    width: 220px;
    min-width: 220px;
    height: 200px;
    padding: 24px 20px 20px;
    border-radius: 24px;
  }

  .testimonial-header {
    gap: 14px;
  }

  .testimonial-avatar {
    width: 30px;
    height: 30px;
  }

  .testimonial-quote {
    font-size: 14px;
    padding-left: 6px;
  }

  .testimonial-author strong {
    font-size: 12px;
  }

  .testimonial-author span {
    font-size: 10px;
  }

  .testimonial-card::after {
    width: 120px;
    height: 180px;
  }

  /* FAQ Section - Mobile */
  .pro-faq-section {
    padding: 50px 24px 160px;
  }

  .pro-faq-title {
    font-size: 28px;
    margin: 40px 0px 20px 0px;
  }

  .pro-faq-subtitle {
    font-size: 12px;
    max-width: 90%;
    margin: 0 auto 40px auto;
  }

  .pro-faq-list {
    max-width: 100%;
    gap: 12px;
  }

  .pro-faq-item {
    padding: 20px;
    border-radius: 20px;
  }

  .pro-faq-question {
    font-size: 12px;
    gap: 12px;
  }

  .pro-faq-answer p {
    font-size: 10px;
    width: 100%;
    line-height: 1.5;
  }

  .pro-faq-icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
    flex-shrink: 0;
  }

  .pro-faq-item.open .pro-faq-answer {
    margin-top: 12px;
  }

  /* ── Showcase (CTA) ── */
  .pro-showcase {
    min-height: auto;
    padding: 0 0 60px;
    overflow: visible;
  }

  .pro-showcase-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
    padding: 60px 24px;
    overflow-x: clip;
  }

  .pro-showcase-content {
    text-align: center;
  }

  .pro-showcase-content h2 {
    font-size: 26px;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .pro-showcase-content p {
    font-size: 14px;
    max-width: 260px;
    margin: 0 auto 24px;
  }

  .pro-showcase-content .btn-primary {
    max-width: 280px;
    justify-content: center;
    margin: 0 auto;
    display: inline-flex;
  }

  .pro-showcase-media {
    transform: translate(0px, -150px);
    display: flex;
    justify-content: center;
    margin-bottom: -80px;
  }

  .pro-cta-laptop {
    width: 100% !important;
    max-width: 300px;
    transform: translateY(0);
    margin-top: 0;
  }
}
