:root {
  --primary-orange: #eb6f25;
  --primary-orange-hover: #d95e1c;
  --dark-bg: #2b2b2b;
  --dark-bg-alt: #23252a;
  --text-dark: #1c1d21;
  --text-light: #ffffff;
  --text-gray: #636c72;
  --bg-light: #f9fafb;
  --font-family: "Lato", sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/*
 * Rules below are scoped under .support-number-page so this page's generic
 * selectors (universal reset, a, .container, .btn*) don't restyle the shared
 * Bootstrap navbar/footer included by the parent template. :where() keeps the
 * scope at zero specificity so the original cascade (class rules beating the
 * generic base rules) is preserved exactly.
 */
:where(.support-number-page) *,
:where(.support-number-page) *::before,
:where(.support-number-page) *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*
 * Bootstrap Reboot's element rules (0,0,1) outrank the zero-specificity reset
 * above, so re-zero the properties it sets on text elements. Kept at (0,0,1)
 * so it ties Reboot and wins on source order, while still losing to the
 * component classes below.
 */
:where(.support-number-page) :is(p, h1, h2, h3, h4, h5, h6, ul, ol) {
  margin: 0;
  padding: 0;
  line-height: inherit;
}

html, body {
  overflow-x: clip;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  line-height: 1.5;
  background-color: #ffffff;
}

:where(.support-number-page) a {
  text-decoration: none;
  color: inherit;
}

:where(.support-number-page) .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

:where(.support-number-page) .btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-size: 16px;
}

:where(.support-number-page) .btn-primary {
  background-color: var(--primary-orange);
  color: var(--text-light);
}

:where(.support-number-page) .btn-primary:hover {
  background-color: var(--primary-orange-hover);
}

:where(.support-number-page) .btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid #e5e7eb;
}

:where(.support-number-page) .btn-outline:hover {
  border-color: #d1d5db;
  background-color: #f9fafb;
}

:where(.support-number-page) .text-orange {
  color: var(--primary-orange);
}

/* --- New Hero Section Styles --- */
.hero-section {
  background: linear-gradient(to right, #f8f9fa 50%, #000000 50%);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 520px;
}

.hero-content {
  flex: 1;
  background-color: #f8f9fa;
  padding: 100px 60px 100px calc((100vw - 1400px) / 2 + 24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

@media screen and (max-width: 1448px) {
  .hero-content {
    padding-left: 24px;
  }
}

.hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #eb6f25;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge-new::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #eb6f25;
}

.hero-title-new {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -1.5px;
  color: #1c1d21;
}

.hero-desc-new {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.65;
}

.hero-desc-new strong {
  font-weight: 700;
  color: #1c1d21;
}

.hero-actions-new {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-orange-cta {
  background-color: #eb6f25;
  color: #ffffff;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 6px -1px rgba(235, 111, 37, 0.2), 0 2px 4px -1px rgba(235, 111, 37, 0.1);
  display: inline-block;
}

.btn-orange-cta:hover {
  background-color: #d95e1c;
  transform: translateY(-1px);
}

.btn-white-cta {
  background-color: #ffffff;
  color: #1c1d21;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  display: inline-block;
}

.btn-white-cta:hover {
  border-color: #d1d5db;
  background-color: #f9fafb;
  transform: translateY(-1px);
}

.hero-footnote-new {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.hero-footnote-new::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
}

.hero-visual-new {
  flex: 1;
  background-color: #000000;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.hero-phone-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}

/* Mobile Responsiveness for Hero */
@media screen and (max-width: 1024px) {
  .hero-section {
    background: #f8f9fa;
  }
  
  .hero-inner {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
  
  .hero-content {
    padding: 60px 24px;
    align-items: center;
    text-align: center;
  }
  
  .hero-title-new {
    font-size: 40px;
  }
  
  .hero-desc-new {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions-new {
    justify-content: center;
    width: 100%;
  }
  
  .hero-footnote-new {
    justify-content: center;
  }
  
  .hero-visual-new {
    height: 380px;
    width: 100%;
  }
  
  .hero-image-wrapper {
    min-height: auto;
    height: 100%;
  }
}

@media screen and (max-width: 480px) {
  .hero-title-new {
    font-size: 32px;
  }
  
  .hero-actions-new {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-orange-cta, .btn-white-cta {
    width: 100%;
    text-align: center;
  }
}

/* --- Support Contact Channels Section --- */
.support-channels-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.channels-grid {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.channel-card {
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-right: 1px solid #e5e7eb;
  transition: background-color 0.2s ease;
}

.channel-card:last-child {
  border-right: none;
}

.channel-card:hover {
  background-color: #fafbfc;
}

.channel-info {
  flex: 1;
}

.channel-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.channel-link {
  font-size: 20px;
  font-weight: 800;
  color: #eb6f25;
  margin-bottom: 6px;
  display: inline-block;
  transition: color 0.2s ease;
}

.channel-link:hover {
  color: #d95e1c;
  text-decoration: underline;
}

.channel-subtext {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  font-weight: 500;
}

.channel-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon {
  display: block;
  height: auto;
}

.channel-icon-img {
  width: 80px;
  height: auto;
  display: block;
}

/* Mobile Responsiveness for Channels */
@media screen and (max-width: 1024px) {
  .channels-grid {
    grid-template-columns: 1fr;
  }
  
  .channel-card {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 32px 24px;
  }
  
  .channel-card:last-child {
    border-bottom: none;
  }
}

/* --- Support Warning Section --- */
.support-warning-section {
  padding: 40px 0 80px;
  background-color: #ffffff;
}

.warning-box {
  background-color: #fffbf9; /* Very soft peach/orange tint */
  border: 1.5px solid #eb6f25;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(235, 111, 37, 0.03);
  max-width: 1000px;
  margin: 0 auto;
}

.warning-title {
  font-size: 28px;
  font-weight: 800;
  color: #1c1d21;
  line-height: 1.3;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.warning-title-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-desc {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 24px;
}

.warning-desc strong {
  font-weight: 700;
  color: #1c1d21;
}

.warning-list-header {
  font-size: 16px;
  font-weight: 800;
  color: #1c1d21;
  margin-bottom: 16px;
}

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

.warning-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

.warning-check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-email-link {
  color: #eb6f25;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.warning-email-link:hover {
  color: #d95e1c;
}

/* Mobile Responsiveness for Warning Box */
@media screen and (max-width: 768px) {
  .warning-box {
    padding: 32px 24px;
  }
  
  .warning-title {
    font-size: 22px;
    gap: 10px;
  }
  
  .warning-list-item {
    font-size: 14px;
  }
}

/* --- Support Channels Table Section --- */
.support-table-section {
  padding: 40px 0 100px;
  background-color: #ffffff;
}

.support-table-section .container {
  max-width: 1200px;
}

.support-table-heading {
  font-size: 36px;
  font-weight: 800;
  color: #1c1d21;
  margin-bottom: 32px;
  letter-spacing: -1px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.support-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
}

.support-table th {
  background-color: #23252a; /* Dark charcoal */
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 18px 24px;
  border: none;
}

.support-table td {
  padding: 22px 24px;
  border-bottom: 1px solid #e5e7eb;
  color: #4b5563;
  font-weight: 500;
  vertical-align: middle;
}

.support-table tr:last-child td {
  border-bottom: none;
}

.support-table tr {
  transition: background-color 0.2s ease;
}

.support-table tr:hover {
  background-color: #f9fafb;
}

.table-link {
  color: #eb6f25;
  font-weight: 700;
  transition: color 0.2s ease;
}

.table-link:hover {
  color: #d95e1c;
  text-decoration: underline;
}

/* Time Pills */
.time-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.pill-yellow {
  background-color: #fef3c7; /* Light amber */
  color: #d97706; /* Dark amber */
}

.pill-blue {
  background-color: #dbeafe; /* Light blue */
  color: #1d4ed8; /* Dark blue */
}

.pill-green {
  background-color: #d1fae5; /* Light emerald */
  color: #047857; /* Dark emerald */
}

/* Mobile Responsiveness for Table */
@media screen and (max-width: 768px) {
  .support-table-heading {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .support-table th, .support-table td {
    padding: 16px;
    font-size: 14px;
  }
}

/* --- Why No Phone Support Section --- */
.why-no-phone-section {
  padding: 80px 0;
  background-color: #38404e; /* Premium cool dark slate/grey */
  color: #ffffff;
}

.why-no-phone-section .container {
  max-width: 1200px;
}

.why-no-phone-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.why-no-phone-content {
  flex: 1.1;
}

.why-no-phone-title {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.why-no-phone-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}

.why-no-phone-features {
  flex: 1;
}

.why-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.orange-square-bullet {
  width: 8px;
  height: 8px;
  background-color: #eb6f25;
  flex-shrink: 0;
  margin-top: 8px;
  border-radius: 1px;
}

.why-feature-text {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
}

/* Mobile Responsiveness for Why No Phone Section */
@media screen and (max-width: 1024px) {
  .why-no-phone-inner {
    flex-direction: column;
    gap: 48px;
    align-items: stretch;
  }
  
  .why-no-phone-title {
    font-size: 28px;
  }
  
  .why-features-list {
    gap: 24px;
  }
}

/* --- How to Get Help Fast Section --- */
.get-help-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.get-help-section .container {
  max-width: 1200px;
}

.get-help-heading {
  font-size: 36px;
  font-weight: 800;
  color: #1c1d21;
  margin-bottom: 32px;
  letter-spacing: -1px;
}

.get-help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.get-help-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.get-help-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.help-card-number {
  width: 40px;
  height: 40px;
  background-color: #eb6f25;
  margin: 0 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  
  /* Font styles */
  font-family: "Lato", sans-serif;
  font-size: 19px;
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.58;
  color: #fff;
  text-align: center;
}

.card-icon-img {
  width: 56px;
  height: auto;
  display: block;
}

.card-title {
  font-size: 20px;
  font-weight: 800;
  color: #1c1d21;
  line-height: 1.3;
}

.card-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
}

.card-inline-link {
  color: #eb6f25;
  font-weight: 700;
  transition: color 0.2s ease;
}

.card-inline-link:hover {
  color: #d95e1c;
  text-decoration: underline;
}

/* Featured Card with blue border */
/* Mobile Responsiveness for Get Help Section */
@media screen and (max-width: 768px) {
  .get-help-heading {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .get-help-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .get-help-card {
    padding: 24px;
  }
}

/* --- Frequently Asked Questions Section --- */
.support-faq-section {
  padding: 100px 0;
  background-color: #ffffff;
  border-top: 1px solid #f3f4f6;
}

.support-faq-section .container {
  max-width: 1200px;
}

.faq-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.faq-sidebar {
  flex: 1;
  position: sticky;
  top: 120px;
}

.faq-main-heading {
  font-size: 42px;
  font-weight: 800;
  color: #1c1d21;
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.faq-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.faq-item {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 40px;
}

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

.faq-question {
  font-size: 18px;
  font-weight: 800;
  color: #1c1d21;
  margin-bottom: 16px;
  line-height: 1.4;
}

.faq-answer {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.65;
}

.faq-link {
  color: #eb6f25;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.faq-link:hover {
  color: #d95e1c;
}

.faq-link-text {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.faq-link-text:hover {
  color: #eb6f25;
  text-decoration: underline;
}

/* Mobile Responsiveness for FAQ */
@media screen and (max-width: 1024px) {
  .faq-inner {
    flex-direction: column;
    gap: 48px;
  }
  
  .faq-sidebar {
    position: static;
  }
  
  .faq-main-heading {
    font-size: 32px;
  }
  
  .faq-content {
    gap: 36px;
  }
}

/* Stats Banner */
/* Built For Bar */
.built-for-bar {
  background-color: #131417; /* Dark charcoal/black */
  padding: 18px 0;
  color: white;
}

.built-for-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.built-for-label {
  color: #6b7280;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
}

.built-for-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
      justify-content: center;

}

.built-for-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.built-for-list li::before {
  content: '•';
  color: var(--primary-orange);
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
}

/* Stats Banner */
.stats-banner {
  background-color: var(--primary-orange);
  padding: 80px 0;
  color: var(--text-light);
}

.stats-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: rgb(255 255 255 / 13%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  overflow: hidden;
}

.stat-col {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
 border-right: 1px solid rgb(235 111 37);
}

.stat-col:last-child {
  border-right: none;
}

.stat-col h3 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}

.stat-col h4 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
}

.stat-col p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

/* Payout Pills */
.pills-container {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.payment-pill {
  background-color: white;
  color: var(--primary-orange);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 900;
  display: inline-block;
  white-space: nowrap;
}

/* Dark Section - You did the work */
.dark-section {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 100px 24px;
}

.dark-section .section-header {
  max-width: 680px;
  margin-bottom: 56px;
}

.dark-section .badge {
  display: inline-block;
  background-color: rgba(235, 143, 91, 0.22);
  color: var(--primary-orange);
   border: solid 1px rgba(235, 111, 37, 0.25);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 12px;
   font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 2.4px;
  text-align: left;
  color: #eb6f25;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.dark-section .section-header h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;

  @media screen and (max-width: 768px) {
    font-size: 35px;
  }
}

.dark-section .section-header p {
  color: #FFF;
  font-size: 16px;
  line-height: 1.6;
}

.dark-stats-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background-color: #1a1a1a;
}

.dark-stats-col {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-stats-col:last-child {
  border-right: none;
}

.dark-stats-col h4 {
  font-size: 18px;
 font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.57;
  letter-spacing: 0.2px;  color: var(--primary-orange);
  margin-bottom: 16px;
}

.dark-stats-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.62;
  letter-spacing: normal;
}

/* JVZoo Highlight Column */
.dark-stats-col.col-highlight {
   background-color: #67412B;

}

.dark-stats-col.col-highlight h4 {
  color: #eb6f25; /* Peach color for optimal contrast on brown */
}

.dark-stats-col.col-highlight p {
  color: rgba(255, 255, 255, 0.95);
}

/* Promote or Create Section */
.cards-section {
  padding: 80px 24px;
  background-color: #f7f7f9;
  
}

.cards-header {
  margin-bottom: 56px;
  
}

.cards-header .badge {
  display: inline-block;
  background-color: #fef0e8;
  color: var(--primary-orange);
  border: solid 1px rgba(235, 111, 37, 0.25);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 12px;
 font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cards-header h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 16px;

  @media screen and (max-width: 768px) {
    font-size: 35px;
  }
}

.cards-header p {
  font-size: 18px;
  color: var(--text-gray);
 font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.73;
  letter-spacing: normal;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid #e5e7eb;
  margin-bottom: 40px;
}

.card {
  padding: 64px;
  display: flex;
  flex-direction: column;
  position: relative;

  @media screen and (max-width: 768px) {
    padding: 30px;
  }
}

.card-orange {
  background-color: var(--primary-orange);
  color: white;
}

.card-white {
  background-color: #ffffff;
  color: var(--text-dark);
}

.card-number {
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.card-orange .card-number {
  color: rgba(255, 255, 255, 0.15);
}

.card-white .card-number {
  color: #E5E5E5;
}

.card-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
 font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 24px;
}

.card-orange .card-badge {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
}

.card-white .card-badge {
  background-color: #fef0e8;
  border: solid 1px rgba(235, 111, 37, 0.25);
  color: var(--primary-orange);
}

.card h3 {
  font-size: 32px;
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}

.card p {
  font-size: 17px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.card-orange p {
  color: rgba(255, 255, 255, 0.85);
}

.card-white p {
  color: #4b5563;
}

.card ul {
  list-style: none;
}

.card ul li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  font-weight: 400;
}

.card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.card-orange ul li::before {
  color: white;
}

.card-white ul li::before {
  color: var(--primary-orange);
}

.cards-cta-banner {
  background-color: var(--dark-bg);
  border-radius: 16px;
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.cards-cta-banner h3 {
  font-size: 26px;
   font-weight: 900;
    line-height: 1.58;
  margin-bottom: 6px;
}

.cards-cta-banner p {
  color: #d5d5d6;
  font-size: 16px;
    line-height: 1.54;

}

.cards-cta-banner .cta-btn {
  background-color: var(--primary-orange);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cards-cta-banner .cta-btn:hover {
  background-color: var(--primary-orange-hover);
}

/* Features Grid Section */
.features-grid-section {
  padding: 80px 24px;
  background-color: #ffffff;
}

.features-header {
  margin-bottom: 56px;
  max-width: 800px;
}

.features-header .badge {
  display: inline-block;
  background-color: #fef0e8;
  color: var(--primary-orange);
   border: solid 1px rgba(235, 111, 37, 0.25);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 900;
   line-height: 1.6;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.features-header h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 16px;

  @media screen and (max-width: 768px) {
    font-size: 35px;
  }
}

.features-header p {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 728px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-box {
  background-color: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.02), 0 1px 2px 0 rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease-in-out;
}

.feature-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

/* Orange feature box */
.feature-box.feature-orange {
  background-color: var(--primary-orange);
  color: white;
  border-color: var(--primary-orange);
}

.feature-box.feature-orange h4 {
  color: white;
}

.feature-box.feature-orange p {
  color: rgba(255, 255, 255, 0.85);
}

.feature-box.feature-orange .feature-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

/* Soft icon colors */
.feature-icon.icon-green {
  background-color: #ecfdf5;
  color: #10b981;
}

.feature-icon.icon-blue {
  background-color: #eff6ff;
  color: #3b82f6;
}

.feature-icon.icon-red {
  background-color: #fef2f2;
  color: #ef4444;
}

.feature-icon.icon-purple {
  background-color: #faf5ff;
  color: #a855f7;
}

.feature-icon.icon-gray {
  background-color: #f3f4f6;
  color: #4b5563;
}

.feature-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.feature-box p {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

/* Dashboard Section */
.dashboard-section {
  padding: 100px 24px;
  background-color: var(--dark-bg);
}

.dashboard-header {
  margin-bottom: 56px;
  max-width: 800px;
}

.dashboard-header .badge {
  display: inline-block;
  background-color: rgba(235, 143, 91, 0.22);

  color: var(--primary-orange);
  border: solid 1px rgba(235, 111, 37, 0.25);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 900;
   line-height: 1.6;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.dashboard-header h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 16px;

  @media screen and (max-width: 768px) {
    font-size: 35px;
  }
}

.dashboard-header p {
  font-size: 17px;
  color: #fef2f2;
  line-height: 1.6;
  
}

/* Dashboard HTML/CSS Mockup */
.dashboard-mockup {
 
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid #374151;
}

.mockup-header {
  background-color: var(--primary-orange);
  padding: 20px 32px;
  color: white;
}

.mockup-header-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.live-dot {
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: dotPulse 1.5s infinite ease-in-out;
  margin-right: 8px;
}

@keyframes dotPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
}

.mockup-header-subtitle {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}

.mockup-body {
  background-color: white;
  color: var(--text-dark);
  padding: 32px;
}

.mockup-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 32px;
  margin-bottom: 32px;

   @media screen and (max-width: 768px) {
   display: flex;
    flex-direction: column;
    align-items: center;
        text-align: center;
  }
}

.mockup-stat-item {
  display: flex;
  flex-direction: column;
}

.mockup-stat-val {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 6px;
}

.mockup-stat-lbl {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.mockup-stat-trend {
  font-size: 13px;
  color: #047857;
    line-height: 1.55;

  font-weight: 700;
}

.mockup-chart-section {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.mockup-chart-lbl {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.mockup-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
}

.chart-bar {
  flex: 1;
  background-color: #e5e7eb;
  border-radius: 4px 4px 0 0;
}

.chart-bar.orange-bar {
  background-color: var(--primary-orange);
}

.mockup-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mockup-feature-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #f3f4f6;
  gap: 10px;

    @media screen and (max-width: 768px) {
      flex-direction: column;
      align-items: stretch;
    }
}

.mockup-feature-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mockup-feature-left {
  display: flex;
  gap: 16px;
  max-width: 80%;
}

.mockup-feature-icon {
  font-size: 20px;
  width: 36px;
  height: 36px;
  background-color: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-feature-text strong {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  display: block;
  margin-bottom: 4px;
}

.mockup-feature-text p {
  font-size: 14px;
  color: #636c72;
  line-height: 1.5;
}

.mockup-feature-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 9999px;
  white-space: nowrap;
}

.mockup-feature-badge.orange-badge {
  background-color: #fef0e8;
  color: var(--primary-orange);
   border: solid 1px rgba(235, 111, 37, 0.25);
}

.mockup-feature-badge.green-badge {
 background-color: rgba(4, 120, 87, 0.17);
   color: #047857;
    border: solid 1px #047857;

}

/* Steps / Payout Section */
.steps-section {
  padding: 100px 24px;
}

.steps-header {
  margin-bottom: 48px;
  max-width: 800px;
}

.steps-header .badge {
  display: inline-block;
  background-color: #fef0e8;
  color: var(--primary-orange);
  border: solid 1px rgba(235, 111, 37, 0.25);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.steps-header h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 16px;

  @media screen and (max-width: 768px) {
    font-size: 35px;
  }
}

.steps-header p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
  max-width: 640px;
}

.steps-stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #f7f7f9;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 16px;
  margin-bottom: 40px;
  position: relative;
  
  @media screen and (max-width: 768px) {
    display: flex;
    flex-direction: column;
  }
}

.steps-stat-col {
  padding: 0 32px;
  position: relative;
}

.steps-stat-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 90%;
  width: 1px;
  background-color: #ffd2b2;

  @media screen and (max-width: 768px) {
    top: 100%;
    height: 1px;
    width: 100%;
  }
}

.steps-stat-col .stat-num {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--text-dark);

   @media screen and (max-width: 768px) {
    margin-top: 20px;
  }
}

.steps-stat-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;

  
}

.steps-stat-col p {
  font-size: 14px;
  color: #636c72;
  line-height: 1.5;
 

   @media screen and (max-width: 768px) {
    margin-bottom: 10px;
  }
}

.steps-cta-banner {
  background-color: var(--dark-bg);
  border-radius: 16px;
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.steps-cta-banner h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.steps-cta-banner p {
  color: #d5d5d6;
  font-size: 16px;
}

.steps-cta-banner .cta-btn {
  background-color: var(--primary-orange);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.steps-cta-banner .cta-btn:hover {
  background-color: var(--primary-orange-hover);
}

/* Platforms Section */
.platforms-section {
  padding: 70px 24px;
  background-color: #f7f7f9;
}

.platforms-header {
  margin-bottom: 48px;
  max-width: 800px;
}

.platforms-header .badge {
  display: inline-block;
  background-color: #fef0e8;
  color: var(--primary-orange);
  border: solid 1px rgba(235, 111, 37, 0.25);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 900;
   line-height: 1.6;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.platforms-header h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 16px;

  @media screen and (max-width: 768px) {
     font-size: 35px;
  }
}

.platforms-header p {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.73;
 
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.platform-card {
  background-color: #ffffff;
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.02), 0 1px 2px 0 rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease-in-out;
}

.platform-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

.platform-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.platform-icon-container {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
  border-radius: 10px;
  flex-shrink: 0;
  color: #4b5563;
}

.platform-card-title-group {
  display: flex;
  flex-direction: column;
}

.platform-card-title-group h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.platform-card-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.platform-card-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* Simple enough section */
.simple-section {
  padding: 70px 24px;
  display: flex;
  align-items: center;
  gap: 64px;
}

.simple-content {
  flex: 1;
}

.simple-content h2 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.09;
  letter-spacing: -0.6px;
  margin-bottom: 24px;
}

.simple-content p {
  font-size: 18px;
  line-height: 1.73;
  margin-bottom: 24px;
}


.simple-list {
  list-style: none;
}

.simple-list li {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
line-height: 1.5;
  position: relative;
  padding-left: 28px;
}

.simple-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-orange);
  font-weight: bold;
}

.simple-image {
  flex: 1;
 
  max-width: 700px;
  
  display: flex;
  align-items: center;
  justify-content: center;
 
}
.simple-section .simple-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
/* Testimonial */
.testimonial-section {
  padding: 70px 24px;
    background-color: #1c1c1c;

  text-align: center;

  @media screen and (max-width: 768px) {
     padding: 50px 0px;
  }
}

.testimonial-card {
  border: solid 1px #353535;
background-image: linear-gradient(232deg, #323232 0%, #1c1c1c 100%);
box-shadow: 0 6px 48px 0 rgba(51, 51, 51, 0.1);
  max-width: 920px;
  margin: 0 auto;
  padding: 64px;
  border-radius: 12px;
  color: white;

  @media screen and (max-width: 768px) {
     padding: 20px;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  background-color: #3f414a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 700;
  font-size: 18px;
}

.author-title {
  color: #9ca3af;
  font-size: 14px;
}

.testimonial-quote {
  font-size: 24px;
  line-height: 1.6;
  font-style: italic;
}

/* Footer CTA */
.footer-cta {
   position: relative;
  overflow: hidden;
  background-color: #eb6f25;
  padding: 100px 24px;
  text-align: center;
  color: white;
}
/* Bottom Left Half Circle */
.footer-cta::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -110px;
  width: 240px;
  height: 220px;
  border-radius: 150px;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Top Right Circle */
.footer-cta::after {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 280px;
  height: 280px;
  border-radius: 190px;
  background-color: rgba(255, 255, 255, 0.06);
}

.footer-cta h2 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 32px;
  font-weight: 900;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -1.6px;
  margin-left: auto;
  margin-right: auto;

  @media screen and (max-width: 768px) {
    font-size: 40px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 40px 0;

  }

  /* Built For Bar */
  .built-for-content {
    flex-direction: column;
            align-items: center;

    gap: 12px;
  }

  .built-for-list {
    gap: 14px;
  }
 
  /* Stats Banner */
  .stats-box,
  .dark-stats-box,
  .features-grid,
  .steps-grid,
  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .stat-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 32px 24px;
  }

  .stat-col:last-child {
    border-bottom: none;
  }

  .dark-stats-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 24px;
  }

  .dark-stats-col:last-child {
    border-bottom: none;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .simple-section {
    flex-direction: column;
  }

  .cta-banner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-title {
    font-size: 40px;
  }

  .steps-cta-banner,
  .cards-cta-banner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .hero-image {
    max-width: 85%;
  }
}
