/* Mavric Custom Overrides */

/* D1: Button contrast fix — WCAG compliant copper buttons */
.btn-primary {
  background-color: #D1894B !important;
  border-color: #D1894B !important;
  color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #B87440 !important;
  border-color: #B87440 !important;
  color: #fff !important;
}

.btn-primary:focus-visible {
  outline: 2px solid #D1894B;
  outline-offset: 2px;
}

/* C17: Hard Numbers Strip */
.hard-numbers-strip {
  background-color: #1a1a2e;
  padding: 40px 0;
  border-top: 2px solid #D1894B;
  border-bottom: 2px solid #D1894B;
}

.hard-numbers-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.hard-number-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.hard-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #D1894B;
  line-height: 1.2;
}

.hard-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .hard-numbers-grid {
    flex-direction: column;
    gap: 20px;
  }
  .hard-number-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: auto;
  }
  .hard-number {
    font-size: 1.75rem;
  }
}

/* C18: Pricing Signal Section */
.pricing-signal-section {
  background-color: #0f0f23;
  padding: 80px 0;
}

.pricing-signal-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pricing-signal-content h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 12px;
}

.pricing-subhead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  margin-bottom: 48px;
}

.pricing-cards {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-signal-section .pricing-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: left;
}

.pricing-card-highlight {
  border-color: #D1894B;
  background: rgba(209, 137, 75, 0.08);
}

.pricing-card h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.pricing-range {
  color: #D1894B;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-range span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pricing-includes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-includes li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.pricing-includes li::before {
  content: "\2713";
  color: #D1894B;
  position: absolute;
  left: 0;
}

.pricing-footnote {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
  }
}

/* C20: FAQ Section */
.faq-section {
  background-color: #1a1a2e;
  padding: 80px 0;
}

.faq-section h2 {
  color: #fff;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}

.faq-question:hover {
  color: #D1894B;
}

.faq-toggle {
  color: #D1894B;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 20px;
}

/* D2: Client Logo Strip */
.client-logo-strip {
  background-color: #12122a;
  padding: 24px 0;
  overflow: hidden;
}

.logo-strip-label {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.logo-strip-scroll {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-strip-track {
  display: flex;
  gap: 48px;
  animation: scroll-logos 30s linear infinite;
  width: max-content;
}

.client-name {
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.client-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.4);
  transition: filter 0.3s ease;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-strip-track:hover {
  animation-play-state: paused;
}

.client-name:hover {
  color: rgba(255, 255, 255, 0.6);
}

.client-logo:hover {
  filter: brightness(0) invert(1) opacity(0.7);
}

/* Utility: sr-only for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ── C4: Secondary Hero CTA ─────────────────────── */
.banner-btn-secondary {
  margin-top: 12px;
}
.banner-btn-secondary .btn-transparent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.banner-btn-secondary .btn-transparent:hover {
  border-color: #D1894B;
  background: rgba(209, 137, 75, 0.15);
  color: #D1894B;
}
.banner-btn-secondary .btn-transparent svg {
  width: 18px;
  height: 18px;
}

/* ── C19: Competitor Comparison Table ────────────── */
#competitor-comparison {
  padding: 80px 0;
  background: #0a0a0a;
}
#competitor-comparison h2 {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 12px;
}
#competitor-comparison .comparison-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  max-width: 900px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.comparison-table thead th {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  padding: 14px 16px;
  text-align: center;
  border-bottom: 2px solid #333;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comparison-table thead th:first-child {
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
}
.comparison-table thead th.mavric-col {
  color: #D1894B;
  background: rgba(209, 137, 75, 0.08);
  border-bottom-color: #D1894B;
}
.comparison-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #222;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  vertical-align: middle;
}
.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: #fff;
}
.comparison-table tbody td.mavric-col {
  background: rgba(209, 137, 75, 0.04);
}
.comparison-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.comparison-table tbody tr:hover td.mavric-col {
  background: rgba(209, 137, 75, 0.08);
}
.comparison-table .check {
  color: #4ade80;
  font-size: 1.2rem;
}
.comparison-table .cross {
  color: #f87171;
  font-size: 1.2rem;
}
.comparison-table .partial {
  color: #fbbf24;
  font-size: 0.85rem;
}
.comparison-table tfoot td {
  padding: 20px 16px;
  border-top: 2px solid #333;
  text-align: center;
}
.comparison-table tfoot td.mavric-col {
  background: rgba(209, 137, 75, 0.06);
}
.comparison-table tfoot .btn-primary {
  display: inline-block;
  padding: 10px 24px;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .comparison-table {
    font-size: 0.85rem;
  }
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 10px 10px;
  }
  #competitor-comparison h2 {
    font-size: 1.5rem;
  }
}


/* ========================================
   PRICING PAGE STYLES (P6)
   ======================================== */

.pricing-page {
    background: #0a0a14;
    color: #fff;
}

.pricing-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a14 0%, #14141f 100%);
}

.pricing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.pricing-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.pricing-tiers {
    padding: 80px 0;
    background: #0a0a14;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #14141f;
    border: 2px solid rgba(209, 137, 75, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #D1894B;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(209, 137, 75, 0.2);
}

.pricing-card-featured {
    border-color: #D1894B;
    border-width: 3px;
}

.pricing-card-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: #D1894B;
    color: #0a0a14;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card-tier {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D1894B;
    margin-bottom: 1rem;
}

.pricing-card-price {
    margin: 1rem 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.price-period {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.3rem;
}

.pricing-card-savings {
    color: #D1894B;
    font-size: 0.95rem;
    font-weight: 600;
}

.pricing-card-body {
    padding-top: 2rem;
}

.pricing-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D1894B;
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-features li strong {
    color: #fff;
}

a.pricing-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.whats-included {
    padding: 80px 0;
    background: #14141f;
}

.pricing-page .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.pricing-page .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.pricing-page .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.included-item {
    text-align: center;
    padding: 1.5rem;
}

.included-icon {
    margin-bottom: 1rem;
}

.included-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.included-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.cost-comparison {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a14 0%, #14141f 100%);
}

.cost-comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cost-comparison-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cost-comparison-text .lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cost-comparison-text .lead strong {
    color: #D1894B;
}

.cost-comparison-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cost-comparison-cta {
    background: rgba(209, 137, 75, 0.1);
    border-left: 4px solid #D1894B;
    padding: 1.5rem;
    margin-top: 2rem;
}

.cost-comparison-cta h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.cost-comparison-cta p {
    margin-bottom: 0;
}

.cost-comparison-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-page .stat-card {
    background: #14141f;
    border: 2px solid rgba(209, 137, 75, 0.3);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.pricing-page .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #D1894B;
    margin-bottom: 0.5rem;
}

.pricing-page .stat-label {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-page .stat-source {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-faq {
    padding: 80px 0;
    background: #0a0a14;
}

.pricing-faq .faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-faq .faq-item {
    background: #14141f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.pricing-faq .faq-item:hover {
    border-color: rgba(209, 137, 75, 0.5);
}

.pricing-faq .faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.pricing-faq .faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0;
}

.pricing-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #14141f 0%, #0a0a14 100%);
}

.pricing-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.pricing-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

.pricing-cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .cost-comparison-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .included-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-hero-title {
        font-size: 2.5rem;
    }
    .pricing-hero-subtitle {
        font-size: 1.1rem;
    }
    .pricing-page .section-header h2,
    .cost-comparison-text h2,
    .pricing-cta-content h2 {
        font-size: 2rem;
    }
    .pricing-page .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 80px 0 60px;
    }
    .pricing-card {
        padding: 1.5rem;
    }
    .pricing-hero-title {
        font-size: 2rem;
    }
    .price-amount {
        font-size: 2rem;
    }
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}


/* ========================================
   HOW IT WORKS PAGE STYLES (P8)
   ======================================== */

.how-it-works-page {
    background: #0a0a14;
    color: #ffffff;
}

.hiw-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.hiw-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hiw-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.hiw-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.hiw-step {
    padding: 80px 0;
    border-bottom: 1px solid rgba(209, 137, 75, 0.1);
}

.hiw-step-wrapper {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 60px;
    align-items: start;
}

.hiw-step-number {
    position: sticky;
    top: 120px;
}

.hiw-step-number span {
    display: inline-block;
    font-size: 4rem;
    font-weight: 700;
    color: #D1894B;
    opacity: 0.3;
    line-height: 1;
}

.hiw-step-content {
    max-width: 800px;
}

.hiw-step-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.hiw-step-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.hiw-step-features {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.hiw-step-features li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.hiw-step-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #D1894B;
    font-weight: 700;
}

.hiw-step-highlight {
    margin-top: 32px;
    padding: 24px;
    background: rgba(209, 137, 75, 0.05);
    border-left: 3px solid #D1894B;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hiw-report-preview {
    margin: 48px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(209, 137, 75, 0.2);
    border-radius: 8px;
}

.hiw-report-preview-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: #D1894B;
}

.hiw-report-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.hiw-report-section {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.hiw-report-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.hiw-report-section p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.hiw-step-subtext {
    margin-top: 24px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.hiw-ongoing {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a14 0%, #0d0d18 100%);
}

.hiw-ongoing-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hiw-ongoing-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.hiw-ongoing-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hiw-ongoing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: left;
}

.hiw-ongoing-feature {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(209, 137, 75, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hiw-ongoing-feature:hover {
    border-color: rgba(209, 137, 75, 0.3);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-4px);
}

.hiw-ongoing-feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #D1894B;
}

.hiw-ongoing-feature p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.hiw-cta-section {
    padding: 100px 0;
    background: #0a0a14;
}

.hiw-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hiw-cta-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.hiw-cta-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
}

.hiw-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .hiw-hero-title { font-size: 2.75rem; }
    .hiw-step-wrapper { grid-template-columns: 80px 1fr; gap: 40px; }
    .hiw-step-number span { font-size: 3rem; }
    .hiw-step-title { font-size: 2rem; }
}

@media (max-width: 768px) {
    .hiw-hero { padding: 80px 0 60px; }
    .hiw-hero-title { font-size: 2rem; }
    .hiw-hero-subtitle { font-size: 1.125rem; }
    .hiw-step { padding: 60px 0; }
    .hiw-step-wrapper { grid-template-columns: 1fr; gap: 24px; }
    .hiw-step-number { position: static; }
    .hiw-step-number span { font-size: 2.5rem; }
    .hiw-step-title { font-size: 1.75rem; }
    .hiw-step-description { font-size: 1rem; }
    .hiw-report-sections { grid-template-columns: 1fr; }
    .hiw-report-preview { padding: 24px; }
    .hiw-ongoing-features { grid-template-columns: 1fr; }
    .hiw-ongoing-content h2, .hiw-cta-content h2 { font-size: 2rem; }
    .hiw-cta-buttons { flex-direction: column; align-items: center; }
    .hiw-cta-buttons .btn { width: 100%; max-width: 300px; }
}

@media (max-width: 480px) {
    .hiw-hero-title { font-size: 1.75rem; }
    .hiw-step-title { font-size: 1.5rem; }
    .hiw-ongoing-content h2, .hiw-cta-content h2 { font-size: 1.75rem; }
    .hiw-ongoing, .hiw-cta-section { padding: 60px 0; }
}


/* ========================================
   VETTING PROCESS PAGE STYLES (P7)
   ======================================== */

.vetting-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.vetting-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.vetting-stats {
    padding: 80px 0;
    background: rgba(209, 137, 75, 0.05);
}

.vetting-stats .section-title,
.vetting-comparison .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-block {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(209, 137, 75, 0.2);
    transition: all 0.3s ease;
}

.stat-block:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(209, 137, 75, 0.4);
    transform: translateY(-4px);
}

.stat-block .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #D1894B;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-block .stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.vetting-stage {
    padding: 80px 0;
}

.vetting-stage:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.stage-content {
    max-width: 900px;
    margin: 0 auto;
}

.stage-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.stage-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #D1894B;
    color: #0a0a14;
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stage-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.stage-description p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.stage-description strong {
    color: #D1894B;
    font-weight: 600;
}

.stage-checklist {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
}

.stage-checklist li {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 0 12px 40px;
    position: relative;
}

.stage-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D1894B;
    font-weight: 700;
    font-size: 1.5rem;
}

.vetting-comparison {
    padding: 80px 0;
    background: rgba(209, 137, 75, 0.05);
}

.vetting-comparison .comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.vetting-comparison .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.vetting-comparison .comparison-table thead {
    background: rgba(209, 137, 75, 0.15);
}

.vetting-comparison .comparison-table th {
    padding: 20px 16px;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 2px solid rgba(209, 137, 75, 0.3);
}

.vetting-comparison .comparison-table td {
    padding: 20px 16px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vetting-comparison .feature-name {
    font-weight: 600;
    color: #ffffff;
}

.vetting-comparison .highlight-col {
    background: rgba(209, 137, 75, 0.1);
    color: #ffffff;
    font-weight: 600;
}

.vetting-comparison .comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.vetting-cta {
    padding: 100px 0;
    text-align: center;
}

.vetting-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.vetting-cta .cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.vetting-cta .cta-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.vetting-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .vetting-hero { padding: 80px 0 60px; }
    .vetting-stats .section-title,
    .vetting-comparison .section-title { font-size: 2rem; }
    .stats-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
    .stat-block .stat-number { font-size: 2.5rem; }
    .stage-header { flex-direction: column; align-items: flex-start; }
    .stage-number { width: 60px; height: 60px; font-size: 2rem; }
    .stage-title { font-size: 1.75rem; }
    .stage-description p { font-size: 1rem; }
    .vetting-comparison .comparison-table { font-size: 0.875rem; }
    .vetting-comparison .comparison-table th,
    .vetting-comparison .comparison-table td { padding: 12px 8px; }
    .vetting-cta .cta-title { font-size: 2rem; }
    .vetting-cta .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .vetting-hero { padding: 80px 0 60px; }
    .vetting-stats, .vetting-stage, .vetting-comparison, .vetting-cta { padding: 60px 0; }
}


/* ── Fix: Step number circles (Mavric Method page) ─── */
.steps-tabs ul li button span {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.steps-tabs ul li button:hover span,
.steps-tabs ul li button.active span {
    background: #D1894B;
    color: #fff;
    border-color: #D1894B;
}

.steps-tabs ul li button.active {
    background: rgba(209, 137, 75, 0.1);
}

.steps-tabs ul li button:hover {
    background: rgba(209, 137, 75, 0.08);
}

/* Dark content variant */
.dark-content-steps .steps-tabs ul li button span {
    border-color: rgba(30, 30, 30, 0.25);
}

.dark-content-steps .steps-tabs ul li button:hover span,
.dark-content-steps .steps-tabs ul li button.active span {
    background: #D1894B;
    color: #fff;
    border-color: #D1894B;
}

.dark-content-steps .steps-tabs ul li button.active,
.dark-content-steps .steps-tabs ul li button:hover {
    background: rgba(209, 137, 75, 0.08);
}

/* ── Fix: Contact form submit button (copper, not blue) ─── */
.wpcf7-submit,
.wpcf7 input[type="submit"],
button[type="submit"],
.contact-form .btn,
.contact-form input[type="submit"] {
    background-color: #D1894B !important;
    border-color: #D1894B !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.wpcf7-submit:hover,
.wpcf7 input[type="submit"]:hover,
button[type="submit"]:hover,
.contact-form .btn:hover,
.contact-form input[type="submit"]:hover {
    background-color: #B87440 !important;
    border-color: #B87440 !important;
    color: #fff !important;
}

/* ========================================
   OUR METHOD PAGE FIXES
   ======================================== */

/* Fix: Hero button should be transparent style (like secondary CTA) */
#method-page-banner .method-banner-btn .btn-primary {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    color: #fff !important;
}

#method-page-banner .method-banner-btn .btn-primary:hover {
    background: rgba(209, 137, 75, 0.15) !important;
    border-color: #D1894B !important;
    color: #D1894B !important;
}

/* Fix: Method overview boxes - prevent text overflow */
.method-boxes-main .experties-slide-box {
    padding: 24px;
    min-height: 200px;
}

.method-boxes-main .experties-slide-box h4 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.method-boxes-main .experties-slide-box p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
}

/* Fix: Gain boxes - ensure proper text wrapping */
.gain-boxes .gain-box {
    padding: 24px;
    overflow: hidden;
}

.gain-boxes .gain-box h4 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 12px;
}

.gain-boxes .gain-box p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
}

/* ========================================
   PRICING CALCULATOR STYLES
   ======================================== */

.pricing-calculator-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a14 0%, #14141f 100%);
    position: relative;
}

.calculator-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.calculator-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.calculator-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.calculator-inputs {
    background: #14141f;
    border: 2px solid rgba(209, 137, 75, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
}

.calc-input-group {
    margin-bottom: 2rem;
}

.calc-input-group:last-child {
    margin-bottom: 0;
}

.calc-input-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.calc-select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #0a0a14;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23D1894B' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.calc-select:hover,
.calc-select:focus {
    border-color: #D1894B;
    outline: none;
}

.calc-select option {
    background: #0a0a14;
    color: #fff;
}

.calc-toggle-group {
    display: flex;
    gap: 0.75rem;
}

.calc-toggle-btn {
    flex: 1;
    padding: 1rem;
    background: #0a0a14;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.calc-toggle-btn:hover {
    border-color: rgba(209, 137, 75, 0.5);
    background: rgba(209, 137, 75, 0.05);
}

.calc-toggle-btn.active {
    background: rgba(209, 137, 75, 0.15);
    border-color: #D1894B;
    color: #D1894B;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 600;
}

.toggle-desc {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.7;
}

.calc-slider-wrapper {
    padding: 0.5rem 0;
}

.calc-slider {
    width: 100%;
    height: 6px;
    background: #0a0a14;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #D1894B;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(209, 137, 75, 0.2);
}

.calc-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #D1894B;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.calc-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(209, 137, 75, 0.2);
}

.calc-slider-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.slider-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D1894B;
}

.calculator-output {
    position: sticky;
    top: 100px;
}

.calc-result-card {
    background: #14141f;
    border: 3px solid #D1894B;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(209, 137, 75, 0.2);
}

.calc-result-header {
    background: linear-gradient(135deg, rgba(209, 137, 75, 0.2) 0%, rgba(209, 137, 75, 0.05) 100%);
    border-bottom: 2px solid rgba(209, 137, 75, 0.3);
    padding: 2rem;
    text-align: center;
}

.result-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.result-price {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.price-from,
.price-to {
    font-size: 2rem;
}

.price-separator {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.25rem;
}

.result-savings {
    font-size: 1.1rem;
    color: #D1894B;
    font-weight: 600;
}

.calc-result-body {
    padding: 2rem;
}

.result-breakdown h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.result-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.result-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.result-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D1894B;
    font-weight: 700;
}

.result-includes li strong {
    color: #fff;
}

.result-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(209, 137, 75, 0.05);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.comparison-stat {
    text-align: center;
    padding: 0.75rem;
}

.comparison-stat.highlight {
    background: rgba(209, 137, 75, 0.15);
    border-radius: 6px;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.managed-team-note {
    background: rgba(209, 137, 75, 0.1);
    border-left: 3px solid #D1894B;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.managed-team-note strong {
    display: block;
    color: #D1894B;
    margin-bottom: 0.5rem;
}

.managed-team-note p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.calc-cta {
    text-align: center;
}

.btn-calc-cta {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.cta-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.calc-disclaimer {
    margin-top: 1.5rem;
    text-align: center;
}

.calc-disclaimer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1200px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .calculator-output {
        position: static;
    }
    .result-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-calculator-section {
        padding: 60px 0;
    }
    .calculator-header h2 {
        font-size: 2rem;
    }
    .calculator-inputs {
        padding: 1.5rem;
    }
    .calc-toggle-group {
        flex-direction: column;
    }
    .result-price {
        font-size: 2rem;
        flex-wrap: wrap;
    }
    .price-from,
    .price-to {
        font-size: 1.5rem;
    }
    .stat-value {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .calculator-inputs {
        padding: 1.25rem;
    }
    .calc-result-header {
        padding: 1.5rem;
    }
    .calc-result-body {
        padding: 1.5rem;
    }
    .result-price {
        font-size: 1.75rem;
    }
    .btn-calc-cta {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

/* ======================================== */

/* ============================================================
   FIX: Steps carousel box height — was 318px, cutting off content
   ============================================================ */
.steps-box-main {
    max-height: 420px;
}

/* ============================================================
   VETTING PROCESS PAGE (page-vetting-process.php / /our-method/)
   Extracted from commented-out block in template
   ============================================================ */

/* Vetting Hero */
.vetting-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.vetting-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.vetting-hero .hero-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #D1894B;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vetting-hero .hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.vetting-hero .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scoped buttons for vetting page only */
.vetting-hero .btn-primary,
.vetting-cta .btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #D1894B;
    color: #0a0a14;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    width: auto;
}

.vetting-hero .btn-primary:hover,
.vetting-cta .btn-primary:hover {
    background: #e09555;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(209, 137, 75, 0.3);
    color: #0a0a14;
}

.vetting-hero .btn-transparent,
.vetting-cta .btn-transparent {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #D1894B;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #D1894B;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.vetting-hero .btn-transparent:hover,
.vetting-cta .btn-transparent:hover {
    background: rgba(209, 137, 75, 0.1);
    transform: translateY(-2px);
    color: #D1894B;
}

/* Stats Section */
.vetting-stats {
    padding: 80px 0;
    background: rgba(209, 137, 75, 0.05);
}

.vetting-stats .section-title,
.vetting-comparison .section-title,
.diy-comparison-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

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

.stat-block {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(209, 137, 75, 0.2);
    transition: all 0.3s ease;
}

.stat-block:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(209, 137, 75, 0.4);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #D1894B;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* Three Pillars */
.pillars-section {
    padding: 80px 0;
    background: rgba(209, 137, 75, 0.03);
}

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

.pillar-card {
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid #D1894B;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #e09555;
    transform: translateY(-4px);
}

.pillar-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #D1894B;
    color: #0a0a14;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.pillar-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.pillar-description {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Stage Sections */
.vetting-stage {
    padding: 80px 0;
}

.vetting-stage:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.stage-content {
    max-width: 900px;
    margin: 0 auto;
}

.stage-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.stage-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #D1894B;
    color: #0a0a14;
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stage-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.stage-description p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.stage-description strong {
    color: #D1894B;
    font-weight: 600;
}

.stage-checklist {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
}

.stage-checklist li {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 0 12px 40px;
    position: relative;
}

.stage-checklist li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #D1894B;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Comparison Table */
.vetting-comparison {
    padding: 80px 0;
    background: rgba(209, 137, 75, 0.05);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead {
    background: rgba(209, 137, 75, 0.15);
}

.comparison-table th {
    padding: 20px 16px;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 2px solid rgba(209, 137, 75, 0.3);
}

.comparison-table td {
    padding: 20px 16px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table .feature-name {
    font-weight: 600;
    color: #ffffff;
}

.comparison-table .highlight-col {
    background: rgba(209, 137, 75, 0.1);
    color: #ffffff;
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* DIY Comparison Section */
.diy-comparison-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.diy-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.diy-column,
.mavric-column {
    padding: 48px 40px;
    border-radius: 8px;
    text-align: center;
}

.diy-column {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mavric-column {
    background: rgba(209, 137, 75, 0.1);
    border: 2px solid #D1894B;
}

.diy-title,
.mavric-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.diy-title {
    color: rgba(255, 255, 255, 0.6);
}

.mavric-title {
    color: #D1894B;
}

.diy-description,
.mavric-description {
    font-size: 1.0625rem;
    line-height: 1.7;
}

.diy-description {
    color: rgba(255, 255, 255, 0.6);
}

.mavric-description {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.vetting-cta {
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .vetting-hero .hero-title { font-size: 1.25rem; }
    .vetting-hero .hero-headline { font-size: 2.25rem; }
    .vetting-hero .hero-subtitle { font-size: 1.0625rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-transparent { width: 100%; max-width: 300px; text-align: center; }
    .vetting-stats .section-title,
    .vetting-comparison .section-title,
    .diy-comparison-section .section-title { font-size: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-number { font-size: 2.5rem; }
    .problem-content p { font-size: 1.0625rem; }
    .pillars-grid { grid-template-columns: 1fr; gap: 32px; }
    .pillar-title { font-size: 1.5rem; }
    .stage-header { flex-direction: column; align-items: flex-start; }
    .stage-number { width: 60px; height: 60px; font-size: 2rem; }
    .stage-title { font-size: 1.75rem; }
    .stage-description p { font-size: 1rem; }
    .comparison-table { font-size: 0.875rem; }
    .comparison-table th, .comparison-table td { padding: 12px 8px; }
    .diy-comparison-grid { grid-template-columns: 1fr; gap: 32px; }
    .diy-column, .mavric-column { padding: 32px 24px; }
    .diy-title, .mavric-title { font-size: 1.5rem; }
    .cta-title { font-size: 2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn-primary,
    .cta-buttons .btn-transparent { width: 100%; max-width: 300px; text-align: center; }
}

@media (max-width: 480px) {
    .vetting-hero .hero-title { font-size: 1.125rem; }
    .vetting-hero .hero-headline { font-size: 1.875rem; }
    .vetting-hero { padding: 80px 0 60px; }
    .vetting-stats, .problem-section, .pillars-section,
    .vetting-stage, .vetting-comparison,
    .diy-comparison-section, .vetting-cta { padding: 60px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .pillars-grid { gap: 24px; }
    .pillar-card { padding: 32px 24px; }
    .diy-comparison-grid { gap: 24px; }
}

/* ========================================
   LEADERSHIP TEAM SECTION (About Us)
   Toptal-style vertical cards
   ======================================== */

.leadership-team-section {
    padding-top: 48px;
    border-top: 1px solid #1e1e1e1a;
}

.leadership-heading {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #000;
    text-align: center;
    margin-bottom: 48px;
}

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

.leadership-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

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

.leadership-photo {
    width: 100%;
    aspect-ratio: 3 / 3.2;
    overflow: hidden;
    background: #e5e7eb;
}

.leadership-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.leadership-card:hover .leadership-photo img {
    filter: grayscale(0%);
}

.leadership-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.leadership-info h3 {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.3px;
    color: #000;
    margin: 0;
}

.leadership-info h4 {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.05px;
    text-transform: uppercase;
    color: #D1894B;
    margin: 0 0 8px 0;
}

.leadership-info p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -0.1px;
    color: #00000080;
    margin: 0;
}

/* Responsive: 2 columns on tablet */
@media (max-width: 992px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .leadership-heading {
        font-size: 30px;
    }
}

/* Responsive: 1 column on mobile */
@media (max-width: 576px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .leadership-heading {
        font-size: 26px;
        margin-bottom: 32px;
    }
}
