/*
Theme Name: Confidence Masterclass
Theme URI: https://example.com/confidence-masterclass
Author: Shalini Rathod
Author URI: https://example.com
Description: A high-converting landing page theme for the Confidence Masterclass by Shalini Rathod. Features accordion sections, FAQ, testimonials, and bonus cards.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: confidence-masterclass
Tags: landing-page, one-page, custom-colors, custom-logo, full-width-template
*/
/* =========================================
   1. VARIABLES & BASE STYLES
========================================= */
/* =========================================
   1. VARIABLES & BASE STYLES
========================================= */
:root {
  --bg-light: #f0f0f0;
  --text-dark: #1d1d1b;
  --accent-red: #ec1010;
  --white: #ffffff;
  --font-main: "Inter", sans-serif;
  --font-display: "Inter Tight", sans-serif;
  --primary-green: "#9ae05b";
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.5;
}

.container {
  width: 95%;
  max-width: 1070px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.5px;
}

/* =========================================
   2. GLOBAL UTILITIES
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

/* =========================================
   3. NAVBAR COMPONENT
========================================= */
.navbar {
  background-color: var(--bg-light);
  padding: 20px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 40px;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 186px;
  height: 53px;
  gap: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #b5f877 0%, #9ae05b 100%);
  box-shadow:
    0px 3px 6px 0px #7bbe3c26,
    0px 11px 11px 0px #7bbe3c21,
    0px 24px 15px 0px #7bbe3c14,
    0px 43px 17px 0px #7bbe3c05,
    0px 68px 19px 0px #7bbe3c00;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-divider {
  height: 1px;
  background-color: #e2e2e2;
  width: 95%;
  max-width: 1070px;
  margin: 0 auto 30px auto;
}

/* =========================================
   4. HERO SECTION
========================================= */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 2px solid rgba(29, 29, 27, 0.1);
  margin: 0 auto 40px auto;
  width: 95%;
  max-width: 1070px;
  min-height: 531px;
  padding: 32px 0 0 32px;
  background-color: var(--white);
  z-index: 1;
}

.hero-container {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  z-index: 2;
}

.hero-content {
  width: 630px;
  flex: 0 0 630px;
  padding-bottom: 30px;
}

.hero-title-wrapper {
  margin-bottom: 25px;
}

.highlight-number {
  font-family: var(--font-display);
  font-size: 158.8px;
  font-weight: 600;
  color: #9ae05b;
  opacity: 0.9;
  line-height: 1.1;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: -15px;
  margin-top: -15px;
}

.title-text {
  font-family: var(--font-display);
  font-size: 39px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  opacity: 0.9;
  width: 100%;
  margin-top: 0;
}

.title-bold {
  font-weight: 800;
  color: var(--text-dark);
}

.title-light {
  font-weight: 500;
  color: #333333;
}

.mobile-mentor-profile {
  display: none;
}

.desktop-proof {
  display: flex;
}

.date-time-box {
  display: inline-flex;
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 8px 20px;
  gap: 20px;
  margin-bottom: 25px;
  border: 1px solid #eeeeee;
}

.dt-item {
  display: flex;
  flex-direction: column;
}

.dt-label {
  font-size: 10px;
  color: #888;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.dt-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.dt-divider {
  width: 1px;
  height: 30px;
  background-color: #ddd;
}

.hero-cta-area {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 186px;
  height: 53px;
  gap: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #b5f877 0%, #9ae05b 100%);
  box-shadow:
    0px 3px 6px 0px #7bbe3c26,
    0px 11px 11px 0px #7bbe3c21,
    0px 24px 15px 0px #7bbe3c14,
    0px 43px 17px 0px #7bbe3c05,
    0px 68px 19px 0px #7bbe3c00;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-subtext {
  font-size: 12px;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.3;
}

.hero-social-proof {
  align-items: center;
  gap: 20px;
}

.ratings-box {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
}

.rating-number {
  font-size: 14px;
}

.stars {
  font-size: 11px;
  letter-spacing: -1px;
}

.rating-count {
  color: #888;
  font-weight: 500;
}

.learners-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avatar-group {
  display: flex;
}

.avatar-group img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  object-fit: cover;
}

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

.learners-text {
  font-size: 11px;
  font-weight: 600;
  color: #444;
}

.hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
  margin-right: 0;
}

.bg-circle {
  position: absolute;
  width: 149px;
  height: 149px;
  background: linear-gradient(180deg,
      rgba(244, 244, 244, 1) 0%,
      rgba(244, 244, 244, 0.3) 100%);
  border-radius: 50%;
  top: 103px;
  right: 244px;
  z-index: 0;
}

.hero-image img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: none;
  width: 135%;
  height: auto;
  z-index: 1;
  transform: translateX(10px);
  margin-bottom: -5px;
}

/* =========================================
   5. MASTERCLASS BANNER
========================================= */
.masterclass-section {
  position: relative;
  margin-top: 60px;
}

.masterclass-bg {
  background: linear-gradient(90deg, #bcf38e 0%, #e2fbbd 50%, #bcf38e 100%);
  padding: 60px 0 90px 0;
}

.banner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.banner-text {
  flex: 1.2;
}

.banner-text h2 {
  font-size: 38px;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -1px;
}

.fw-normal {
  font-weight: 600;
  font-size: 44px;
}

.linkedin-text {
  font-size: 16px;
  font-weight: 500;
  color: #444;
  margin-top: 15px;
  margin-bottom: 30px;
}

.live-badge-text {
  font-size: 31.57px;
  color: var(--text-dark);
  font-weight: 400;
}

.highlight-live {
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.highlight-live::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -5%;
  width: 110%;
  height: 6px;
  border-bottom: 3px solid #e62a2a;
  border-radius: 50%;
}

.banner-image {
  flex: 0.8;
  display: flex;
  justify-content: flex-end;
  border-radius: 20px;
  padding: 10px;
}


.banner-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.floating-trust-wrapper {
  position: relative;
  margin-top: -55px;
  z-index: 10;
}

.floating-trust-bar {
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-text-block {
  display: flex;
  flex-direction: column;
}

.trust-label {
  font-size: 11px;
  color: #a0a0a0;
  margin-bottom: 3px;
  font-weight: 500;
}

.trust-value {
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}

.trust-divider {
  display: flex;
  align-items: center;
  opacity: 0.6;
}

/* =========================================
   6. PROBLEM / SOLUTION GRID
========================================= */
.problem-solution {
  padding: 80px 0 0 0;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: 44px;
  margin-bottom: 40px;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.tags-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin-bottom: 70px;
  margin-top: 20px;
  max-width: 100%;
  width: 100%;
}

.tag {
  background: #bbbbbb4d;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 19.78px;
  font-weight: 400;
  color: #333;
  white-space: nowrap;
  transition: all 0.2s ease;

}

.bottom-line {
  position: relative;
  display: inline-block;
}

.bottom-line::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 110%;
  height: 20px;
  background-image: url('https://darkorange-pheasant-779963.hostingersite.com/wp-content/uploads/2026/03/Vector-5-1.png') !important;
  background-repeat: no-repeat;
  background-size: contain;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.solution-card {
  background: #9ae05b4d;
  padding: 25px 30px;
  border-radius: 16px;
  text-align: left;
  transition: transform 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-3px);
}

.solution-card h4 {
  font-family: var(--font-display);
  font-size: 23.35px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.solution-card p {
  font-size: 23.35px;
  color: var(--text-dark);
  font-weight: 400;
}

.center-btn-wrapper {
  margin-bottom: 0;
}

.cta-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 186px;
  height: 53px;
  gap: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #b5f877 0%, #9ae05b 100%);
  box-shadow:
    0px 3px 6px 0px #7bbe3c26,
    0px 11px 11px 0px #7bbe3c21,
    0px 24px 15px 0px #7bbe3c14,
    0px 43px 17px 0px #7bbe3c05,
    0px 68px 19px 0px #7bbe3c00;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.trust-badges-strip {
  background-color: #ebebeb;
  border-top: 0.31px solid #1d1d1b26;
  border-bottom: 0.31px solid #1d1d1b26;
  padding: 25px 0;
  margin-top: 60px;
  width: 100%;
}

.trust-badges-bottom {
  display: flex;
  justify-content: center;
  gap: 60px;
  font-size: 15px;
  color: #444;
  text-align: left;
  align-items: center;
}

.tb-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tb-custom-icon {
  width: 32px;
  height: auto;
  object-fit: contain;
}

.tb-text strong {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
}

.tb-text small {
  font-size: 13px;
  color: var(--text-dark);
}

/* =========================================
   8. CONFIDENCE ESSENTIALS SECTION
========================================= */
.confidence-essentials {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.highlight-free {
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.highlight-free::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #e62a2a;
  border-radius: 50px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
}

.essentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.essential-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid #f0f0f0;
  overflow: visible;
  position: relative;
  margin-top: 60px;
}

.card-image-wrapper {
  position: absolute;
  top: -60px;
  left: 30px;
  right: 30px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.card-image-wrapper img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 130px;
}

.bonus-badge {
  align-self: flex-start;
  background-color: #f0f0f0;
  color: var(--text-dark);
  padding: 6px 16px;
  border-radius: 75.14px;
  font-size: 17.89px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.card-main-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.bonus-tags {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #9ae05b1a;
  border: 1px solid #9ae05b80;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  color: #1d1d1b;
  font-weight: 500;
  margin-bottom: 30px;
}

.bonus-star {
  color: var(--primary-green);
  font-size: 18px;
  line-height: 1;
}

.card-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.flat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 186px;
  height: 53px;
  gap: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #b5f877 0%, #9ae05b 100%);
  box-shadow:
    0px 3px 6px 0px #7bbe3c26,
    0px 11px 11px 0px #7bbe3c21,
    0px 24px 15px 0px #7bbe3c14,
    0px 43px 17px 0px #7bbe3c05,
    0px 68px 19px 0px #7bbe3c00;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.note-text {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}

/* =========================================
   9. WHAT YOU WILL LEARN (ACCORDION) SECTION
========================================= */
.what-you-learn-section {
  max-width: 900px;
  margin: 0 auto;
}

.learn-header {
  text-align: center;
  margin-bottom: 50px;
}

.learn-title {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.highlight-learn {
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.highlight-learn::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #e62a2a;
  border-radius: 50px;
}

.accordion-container {
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid #f0f0f0;
}

.accordion-header-block {
  background: linear-gradient(87.9deg, #1d1d1b -14.47%, #83837a 130.65%);
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow:
    0px 11px 23px 0px #c7c7c71f,
    0px 42px 42px 0px #c7c7c71a,
    0px 95px 57px 0px #c7c7c70f,
    0px 169px 68px 0px #c7c7c705,
    0px 264px 74px 0px #c7c7c700;
}

.accordion-header-left h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: #9ae05b;
  margin-bottom: 8px;
}

.accordion-header-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d0d5cb;
  font-size: 13px;
  font-weight: 500;
}

.dot-separator {
  color: var(--primary-green);
  font-size: 18px;
  line-height: 0;
}

.expand-all-btn {
  background-color: var(--white);
  color: var(--text-dark);
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.accordion-body {
  padding: 10px 0;
}

.accordion-item {
  border-bottom: 1px solid #f0f0f0;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 30px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.accordion-question:focus,
.accordion-question:active {
  outline: none;
}

.question-left {
  display: flex;
  align-items: center;
}

.accordion-icon {
  margin-right: 15px;
  font-size: 20px;
  min-width: 25px;
  text-align: center;
}

.accordion-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.accordion-arrow {
  margin-left: auto;
  width: 12px;
  height: 12px;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.accordion-item.open .accordion-arrow {
  transform: rotate(-135deg);
  border-color: var(--primary-green);
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.35s ease;
}

.accordion-item.open .accordion-answer {
  opacity: 1;
}

.accordion-answer-inner {
  padding: 0 30px 24px 70px;
}

.accordion-answer-inner p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.learn-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cta-btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 186px;
  height: 53px;
  gap: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #b5f877 0%, #9ae05b 100%);
  box-shadow:
    0px 3px 6px 0px #7bbe3c26,
    0px 11px 11px 0px #7bbe3c21,
    0px 24px 15px 0px #7bbe3c14,
    0px 43px 17px 0px #7bbe3c05,
    0px 68px 19px 0px #7bbe3c00;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-note {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.3;
}

/* =========================================
   10. SOCIAL PROOF / REVIEWS SECTION
========================================= */
.social-proof-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.proof-header {
  text-align: center;
  margin-bottom: 60px;
}

.proof-title {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.highlight-proof {
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.highlight-proof::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: -2%;
  width: 104%;
  height: 10px;
  border-bottom: 4px solid var(--accent-red);
  border-radius: 50%;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1070px;
  margin: 0 auto;
}

.review-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #ddd;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name-line {
  font-size: 14.5px;
  color: #1d1d1b;
  line-height: 1.3;
}

.reviewer-name-line strong {
  font-weight: 700;
}

.reviewer-date-line {
  font-size: 12px;
  color: #65676b;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.review-icon {
  font-size: 10px;
}

.review-menu {
  color: #65676b;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 5px;
}

.review-body p {
  font-size: 14.5px;
  color: #050505;
  line-height: 1.45;
  margin: 0;
}

/* =========================================
   11. FAQ SECTION
========================================= */
.faq-section {
  padding: 80px 0;
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-title {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.faq-subtitle {
  font-size: 16px;
  color: #444;
  font-weight: 500;
}

.faq-container {
  background-color: var(--white);
  border-radius: 16px;
  padding: 10px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.faq-item {
  border-bottom: 1px solid #eaeaea;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  font-family: var(--font-main);
  text-align: left;
  letter-spacing: 0.01em;
  outline: none;
}

.faq-question:focus,
.faq-question:active {
  outline: none;
}

.faq-icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: rotate(45deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(-135deg);
  border-color: var(--primary-green);
}

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

.faq-item.active .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 40px 24px 0;
}

.faq-answer-inner p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   12. FINAL CTA BANNER SECTION
========================================= */
.final-cta-section {
  padding: 40px 0 80px 0;
}

.final-cta-box {
  background: linear-gradient(90deg, #b5f877 19.24%, #dbfebc 82.33%);
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(154, 224, 91, 0.15);
}

.final-cta-content {
  flex: 1;
  padding: 42px 40px 42px 60px;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  max-width: 500px;
}

.btn-dark {
  background: linear-gradient(180deg, #1d1d1b 33.1%, #9ae05b 315.72%);
  color: var(--white);
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 12px;
  box-shadow:
    0px 3px 6px 0px #7bbe3c26,
    0px 11px 11px 0px #7bbe3c21,
    0px 24px 15px 0px #7bbe3c14,
    0px 43px 17px 0px #7bbe3c05,
    0px 68px 19px 0px #7bbe3c00;
}

.final-cta-subtext {
  font-size: 13px;
  color: #333;
  font-style: italic;
  margin-top: 15px;
  font-weight: 500;
}

.final-cta-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  height: 100%;
}

.final-cta-image img {
  width: 100%;
  max-width: 550px;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* =========================================
   13. MEDIA QUERIES
========================================= */

@media (max-width: 1050px) {
  .tags-wrapper {
    flex-wrap: wrap;
    padding: 0 20px;
    justify-content: center;
    gap: 10px;
  }

  .solution-grid {
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .confidence-essentials {
    padding: 60px 0;
  }

  .section-title {
    font-size: 34px;
    margin-bottom: 40px;
  }

  .essentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
    padding: 10px 15px;
    margin: 0;
    width: 100%;
    overflow: visible;
  }

  .essential-card {
    min-width: auto;
    padding: 25px;
    margin-top: 50px;
  }

  .card-image-wrapper {
    height: 160px;
    top: -50px;
    left: 25px;
    right: 25px;
  }

  .card-content {
    margin-top: 120px;
  }

  .card-main-title {
    font-size: 24px;
  }

  .bonus-tags {
    font-size: 13px;
    padding: 7px 16px;
  }

  .flat-btn {
    padding: 11px 22px;
    font-size: 13px;
  }

  .faq-section {
    padding: 50px 20px;
  }

  .faq-container {
    padding: 20px 30px;
  }

  .faq-question {
    padding: 24px 0;
    font-size: 15px;
  }

  .faq-answer-inner {
    padding: 0 20px 20px 0;
  }

  .faq-answer-inner p {
    font-size: 14px;
    line-height: 1.5;
  }

  .final-cta-content {
    padding: 35px 30px 35px 30px;
  }

  .final-cta-title {
    font-size: 40px;
  }

  .btn-dark {
    padding: 16px 32px;
    font-size: 16px;
  }
}

@media (max-width: 912px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .final-cta-content {
    padding: 20px 20px 20px 20px;
  }

  .final-cta-title {
    font-size: 27px;
  }

  .btn-dark {
    font-size: 10px;
  }

  .final-cta-subtext {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  body {
    text-align: start;
  }

  .container {
    width: 92%;
  }

  .hide-mobile {
    display: none;
  }

  /* HEADERS ALIGNMENT FIX FOR MOBILE */
  .section-header,
  .learn-header,
  .proof-header,
  .faq-header,
  .problem-solution {
    text-align: start;
  }

  .section-title,
  .learn-title,
  .proof-title,
  .faq-title,
  .faq-subtitle {
    text-align: start;
  }

  .learn-bottom-cta {
    justify-content: flex-start;
    text-align: start;
  }

  .nav-container {
    padding: 10px 0;
  }

  .logo img {
    max-height: 32px;
  }

  .nav-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero {
    position: static;
    padding: 30px 20px;
    min-height: auto;
    border-radius: 20px;
  }

  .hero-container {
    flex-direction: column;
  }

  .hero-content {
    width: 100%;
    flex: none;
    padding-bottom: 10px;
  }

  .hero-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
  }

  .highlight-number {
    font-size: 110px;
    line-height: 0.75;
    margin: 0;
    padding-top: 5px;
  }

  .masterclass-bg {
    padding: 40px 0 70px 0;
  }

  .banner-container {
    flex-direction: column;
    text-align: center;
  }

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

  .fw-normal {
    font-size: 24px;
  }

  .live-badge-text {
    font-size: 22px;
  }

  .banner-image {
    justify-content: center;
    margin-top: 20px;
  }

  .floating-trust-wrapper {
    margin-top: -45px;
  }

  .floating-trust-bar {
    padding: 25px;
    gap: 25px;
    align-items: flex-start;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    width: 100%;
    justify-content: flex-start;
  }

  .title-text {
    font-size: 26px;
  }

  .desktop-proof {
    display: none;
  }

  .hero-image {
    display: none;
  }

  .mobile-mentor-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
  }

  .mentor-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
  }

  .mentor-info-mobile h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 2px;
  }

  .mentor-title {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
  }

  .mobile-proof {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .date-time-box {
    margin-bottom: 25px;
    padding: 12px 20px;
  }

  .dt-item {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .dt-label {
    margin-bottom: 0;
  }

  .hero-cta-area {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
  }

  .hero-btn {
    width: auto;
    padding: 12px 24px;
    font-size: 16px;
  }

  .cta-subtext {
    text-align: left;
    max-width: 151px;
  }

  .banner-text h2 {
    font-size: 34px;
  }

  .fw-normal {
    font-size: 34px;
  }

  .banner-image img {
    width: 50%;
  }

  .trust-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 10px;
  }

  .problem-solution {
    padding: 50px 0 0 0;
  }

  .problem-solution .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .tags-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 40px;
    padding: 0 10px;
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .tag {
    font-size: 11px;
    padding: 8px 14px;
    white-space: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }

  .tags-wrapper .tag:nth-child(3) {
    grid-column: auto;
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 5px;
  }

  .solution-card {
    padding: 15px 12px;
    border-radius: 12px;
  }

  .solution-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .solution-card p {
    font-size: 12px;
    line-height: 1.3;
  }

  .center-btn-wrapper {
    margin-bottom: 0;
  }

  .cta-large {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    font-size: 16px;
  }

  .trust-badges-strip {
    padding: 20px 0;
    margin-top: 40px;
  }

  .trust-badges-bottom {
    gap: 20px;
    align-items: center;
    text-align: left;
  }

  .tb-item {
    width: 100%;
    max-width: 250px;
    justify-content: flex-start;
  }

  .tb-custom-icon {
    width: 28px;
  }

  .confidence-essentials {
    padding: 60px 0;
  }

  .essentials-grid {
    gap: 20px;
    padding: 10px 15px;
  }

  .confidence-essentials {
    padding: 50px 15px;
  }

  .learn-title {
    font-size: 28px;
  }

  .accordion-header-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
  }

  .accordion-header-tags {
    flex-wrap: wrap;
  }

  .accordion-question {
    padding: 20px 20px;
  }

  .accordion-text {
    font-size: 15px;
  }

  .accordion-answer-inner {
    padding: 0 20px 20px 60px;
  }

  .social-proof-section {
    padding: 50px 0;
  }

  .proof-title {
    font-size: 28px;
    padding: 0 15px;
  }

  .highlight-proof::after {
    border-bottom: 3px solid var(--accent-red);
    bottom: -4px;
  }

  .review-card {
    padding: 20px;
  }

  .faq-section {
    padding: 50px 15px;
  }

  .faq-container {
    padding: 10px 20px;
  }

  .faq-question {
    padding: 20px 0;
    font-size: 15px;
  }

  .faq-answer-inner {
    padding: 0 10px 15px 0;
  }

  .faq-answer-inner p {
    font-size: 13.5px;
  }

  .banner-text {
    text-align: start;
  }
}

@media (max-width: 540px) {
  .final-cta-content {
    padding: 4px 8px 4px 8px;
  }

  .final-cta-title {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .btn-dark {
    font-size: 6px;
  }

  .final-cta-subtext {
    font-size: 6px;
    margin-top: 5px;
  }

  .banner-text {
    text-align: start;
  }
}

@media (max-width: 425px) {
  .masterclass-bg {
    padding: 30px 0 60px;
  }

  .banner-container {
    align-items: flex-start;
    gap: 12px;
  }

  .banner-text h2 {
    font-size: 25px;
    line-height: 1.2;
  }

  .fw-normal {
    font-size: 25px;
  }

  .linkedin-text {
    font-size: 16px;
  }

  .live-badge-text {
    font-size: 20px;
  }

  .banner-image {
    width: 300px;
    align-self: flex-start;
  }

  .banner-image img {
    width: 300px;
  }

  .floating-trust-wrapper {
    margin-top: -40px;
  }

  .floating-trust-bar {
    padding: 10px;
    gap: 0px;
  }

  .trust-item {
    flex: 1 1 80px;
    padding: 8px;
    gap: 6px;
  }

  .trust-icon svg,
  .trust-icon {
    width: 14px;
    height: 14px;
    font-size: 14px;
  }

  .trust-label {
    font-size: 7px;
  }

  .trust-value {
    font-size: 12px;
  }

  .trust-container {
    padding: 0 6px;
  }

  .section-title {
    font-size: 18px;
  }

  .tag {
    font-size: 10px;
  }

  .solution-card h4 {
    font-size: 10px;
  }

  .solution-card p {
    font-size: 10px;
  }

  .cta-large {
    font-size: 10px;
    max-width: 180px;
  }

  .tb-text strong {
    font-size: 12px;
  }

  .tb-text small {
    font-size: 9px;
  }

  .confidence-essentials {
    padding: 50px 0;
  }

  .essentials-grid {
    flex-direction: row;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin: 0 -15px;
    width: calc(100% + 30px);
  }

  .essential-card {
    flex: 0 0 85%;
    min-width: 85%;
    scroll-snap-align: center;
    padding: 25px 20px;
  }

  .card-image-wrapper {
    height: 140px;
    top: -50px;
    left: 20px;
    right: 20px;
  }

  .card-content {
    margin-top: 100px;
  }

  .card-main-title {
    font-size: 18px;
  }

  .bonus-tags {
    font-size: 11px;
    padding: 6px 12px;
  }

  .card-cta {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .flat-btn {
    width: 100%;
    max-width: 250px;
    padding: 12px 16px;
    font-size: 13px;
  }

  .note-text {
    font-size: 12px;
    margin-left: 0;
  }

  .social-proof-section {
    overflow: hidden;
  }

  .proof-title {
    font-size: 26px;
  }

  .reviews-grid {
    flex-direction: row;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin: 0 -15px;
    width: calc(100% + 30px);
  }

  .review-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .faq-section {
    padding: 40px 15px;
  }

  .faq-title {
    font-size: 24px;
  }

  .faq-subtitle {
    font-size: 14px;
  }

  .faq-container {
    padding: 10px 15px;
  }

  .faq-question {
    padding: 16px 0;
    font-size: 14px;
    gap: 10px;
  }

  .faq-icon {
    width: 10px;
    height: 10px;
  }

  .faq-answer-inner {
    padding: 0 0 12px 0;
  }

  .faq-answer-inner p {
    font-size: 13px;
  }

  .banner-text {
    text-align: start;
  }
}

/* =========================================
   TABLET ADDITIONS ONLY
   Targets the gap between 769px–1024px
   that the existing breakpoints don't cover.
   Nothing above is changed.
========================================= */

/* iPad Pro landscape / large tablets (913px–1024px) */
@media (min-width: 913px) and (max-width: 1024px) {

  /* Hero: shrink content column so layout stays clean */
  .hero {
    padding: 28px 0 0 28px;
  }

  .hero-content {
    width: 520px;
    flex: 0 0 520px;
  }

  .highlight-number {
    font-size: 120px;
  }

  .title-text {
    font-size: 36px;
  }

  /* Navbar */
  .nav-btn {
    width: 160px;
    height: 48px;
    font-size: 14px;
  }

  /* Trust bar: allow wrapping, hide dividers */
  .floating-trust-bar {
    padding: 20px 28px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .trust-item {
    flex: 1 1 120px;
  }

  .trust-divider {
    display: none;
  }

  /* Problem / Solution */
  .section-title {
    font-size: 36px;
  }

  .tag {
    font-size: 16px;
    padding: 10px 18px;
  }

  .solution-card h4 {
    font-size: 18px;
  }

  .solution-card p {
    font-size: 18px;
  }

  /* Essentials grid: keep 2 cols, tighter gap */
  .essentials-grid {
    gap: 50px 30px;
    padding: 0 10px;
  }

  .card-main-title {
    font-size: 22px;
  }

  /* Accordion */
  .what-you-learn-section {
    padding: 0 20px;
  }

  /* Reviews: single column */
  .reviews-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  /* Final CTA */
  .final-cta-content {
    padding: 30px 24px 30px 40px;
  }

  .final-cta-title {
    font-size: 32px;
    max-width: 380px;
  }

  .btn-dark {
    font-size: 14px;
    padding: 14px 24px;
  }

  .final-cta-subtext {
    font-size: 12px;
  }
}

/* iPad / standard tablets portrait (769px–912px) */
@media (min-width: 769px) and (max-width: 912px) {

  /* Hero: stack, hide side image */
  .hero {
    position: static;
    padding: 28px 24px 24px 24px;
    min-height: auto;
  }

  .hero-container {
    flex-direction: column;
  }

  .hero-content {
    width: 100%;
    flex: none;
  }

  .hero-image {
    display: none;
  }

  .desktop-proof {
    display: flex;
  }

  .highlight-number {
    font-size: 100px;
  }

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

  /* Navbar */
  .nav-btn {
    width: 150px;
    height: 46px;
    font-size: 14px;
  }

  /* Banner */
  .masterclass-bg {
    padding: 40px 0 80px 0;
  }

  .banner-text h2 {
    font-size: 30px;
  }

  .fw-normal {
    font-size: 30px;
  }

  .live-badge-text {
    font-size: 24px;
  }

  /* Trust bar: 2-up grid layout */
  .floating-trust-bar {
    flex-wrap: wrap;
    padding: 20px 24px;
    gap: 18px;
  }

  .trust-item {
    flex: 1 1 40%;
  }

  .trust-divider {
    display: none;
  }

  /* Problem section */
  .problem-solution {
    padding: 50px 0 0 0;
    text-align: start;
  }

  .section-title {
    font-size: 30px;
    padding: 0 10px;
  }

  .tags-wrapper {
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 10px;
    justify-content: flex-start;
  }

  .tag {
    font-size: 14px;
    padding: 9px 16px;
    white-space: normal;
  }

  .solution-grid {
    padding: 0 10px;
  }

  .solution-card h4 {
    font-size: 18px;
  }

  .solution-card p {
    font-size: 16px;
  }

  /* Trust badges strip */
  .trust-badges-bottom {
    gap: 30px;
    justify-content: center;
  }

  .tb-item {
    width: auto;
  }

  /* Essentials: 2-col grid, reduced gap */
  .confidence-essentials {
    padding: 50px 20px;
  }

  .essentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 24px;
    max-width: 100%;
  }

  .card-image-wrapper {
    height: 150px;
    top: -55px;
  }

  .card-content {
    margin-top: 110px;
  }

  .card-main-title {
    font-size: 20px;
  }

  /* Accordion */
  .what-you-learn-section {
    padding: 0 20px;
    max-width: 100%;
  }

  .learn-title {
    font-size: 30px;
  }

  .accordion-header-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
  }

  /* Reviews: single column */
  .reviews-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

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

  /* FAQ */
  .faq-section {
    padding: 50px 20px;
    max-width: 100%;
  }

  .faq-container {
    padding: 10px 28px;
  }

  /* Final CTA: stack vertically */
  .final-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta-content {
    padding: 36px 36px 24px 36px;
  }

  .final-cta-title {
    font-size: 28px;
    max-width: 100%;
  }

  .btn-dark {
    font-size: 14px;
    padding: 14px 28px;
  }

  .final-cta-subtext {
    font-size: 12px;
  }

  .final-cta-image {
    width: 100%;
    justify-content: center;
    max-height: 280px;
    overflow: hidden;
  }

  .final-cta-image img {
    max-width: 100%;
    height: 280px;
    object-position: center top;
  }
}

/* =========================================
   14. TABLET RESPONSIVE (769px – 1024px)
   Added to fill the gap between mobile (768px)
   and desktop. Your existing CSS is untouched.
========================================= */

/* ---- iPad Mini / Air portrait: 768–820px ---- */
@media (min-width: 769px) and (max-width: 820px) {
  .hero {
    min-height: auto;
    padding: 28px 24px 0 24px;
  }

  .hero-content {
    width: 100%;
    flex: none;
  }

  .highlight-number {
    font-size: 120px;
  }

  .title-text {
    font-size: 34px;
  }

  .hero-image {
    width: 38%;
  }

  .hero-image img {
    width: 150%;
  }

  .banner-container {
    gap: 24px;
  }

  .banner-text h2 {
    font-size: 30px;
  }

  .fw-normal {
    font-size: 30px;
  }

  .live-badge-text {
    font-size: 24px;
  }

  .floating-trust-bar {
    padding: 18px 24px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    flex: 1 1 40%;
  }

  .section-title {
    font-size: 30px;
  }

  .tags-wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }

  .tag {
    font-size: 15px;
    padding: 10px 18px;
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .solution-card h4 {
    font-size: 18px;
  }

  .solution-card p {
    font-size: 16px;
  }

  .essentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
    padding: 0 10px;
  }

  .essential-card {
    margin-top: 55px;
    padding: 24px;
  }

  .card-image-wrapper {
    height: 155px;
    top: -55px;
  }

  .card-content {
    margin-top: 110px;
  }

  .card-main-title {
    font-size: 22px;
  }

  .what-you-learn-section {
    padding: 0 15px;
  }

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

  .accordion-header-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .faq-section {
    padding: 60px 15px;
  }

  .faq-container {
    padding: 10px 24px;
  }

  .final-cta-box {
    flex-direction: column;
  }

  .final-cta-content {
    padding: 36px 32px 28px 32px;
  }

  .final-cta-title {
    font-size: 30px;
    max-width: 100%;
  }

  .btn-dark {
    font-size: 14px;
    padding: 14px 28px;
  }

  .final-cta-subtext {
    font-size: 12px;
  }

  .final-cta-image {
    width: 100%;
    max-height: 260px;
    overflow: hidden;
  }

  .final-cta-image img {
    max-width: 100%;
    height: 260px;
    object-position: top center;
  }
}

/* =========================================
   15. ANIMATIONS
========================================= */

/* Respect user preference — skip all motion */
@media (prefers-reduced-motion: reduce) {
  .cm-animate {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Hidden base state (applied via JS) */
.cm-animate {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.cm-animate.cm-from-left {
  transform: translateX(-32px);
}

.cm-animate.cm-from-right {
  transform: translateX(32px);
}

/* Visible state */
.cm-animate.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays via data-delay attribute */
.cm-animate[data-delay="1"] {
  transition-delay: 0.07s;
}

.cm-animate[data-delay="2"] {
  transition-delay: 0.14s;
}

.cm-animate[data-delay="3"] {
  transition-delay: 0.21s;
}

.cm-animate[data-delay="4"] {
  transition-delay: 0.28s;
}

.cm-animate[data-delay="5"] {
  transition-delay: 0.35s;
}

.cm-animate[data-delay="6"] {
  transition-delay: 0.42s;
}

.cm-animate[data-delay="7"] {
  transition-delay: 0.49s;
}

.cm-animate[data-delay="8"] {
  transition-delay: 0.56s;
}

/* ---- Button hover / active ---- */
.hero-btn:hover,
.nav-btn:hover,
.cta-large:hover,
.cta-btn-glow:hover,
.flat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(122, 190, 60, 0.4);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, #2e2e2b 33.1%, #9ae05b 315.72%);
}

.hero-btn:active,
.nav-btn:active,
.cta-large:active,
.cta-btn-glow:active,
.flat-btn:active,
.btn-dark:active {
  transform: scale(0.97) translateY(0);
}

/* ---- Card hover lifts ---- */
.essential-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.essential-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.09);
}

.review-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ---- Navbar scroll shadow ---- */
.navbar {
  transition: box-shadow 0.3s ease;
}

.navbar.is-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

/* ---- iPad / tablet landscape & large tablets: 821px – 1024px ---- */
@media (min-width: 821px) and (max-width: 1024px) {
  .hero {
    min-height: 460px;
    padding: 28px 0 0 28px;
  }

  .hero-content {
    width: 520px;
    flex: 0 0 520px;
  }

  .highlight-number {
    font-size: 130px;
  }

  .title-text {
    font-size: 38px;
  }

  .hero-image {
    width: 42%;
  }

  .hero-image img {
    width: 140%;
  }

  .banner-container {
    gap: 28px;
  }

  .banner-text h2 {
    font-size: 34px;
  }

  .fw-normal {
    font-size: 36px;
  }

  .live-badge-text {
    font-size: 26px;
  }

  .floating-trust-bar {
    padding: 20px 28px;
    gap: 12px;
  }

  .trust-value {
    font-size: 17px;
  }

  .trust-label {
    font-size: 10px;
  }

  .section-title {
    font-size: 34px;
  }

  .tags-wrapper {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .tag {
    font-size: 16px;
    padding: 10px 18px;
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .solution-card h4 {
    font-size: 20px;
  }

  .solution-card p {
    font-size: 18px;
  }

  .essentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 55px 32px;
  }

  .essential-card {
    margin-top: 55px;
  }

  .card-image-wrapper {
    height: 160px;
    top: -55px;
  }

  .card-content {
    margin-top: 115px;
  }

  .card-main-title {
    font-size: 24px;
  }

  .learn-title {
    font-size: 34px;
  }

  .accordion-header-block {
    flex-direction: row;
    align-items: center;
    padding: 22px 26px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .faq-section {
    padding: 60px 20px;
  }

  .faq-container {
    padding: 10px 30px;
  }

  .final-cta-content {
    padding: 36px 28px 36px 40px;
  }

  .final-cta-title {
    font-size: 34px;
    max-width: 420px;
  }

  .btn-dark {
    font-size: 15px;
    padding: 15px 30px;
  }

  .final-cta-subtext {
    font-size: 12px;
  }

  .final-cta-image img {
    max-width: 420px;
  }
}

.card-cta a button {
  cursor: pointer !important;
}