.elementor-1036 .elementor-element.elementor-element-db09c2f > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1036 .elementor-element.elementor-element-e482d46 > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1036 .elementor-element.elementor-element-733c9ce > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1036 .elementor-element.elementor-element-4b50e22 > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1036 .elementor-element.elementor-element-fd75740 > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1036 .elementor-element.elementor-element-863f072 > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1036 .elementor-element.elementor-element-3c97606 > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1036 .elementor-element.elementor-element-c68d07a > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1036 .elementor-element.elementor-element-ed6adff > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1036 .elementor-element.elementor-element-d4b649a > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1036 .elementor-element.elementor-element-33db5f2 > .elementor-element-populated{padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-11f61d3 *//* Separate CSS Code for Meta Ads Hero Section (Black, White, Orange Theme) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-black: #0b0f17;
  --card-bg-black: #131b2e;
  --accent-orange: #ff7700;
  --accent-orange-hover: #e56a00;
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --border-dark: #1e293b;
}

.mads-hero-section {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 60px 20px 40px 20px;
  box-sizing: border-box;
  width: 100%;
}

.mads-hero-section *, 
.mads-hero-section *::before, 
.mads-hero-section *::after {
  box-sizing: border-box;
}

.mads-container {
  max-width: 1240px;
  margin: 0 auto 50px auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .mads-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.mads-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mads-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid rgba(255, 119, 0, 0.3);
  color: var(--accent-orange);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 20px;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

.mads-main-title {
  font-size: clamp(32px, 4.2vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px 0;
  color: var(--text-white);
}

.title-highlight {
  color: var(--accent-orange);
}

.mads-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 24px 0;
}

/* Feature Checkpoints Grid */
.mads-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .mads-check-grid {
    grid-template-columns: 1fr;
  }
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #f1f5f9;
  font-weight: 500;
  background: var(--card-bg-black);
  border: 1px solid var(--border-dark);
  padding: 10px 14px;
  border-radius: 10px;
}

.check-item span {
  color: #e2e8f0;
}

/* Price Highlight Box */
.mads-price-box {
  background: var(--card-bg-black);
  border: 1.5px solid rgba(255, 119, 0, 0.4);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
  width: fit-content;
}

.mads-price-val {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1;
}

.mads-price-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.mads-price-desc strong {
  color: var(--text-white);
  font-size: 13px;
}

/* CTA Buttons */
.mads-cta-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.mads-btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #cc6000 100%);
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 119, 0, 0.25);
  transition: transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mads-btn-primary:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.mads-btn-secondary {
  background: var(--card-bg-black);
  border: 1.5px solid var(--border-dark);
  color: var(--text-white);
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mads-btn-secondary:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
}

.mads-security-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* Right Side Form Column */
.mads-form-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.mads-form-card {
  background: #ffffff;
  color: #1e293b;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-card-header {
  background: #f8fafc;
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-header-text h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 2px 0;
  color: #0f172a;
}

.form-header-text p {
  font-size: 11px;
  color: #64748b;
  margin: 0;
}

.form-fee-badge {
  background: rgba(255, 119, 0, 0.1);
  border: 1px solid rgba(255, 119, 0, 0.3);
  padding: 6px 12px;
  border-radius: 10px;
  text-align: center;
}

.fee-title {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 0.05em;
}

.fee-amt {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
}

.form-gtm-banner {
  background: #fffaf0;
  border-bottom: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 11.5px;
  font-weight: 600;
  padding: 8px 20px;
  text-align: center;
}

/* Form Fields */
.mads-reg-form {
  padding: 20px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 4px;
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #1e293b;
  outline: none;
  background: #fff;
  transition: border-color 0.2s;
}

.form-group input:focus, 
.form-group textarea:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 2px rgba(255, 119, 0, 0.15);
}

.form-group textarea {
  resize: vertical;
}

/* Submit Button */
.mads-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-orange) 0%, #cc6000 100%);
  color: #ffffff;
  border: none;
  padding: 13px 20px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 119, 0, 0.3);
  margin-top: 6px;
  transition: transform 0.2s, opacity 0.2s;
}

.mads-submit-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Form Footer */
.form-card-footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 12px 20px;
  text-align: center;
  font-size: 10.5px;
  color: #64748b;
  line-height: 1.4;
}

/* Bottom Stats Container Bar */
.mads-stats-container {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--card-bg-black);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  overflow: hidden;
}

.mads-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 24px;
  gap: 20px;
  text-align: center;
}

@media (max-width: 1024px) {
  .mads-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .mads-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 4px 0;
}

.stat-box p {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fb53de2 *//* Separate CSS Code for Meta Ads Opportunity Section (Clean White Background, Black & Orange Theme) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-white: #ffffff;
  --card-bg-light: #ffffff;
  --accent-orange: #ff7700;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
}

.mads-opp-section-light {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.mads-opp-section-light *, 
.mads-opp-section-light *::before, 
.mads-opp-section-light *::after {
  box-sizing: border-box;
}

.opp-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Tag Pill */
.opp-tag-wrap {
  text-align: left;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .opp-tag-wrap {
    text-align: center;
  }
}

.opp-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.1);
  border: 1px solid rgba(255, 119, 0, 0.25);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.opp-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Header */
.opp-header-wrap {
  text-align: left;
  max-width: 750px;
  margin: 0 0 25px 0;
}

@media (max-width: 768px) {
  .opp-header-wrap {
    text-align: center;
    margin: 0 auto 25px auto;
  }
}

.opp-title {
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.opp-title-highlight {
  color: var(--accent-orange);
}

/* Left Border Description Paragraph Box */
.opp-desc-box-light {
  max-width: 800px;
  margin: 0 0 45px 0;
  background: #f8fafc;
  border-left: 4px solid var(--accent-orange);
  border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 22px 26px;
  border-radius: 12px;
}

.opp-desc-box-light p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #334155;
  margin: 0;
  font-style: italic;
}

@media (max-width: 768px) {
  .opp-desc-box-light {
    padding: 18px 20px;
  }
}

/* 4 Cards Grid */
.opp-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .opp-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .opp-cards-grid {
    grid-template-columns: 1fr;
  }
}

.opp-card-light {
  background: var(--card-bg-light);
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
}

.opp-card-light:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 119, 0, 0.4);
  box-shadow: 0 15px 30px -5px rgba(255, 119, 0, 0.08);
}

.opp-icon-box-light {
  font-size: 20px;
  background: rgba(255, 119, 0, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 119, 0, 0.2);
}

.opp-card-title-light {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px 0;
}

.opp-card-desc-light {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4048d5d *//* Separate CSS Code for Meta Ads Audience Section (Clean White Background, Black & Orange Theme) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-white: #ffffff;
  --card-bg-light: #ffffff;
  --accent-orange: #ff7700;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
}

.mads-audience-section-light {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.mads-audience-section-light *, 
.mads-audience-section-light *::before, 
.mads-audience-section-light *::after {
  box-sizing: border-box;
}

.audience-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Tag Pill */
.audience-tag-wrap {
  text-align: center;
  margin-bottom: 14px;
}

.audience-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.1);
  border: 1px solid rgba(255, 119, 0, 0.25);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.audience-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Header */
.audience-header-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.audience-title {
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.audience-title-highlight {
  color: var(--accent-orange);
}

/* 6 Cards Grid (3 columns x 2 rows) */
.audience-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .audience-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .audience-cards-grid {
    grid-template-columns: 1fr;
  }
}

.audience-card-light {
  background: var(--card-bg-light);
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
}

.audience-card-light:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 119, 0, 0.4);
  box-shadow: 0 15px 30px -5px rgba(255, 119, 0, 0.08);
}

.audience-icon-box-light {
  font-size: 20px;
  background: rgba(255, 119, 0, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 119, 0, 0.2);
}

.audience-card-title-light {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px 0;
}

.audience-card-desc-light {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-42cbc31 *//* Separate CSS Code for Meta Ads Skills Section (Light Grey Background, Black & Orange Theme) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-light-grey: #f8fafc;
  --card-bg-white: #ffffff;
  --accent-orange: #ff7700;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
}

.mads-skills-section-light {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-light-grey);
  color: var(--text-dark);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.mads-skills-section-light *, 
.mads-skills-section-light *::before, 
.mads-skills-section-light *::after {
  box-sizing: border-box;
}

.skills-container {
  max-width: 1160px;
  margin: 0 auto;
}

/* Tag Pill */
.skills-tag-wrap {
  text-align: center;
  margin-bottom: 14px;
}

.skills-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.1);
  border: 1px solid rgba(255, 119, 0, 0.25);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.skills-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Header & Subtitle */
.skills-header-wrap {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 50px auto;
}

.skills-title {
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.skills-title-highlight {
  color: var(--accent-orange);
}

.skills-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* 12 Skills Grid (3 Columns) */
.skills-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 992px) {
  .skills-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .skills-grid-layout {
    grid-template-columns: 1fr;
  }
}

.skill-box-light {
  background: var(--card-bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.skill-box-light:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 119, 0, 0.4);
  box-shadow: 0 8px 20px rgba(255, 119, 0, 0.06);
}

.skill-check-light {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(22, 163, 74, 0.2);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-05588e9 *//* Separate CSS Code for Meta Ads Curriculum Section & Modal (Black, White, Orange Theme) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-black: #0b0f17;
  --card-bg-black: #131b2e;
  --accent-orange: #ff7700;
  --accent-orange-hover: #e56a00;
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --border-dark: #1e293b;
}

.mads-curr-section {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.mads-curr-section *, 
.mads-curr-section *::before, 
.mads-curr-section *::after {
  box-sizing: border-box;
}

.curr-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Tag Pill */
.curr-tag-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.curr-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid rgba(255, 119, 0, 0.3);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.curr-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Header */
.curr-header-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.curr-title {
  font-size: clamp(30px, 4.5vw, 42px);
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.curr-title-highlight {
  color: var(--accent-orange);
}

.curr-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* Modules Wrapper */
.curr-modules-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.mads-mod-item {
  background: var(--card-bg-black);
  border: 1.5px solid var(--border-dark);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mads-mod-item.active {
  border-color: var(--accent-orange);
  box-shadow: 0 8px 20px -4px rgba(255, 119, 0, 0.15);
}

.highlight-mod {
  border-color: rgba(255, 119, 0, 0.5);
}

.mads-mod-header {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.mads-mod-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mod-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-orange);
  background: rgba(255, 119, 0, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}

.mod-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
}

.mod-sub-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-orange);
  background: rgba(255, 119, 0, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 3px;
}

.mod-arrow {
  font-size: 11px;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.mads-mod-item.active .mod-arrow {
  transform: rotate(180deg);
  color: var(--accent-orange);
}

.mads-mod-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out;
  background: #0f1624;
  border-top: 1px solid transparent;
}

.mads-mod-item.active .mads-mod-body {
  border-top-color: var(--border-dark);
}

.mads-mod-body p {
  margin: 0;
  padding: 16px 22px 20px 22px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Center Download CTA Button */
.curr-download-center-wrap {
  text-align: center;
}

.curr-download-cta-btn {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #cc6000 100%);
  color: #ffffff;
  border: none;
  padding: 15px 35px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 119, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.curr-download-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 119, 0, 0.4);
}

/* Brochure Modal Overlay */
.mads-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.mads-modal-box {
  background: #ffffff;
  color: #1e293b;
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  padding: 30px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 26px;
  cursor: pointer;
}

.modal-close-btn:hover {
  color: #0f172a;
}

.modal-header-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
}

.modal-header-text p {
  font-size: 12px;
  color: #64748b;
  margin: 0 0 20px 0;
}

.mads-popup-form .form-group {
  margin-bottom: 12px;
}

.mads-popup-form label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 4px;
}

.mads-popup-form input,
.mads-popup-form textarea {
  width: 100%;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: #1e293b;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  outline: none;
}

.mads-popup-form input:focus,
.mads-popup-form textarea:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 2px rgba(255, 119, 0, 0.15);
}

.mads-popup-form textarea {
  resize: vertical;
}

.mads-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-orange) 0%, #cc6000 100%);
  color: #ffffff;
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  box-shadow: 0 4px 12px rgba(255, 119, 0, 0.25);
  transition: opacity 0.2s;
}

.mads-submit-btn:hover {
  opacity: 0.95;
}

.modal-footer-note {
  margin-top: 14px;
  text-align: center;
  font-size: 10.5px;
  color: #64748b;
  line-height: 1.4;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-07607e0 *//* Separate CSS Code for Meta Ads Tracking Pipeline Section (Black, White, Orange Theme) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-black: #0b0f17;
  --card-bg-black: #131b2e;
  --accent-orange: #ff7700;
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --border-dark: #1e293b;
}

.mads-tracking-section {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.mads-tracking-section *, 
.mads-tracking-section *::before, 
.mads-tracking-section *::after {
  box-sizing: border-box;
}

.tracking-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 1024px) {
  .tracking-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Left Content Column */
.tracking-tag-wrap {
  margin-bottom: 16px;
}

.tracking-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid rgba(255, 119, 0, 0.3);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.tracking-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

.tracking-header-wrap {
  margin-bottom: 35px;
}

.tracking-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.tracking-title-highlight {
  color: var(--accent-orange);
}

.tracking-subtitle {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.tracking-subtitle strong {
  color: var(--text-white);
}

/* 4 Feature Cards Grid */
.tracking-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 640px) {
  .tracking-cards-grid {
    grid-template-columns: 1fr;
  }
}

.tracking-feat-card {
  background: var(--card-bg-black);
  border: 1.5px solid var(--border-dark);
  border-radius: 16px;
  padding: 22px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tracking-feat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 119, 0, 0.4);
}

.feat-icon-box {
  font-size: 18px;
  background: rgba(255, 119, 0, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 119, 0, 0.2);
}

.feat-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 8px 0;
  line-height: 1.35;
}

.feat-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* Right Visual Column (Pipeline Card) */
.tracking-visual-col {
  display: flex;
  justify-content: center;
}

.pipeline-card-box {
  background: radial-gradient(circle at top right, #17223b 0%, #0e1422 100%);
  border: 1.5px solid rgba(255, 119, 0, 0.4);
  border-radius: 20px;
  padding: 26px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.pipeline-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-dark);
}

.pipeline-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.pipeline-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-orange);
  background: rgba(255, 119, 0, 0.12);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 119, 0, 0.25);
}

.live-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

.pipeline-steps-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}

.pipeline-step-item {
  background: rgba(11, 15, 23, 0.6);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 12px 16px;
}

.step-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 13px;
}

.step-name {
  font-weight: 700;
  color: var(--text-white);
}

.step-sub {
  font-size: 11.5px;
  color: var(--text-muted);
}

.step-progress-track {
  width: 100%;
  height: 6px;
  background: #1e293b;
  border-radius: 10px;
  overflow: hidden;
}

.step-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-orange), #ff9933);
  border-radius: 10px;
}

.fill-100 { width: 100%; }
.fill-75 { width: 75%; }
.fill-50 { width: 50%; }
.fill-35 { width: 35%; }

.pipeline-footer-banner {
  background: linear-gradient(135deg, rgba(255, 119, 0, 0.15) 0%, rgba(204, 96, 0, 0.1) 100%);
  border: 1px solid rgba(255, 119, 0, 0.35);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent-orange);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-668dffc *//* Separate CSS Code for Meta Ads Transformation Section (Clean White Background) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-white: #ffffff;
  --accent-orange: #ff7700;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
}

.mads-trans-section-light {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.mads-trans-section-light *, 
.mads-trans-section-light *::before, 
.mads-trans-section-light *::after {
  box-sizing: border-box;
}

.trans-container {
  max-width: 960px;
  margin: 0 auto;
}

/* Tag Pill */
.trans-tag-wrap {
  text-align: center;
  margin-bottom: 14px;
}

.trans-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.1);
  border: 1px solid rgba(255, 119, 0, 0.25);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.trans-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Header */
.trans-header-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.trans-title {
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.trans-title-highlight {
  color: var(--accent-orange);
}

/* Comparison Cards Grid */
.trans-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .trans-comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.trans-card-light {
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trans-card-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Before Joining Card Style */
.before-card-light {
  background: #fff8f8;
  border: 1.5px solid #fecaca;
}

/* After Training Card Style */
.after-card-light {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
}

/* Card Headers */
.trans-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.header-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.icon-red {
  background: rgba(239, 68, 68, 0.15);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.icon-green {
  background: rgba(22, 163, 74, 0.15);
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.3);
}

.card-header-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

/* List Items */
.trans-list-light {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trans-list-light li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #334155;
  font-weight: 500;
}

.before-list-light li .item-icon {
  color: #dc2626;
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px;
  flex-shrink: 0;
}

.after-list-light li .item-icon {
  color: #16a34a;
  font-size: 13px;
  font-weight: 800;
  margin-top: 2px;
  flex-shrink: 0;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8253e2b *//* Separate CSS Code for Meta Ads Bonuses Section (Clean White Background) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-white: #ffffff;
  --card-bg-light: #ffffff;
  --accent-orange: #ff7700;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
}

.mads-bonus-section-light {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.mads-bonus-section-light *, 
.mads-bonus-section-light *::before, 
.mads-bonus-section-light *::after {
  box-sizing: border-box;
}

.bonus-container {
  max-width: 1160px;
  margin: 0 auto;
}

/* Tag Pill */
.bonus-tag-wrap {
  text-align: center;
  margin-bottom: 14px;
}

.bonus-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.1);
  border: 1px solid rgba(255, 119, 0, 0.25);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.bonus-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Header & Subtitle */
.bonus-header-wrap {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 50px auto;
}

.bonus-title {
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.bonus-title-highlight {
  color: var(--accent-orange);
}

.bonus-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* 6 Cards Grid (3 Columns) */
.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .bonus-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bonus-cards-grid {
    grid-template-columns: 1fr;
  }
}

.bonus-card-light {
  background: var(--card-bg-light);
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card-light:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 119, 0, 0.4);
  box-shadow: 0 15px 30px -5px rgba(255, 119, 0, 0.08);
}

.bonus-icon-box-light {
  font-size: 20px;
  background: rgba(255, 119, 0, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 119, 0, 0.2);
}

.bonus-card-title-light {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px 0;
}

.bonus-card-desc-light {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* Special Highlight Card Style (Orange / Dark Gradient Accent) */
.special-highlight-card-light {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #cc6000 100%);
  border: 1.5px solid var(--accent-orange);
  color: #ffffff;
  justify-content: center;
  text-align: left;
  box-shadow: 0 15px 30px rgba(255, 119, 0, 0.25);
}

.special-highlight-card-light:hover {
  border-color: #ffffff;
}

.bonus-card-center-content {
  display: flex;
  flex-direction: column;
}

.special-small-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.special-card-main-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}

.special-card-sub-desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-29290cc *//* Separate CSS Code for Meta Ads Pricing Section (Clean White Background) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-white: #ffffff;
  --card-bg-light: #ffffff;
  --accent-orange: #ff7700;
  --accent-orange-hover: #e56a00;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
}

.mads-pricing-section-light {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.mads-pricing-section-light *, 
.mads-pricing-section-light *::before, 
.mads-pricing-section-light *::after {
  box-sizing: border-box;
}

.pricing-container {
  max-width: 840px;
  margin: 0 auto;
}

/* Tag Pill */
.pricing-tag-wrap {
  text-align: center;
  margin-bottom: 14px;
}

.pricing-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.1);
  border: 1px solid rgba(255, 119, 0, 0.25);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.pricing-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Header */
.pricing-header-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-title {
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.pricing-title-highlight {
  color: var(--accent-orange);
}

/* Pricing Card Box */
.pricing-card-light-box {
  background: var(--card-bg-light);
  border: 1.5px solid var(--border-light);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
  .pricing-card-light-box {
    padding: 24px;
  }
}

/* Top Row */
.pricing-card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 768px) {
  .pricing-card-top-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.pricing-meta-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.pricing-amount-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.main-price-val {
  font-size: clamp(36px, 5vw, 44px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1;
}

.tenure-val {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.gtm-included-tag {
  font-size: 12.5px;
  font-weight: 600;
  color: #16a34a;
}

/* Buttons Side */
.pricing-buttons-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 260px;
}

@media (max-width: 768px) {
  .pricing-buttons-side {
    max-width: 100%;
  }
}

.pricing-btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #cc6000 100%);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(255, 119, 0, 0.25);
  transition: transform 0.2s, opacity 0.2s;
  display: block;
}

.pricing-btn-primary:hover {
  transform: translateY(-1px);
  opacity: 0.95;
  color: #ffffff;
}

.pricing-btn-secondary {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  display: block;
}

.pricing-btn-secondary:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.pricing-divider {
  height: 1px;
  background: var(--border-light);
  margin: 28px 0;
}

/* Features Grid */
.pricing-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin-bottom: 28px;
}

@media (max-width: 640px) {
  .pricing-features-grid {
    grid-template-columns: 1fr;
  }
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: #334155;
  font-weight: 500;
}

.feat-check {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

/* Notice Bar */
.pricing-notice-bar {
  background: #fffaf0;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .pricing-notice-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

.notice-text {
  font-size: 13px;
  font-weight: 600;
  color: #9a3412;
}

.pricing-reserve-btn {
  background: #16a34a;
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-block;
}

.pricing-reserve-btn:hover {
  background: #15803d;
  color: #ffffff;
}

.pricing-card-footer-note {
  text-align: center;
  font-size: 11.5px;
  color: #64748b;
  margin: 0;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2f36cda *//* Separate CSS Code for Meta Ads FAQ Section (Clean White Background) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-white: #ffffff;
  --card-bg-light: #ffffff;
  --accent-orange: #ff7700;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
}

.mads-faq-section-light {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.mads-faq-section-light *, 
.mads-faq-section-light *::before, 
.mads-faq-section-light *::after {
  box-sizing: border-box;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

/* Tag Pill */
.faq-tag-wrap {
  text-align: center;
  margin-bottom: 14px;
}

.faq-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.1);
  border: 1px solid rgba(255, 119, 0, 0.25);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.faq-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Header */
.faq-header-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.faq-title {
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.faq-title-highlight {
  color: var(--accent-orange);
}

/* Accordion List */
.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item-light {
  background: var(--card-bg-light);
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-item-light.active {
  border-color: rgba(255, 119, 0, 0.5);
  box-shadow: 0 8px 20px -4px rgba(255, 119, 0, 0.1);
}

.faq-question-header {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .faq-question-header {
    padding: 15px 18px;
  }
}

.faq-question-text {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  padding-right: 20px;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .faq-question-text {
    font-size: 14px;
  }
}

.faq-arrow-icon {
  background: rgba(255, 119, 0, 0.1);
  border: 1px solid rgba(255, 119, 0, 0.3);
  color: var(--accent-orange);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item-light.active .faq-arrow-icon {
  background: var(--accent-orange);
  color: #ffffff;
}

.faq-answer-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out;
  background: #f8fafc;
  border-top: 1px solid transparent;
}

.faq-item-light.active .faq-answer-body {
  border-top-color: var(--border-light);
}

.faq-answer-body p {
  margin: 0;
  padding: 16px 24px 20px 24px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2892a38 *//* Separate CSS Code for Meta Ads Footer CTA Section (Black, White, Orange Theme) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-black: #0b0f17;
  --card-bg-black: #131b2e;
  --accent-orange: #ff7700;
  --accent-orange-hover: #e56a00;
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --border-dark: #1e293b;
}

.mads-footer-cta-section {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.mads-footer-cta-section *, 
.mads-footer-cta-section *::before, 
.mads-footer-cta-section *::after {
  box-sizing: border-box;
}

.footer-cta-card-wrapper {
  max-width: 960px;
  margin: 0 auto;
  background: radial-gradient(circle at center, #161f36 0%, #0d121d 100%);
  border: 1.5px solid rgba(255, 119, 0, 0.4);
  border-radius: 28px;
  padding: 55px 40px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .footer-cta-card-wrapper {
    padding: 35px 20px;
  }
}

/* Header & Subtitle */
.footer-header-wrap {
  margin-bottom: 25px;
}

.footer-title {
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.footer-title-highlight {
  color: var(--accent-orange);
}

.footer-subtitle {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
}

/* Checkpoints Row */
.footer-checkpoints-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 35px;
  font-size: 13.5px;
  color: #cbd5e1;
  font-weight: 500;
}

.footer-checkpoints-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Action Buttons Wrap */
.footer-action-buttons-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #cc6000 100%);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 119, 0, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 119, 0, 0.4);
  color: #ffffff;
}

.footer-btn-secondary {
  background: var(--card-bg-black);
  border: 1.5px solid var(--border-dark);
  color: var(--text-white);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-btn-secondary:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
}/* End custom CSS */