/* ==========================================================================
   iBCSCorp Master Stylesheet (Trade Marketing & Partnership Program)
   Extends ibcscorp-css-2025.css and basic-services-layout.css
   Clean, Sharp Corporate Web Design - No Border-Radius (except FAQ cards),
   Strictly Left-Aligned or 2-Column Split Layouts
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Root CSS Variables
   -------------------------------------------------------------------------- */
:root {
  --brand-navy: #033149;
  --brand-navy-dark: #011d2c;
  --brand-red: #eb1c24;
  --brand-red-hover: #c4131a;
  --brand-blue: #2563eb;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #475569;
  --border-light: #e2e8f0;
  --border-dark: #cbd5e1;
  --bronze-badge: #b45309;
  --silver-badge: #64748b;
  --gold-badge: #d97706;
  --star-badge: #7c3aed;
}

/* --------------------------------------------------------------------------
   2. Shared Components & Brand Marks
   -------------------------------------------------------------------------- */
.brand-semicircle-icon {
  width: 38px;
  height: 38px;
  display: block;
  flex-shrink: 0;
  margin: 0 0 0.75rem 0;
}

.sub-heading-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.sub-heading-wrap .sub-heading {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   3. Header Navigation & Site Footer
   -------------------------------------------------------------------------- */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--brand-navy);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--brand-red);
}

.site-footer {
  background: var(--brand-navy-dark);
  color: #94a3b8;
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brand-red);
}

/* --------------------------------------------------------------------------
   4. Common Hero & Section Layouts
   -------------------------------------------------------------------------- */
.inner-hero {
  background-color: var(--bg-light);
  padding: 6rem 0 4rem;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  margin-top: 4rem;
}

.header-content-left {
  text-align: left;
}

.sub-heading {
  color: var(--brand-red);
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.sub-heading-text {
  color: var(--brand-navy);
  font-size: 2.65rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 1rem;
}

.subheadline-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-weight: 400;
}

.hero-text-direct {
  margin: 1.5rem 0 2rem;
}

.hero-text-direct p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.hero-text-direct p:last-child {
  margin-bottom: 0;
}

.hero-visual-right {
  position: relative;
}

.hero-img-card {
  position: relative;
  border: 1px solid var(--border-light);
  background: #ffffff;
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   5. CTA Buttons & Actions
   -------------------------------------------------------------------------- */
.banner-ctas-left {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.cta-btn-primary {
  background-color: var(--brand-red);
  color: #ffffff !important;
  border-color: var(--brand-red);
}

.cta-btn-primary:hover {
  background-color: var(--brand-red-hover);
  border-color: var(--brand-red-hover);
}

.cta-btn-secondary {
  background-color: var(--brand-navy);
  color: #ffffff !important;
  border-color: var(--brand-navy);
}

.cta-btn-secondary:hover {
  background-color: var(--brand-navy-dark);
  border-color: var(--brand-navy-dark);
}

/* --------------------------------------------------------------------------
   6. Common Section Wrappers & Titles
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 5rem 0;
}

.section-padding-alt {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.section-title-wrap {
  text-align: left;
  max-width: 800px;
  margin: 0 0 3.5rem 0;
}

.section-title-wrap .sub-heading {
  font-size: 0.875rem;
}

.section-title-wrap h2 {
  font-size: 2.25rem;
  color: var(--brand-navy);
  margin: 0.5rem 0 1rem;
  font-weight: 600;
}

.section-title-wrap p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   7. Form Controls & PrimeAgile CMS Integration
   -------------------------------------------------------------------------- */
.partner-form-card,
.hero-banner-form,
form {
  background: #ffffff;
  border: 1px solid var(--border-dark);
  border-top: 4px solid var(--brand-red);
  border-bottom: 2px solid var(--brand-navy);
  padding: 2.25rem;
  box-shadow: 0 12px 30px rgba(1, 29, 44, 0.08);
  position: relative;
  box-sizing: border-box;
}

/* Reset inner wrappers to prevent double card borders */
form div[data-primeagile-object="PARTNERS-2026-APPLICATION-FORM"],
form div[data-primeagile-object="MANAGING-DIRECTOR-APPLICATION-FORM"],
form div[data-primeagile-object="LOCATION-SEO-FORM"],
.partner-form-card div[data-primeagile-object="PARTNERS-2026-APPLICATION-FORM"],
.partner-form-card div[data-primeagile-object="MANAGING-DIRECTOR-APPLICATION-FORM"],
.partner-form-card div[data-primeagile-object="LOCATION-SEO-FORM"],
div[data-primeagile-object="LOCATION-SEO-FORM"],
form #primeagile__47309_wrap,
form #primeagile__47331_wrap,
form #primeagile__47358 {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.form-badge-tag {
  display: inline-block;
  background-color: var(--brand-navy);
  color: #ffffff;
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  margin-bottom: 0.85rem;
}

.partner-form-card h3,
div[data-primeagile-object="PARTNERS-2026-APPLICATION-FORM"] h3,
div[data-primeagile-object="MANAGING-DIRECTOR-APPLICATION-FORM"] h3,
div[data-primeagile-object="LOCATION-SEO-FORM"] h3,
#primeagile__47317 h3,
#primeagile__47424 h3 {
  color: var(--brand-navy);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0.5rem 0 0.5rem 0;
}

.partner-form-card p,
div[data-primeagile-object="PARTNERS-2026-APPLICATION-FORM"] p,
div[data-primeagile-object="MANAGING-DIRECTOR-APPLICATION-FORM"] p,
div[data-primeagile-object="LOCATION-SEO-FORM"] p,
#primeagile__47317 p,
#primeagile__47424 p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-group,
div[data-primeagile-object="PARTNERS-2026-APPLICATION-FORM"] > div:not(#primeagile__47317),
div[data-primeagile-object="MANAGING-DIRECTOR-APPLICATION-FORM"] > div:not(#primeagile__47317),
div[data-primeagile-object="LOCATION-SEO-FORM"] > div:not(#primeagile__47424),
.partner-form-card > div > div:not(#primeagile__47424):not(#primeagile__47317),
form > div > div:not(#primeagile__47317),
form > div > div:not(#primeagile__47317),
form > div > div:not(#primeagile__47424) {
  margin-bottom: 1.25rem;
}

.form-group label,
.partner-form-card label,
form label,
form label,
form label,
div[data-primeagile-object="PARTNERS-2026-APPLICATION-FORM"] label,
div[data-primeagile-object="MANAGING-DIRECTOR-APPLICATION-FORM"] label,
div[data-primeagile-object="LOCATION-SEO-FORM"] label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group label span,
.partner-form-card label span,
form label span,
form label span,
form label span,
div[data-primeagile-object="PARTNERS-2026-APPLICATION-FORM"] label span,
div[data-primeagile-object="MANAGING-DIRECTOR-APPLICATION-FORM"] label span,
div[data-primeagile-object="LOCATION-SEO-FORM"] label span {
  color: var(--brand-red);
}

.form-control,
.form-select,
.partner-form-card input,
.partner-form-card select,
form input,
form select,
form input,
form select,
form input,
form select,
div[data-primeagile-object="PARTNERS-2026-APPLICATION-FORM"] input,
div[data-primeagile-object="PARTNERS-2026-APPLICATION-FORM"] select,
div[data-primeagile-object="MANAGING-DIRECTOR-APPLICATION-FORM"] input,
div[data-primeagile-object="MANAGING-DIRECTOR-APPLICATION-FORM"] select,
div[data-primeagile-object="LOCATION-SEO-FORM"] input,
div[data-primeagile-object="LOCATION-SEO-FORM"] select {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background-color: #ffffff;
  border: 1px solid var(--border-dark);
  border-radius: 0 !important;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-control:focus,
.form-select:focus,
.partner-form-card input:focus,
.partner-form-card select:focus,
form input:focus,
form select:focus,
form input:focus,
form select:focus,
form input:focus,
form select:focus,
div[data-primeagile-object="PARTNERS-2026-APPLICATION-FORM"] input:focus,
div[data-primeagile-object="PARTNERS-2026-APPLICATION-FORM"] select:focus,
div[data-primeagile-object="MANAGING-DIRECTOR-APPLICATION-FORM"] input:focus,
div[data-primeagile-object="MANAGING-DIRECTOR-APPLICATION-FORM"] select:focus,
div[data-primeagile-object="LOCATION-SEO-FORM"] input:focus,
div[data-primeagile-object="LOCATION-SEO-FORM"] select:focus {
  outline: none;
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 3px rgba(3, 49, 73, 0.15);
}

button[type="submit"]#primeagile__47319,
button[type="submit"]#primeagile__47362,
button[type="submit"]#primeagile__48112,
.partner-form-card button[type="submit"],
.partner-form-card button,
form button[type="submit"],
form button[type="submit"],
form button[type="submit"],
form#primeagile__48107 button[type="submit"],
div[data-primeagile-object="PARTNERS-2026-APPLICATION-FORM"] button,
div[data-primeagile-object="MANAGING-DIRECTOR-APPLICATION-FORM"] button,
div[data-primeagile-object="LOCATION-SEO-FORM"] button,
div[data-primeagile-object="RMARKETING-CONTACT-FORM"] button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 2.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background-color: var(--brand-red);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  margin-top: 0.75rem;
  box-sizing: border-box;
}

button[type="submit"]#primeagile__47319:hover,
button[type="submit"]#primeagile__47362:hover,
button[type="submit"]#primeagile__48112:hover,
.partner-form-card button[type="submit"]:hover,
.partner-form-card button:hover,
form button[type="submit"]:hover,
form button[type="submit"]:hover,
form button[type="submit"]:hover,
form#primeagile__48107 button[type="submit"]:hover,
div[data-primeagile-object="PARTNERS-2026-APPLICATION-FORM"] button:hover,
div[data-primeagile-object="MANAGING-DIRECTOR-APPLICATION-FORM"] button:hover,
div[data-primeagile-object="LOCATION-SEO-FORM"] button:hover,
div[data-primeagile-object="RMARKETING-CONTACT-FORM"] button:hover {
  background-color: var(--brand-red-hover);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   8. Trade Marketing Components
   -------------------------------------------------------------------------- */
/* Value Proposition Split */
.value-prop-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.value-prop-box {
  background: #ffffff;
  padding: 2.5rem;
  border-left: 4px solid var(--brand-navy);
  border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* Services Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
}

.capability-clean-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: transparent;
  border: none;
}

.capability-card-img-wrap {
  height: 220px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-light);
}

.capability-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.capability-clean-item:hover .capability-card-img-wrap img {
  opacity: 0.92;
}

.capability-title {
  font-size: 1.45rem;
  color: var(--brand-navy);
  font-family: "Poppins", sans-serif;
  margin: 0 0 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.capability-description {
  color: var(--text-muted);
  font-size: 0.985rem;
  line-height: 1.65;
  margin: 0 0 1.75rem;
  flex-grow: 1;
}

.capability-divider {
  border: 0;
  height: 1px;
  background-color: #e2e8f0;
  margin: auto 0 0 0;
  width: 100%;
}

/* Industries We Serve Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.industry-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}

.industry-card:hover {
  border-color: var(--brand-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(3, 49, 73, 0.08);
}

.check-icon-badge {
  width: 28px;
  height: 28px;
  background-color: var(--brand-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.industry-card-content h3 {
  font-size: 1.15rem;
  color: var(--brand-navy);
  margin: 0 0 0.4rem;
  font-weight: 600;
}

.industry-card-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #ffffff;
  padding: 2rem;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--brand-navy);
  position: relative;
  transition: border-color 0.2s ease;
  text-align: left;
}

.feature-card:hover {
  border-top-color: var(--brand-red);
}

.feature-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 0.5rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--brand-navy);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.975rem;
}

/* Process Section */
.process-section {
  background-color: var(--brand-navy);
  color: #ffffff;
  padding: 5rem 0;
  text-align: left;
}

.process-section .sub-heading {
  color: #93c5fd;
}

.process-section h2 {
  color: #ffffff;
}

.process-section p {
  color: #cbd5e1;
}

.process-chain {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 3rem 0;
}

.process-step {
  background: var(--brand-navy-dark);
  border: 1px solid #1e3a5f;
  padding: 0.9rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.process-step:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
}

.process-arrow {
  color: var(--brand-red);
  font-size: 1.25rem;
  font-weight: bold;
}

.process-description-box {
  background: var(--brand-navy-dark);
  padding: 2rem;
  max-width: 100%;
  margin: 0;
  border: 1px solid #1e3a5f;
  border-left: 4px solid var(--brand-red);
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Side-by-Side FAQ Section (Trade Marketing) */
.faq-section {
  padding: 5rem 0;
}

.faq-split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  text-align: left;
}

.faq-item details summary {
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  text-align: left;
}

.faq-item details summary::-webkit-details-marker {
  display: none;
}

.faq-item details summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--brand-red);
  font-weight: 700;
}

.faq-item details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  border-top: 1px dashed var(--border-light);
  margin-top: 0.5rem;
  padding-top: 1rem;
  text-align: left;
}

/* Bottom CTA Banner */
.bottom-cta-banner {
  background:
    linear-gradient(rgba(3, 49, 73, 0.95), rgba(3, 49, 73, 0.95)),
    url("./images/growth-bg.webp") center/cover no-repeat;
  color: #ffffff;
  padding: 5rem 0;
  text-align: left;
}

.bottom-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.bottom-cta-banner h2 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
}

.bottom-cta-banner p {
  font-size: 1.1rem;
  margin: 0 0 1rem;
  color: #cbd5e1;
  text-align: left;
}

.bottom-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.bottom-cta-actions .cta-btn {
  width: 100%;
  text-align: center;
}

/* --------------------------------------------------------------------------
   9. Partnership Program Components
   -------------------------------------------------------------------------- */
/* Hero Metrics Cards */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.metric-card {
  background: #ffffff;
  border-left: 3px solid var(--brand-navy);
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.metric-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.2;
}

.metric-label {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Path to Managing Director */
.path-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.path-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--brand-navy);
  padding: 2rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

a.path-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(3, 49, 73, 0.12);
}

.path-card.featured {
  border-left-color: var(--brand-red);
  background: #fdfbfb;
}

a.path-card.featured:hover {
  border-left-color: var(--brand-red);
  border-color: var(--brand-red);
}

.path-step-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  background-color: var(--brand-navy);
  margin-bottom: 1rem;
}

.path-card.featured .path-step-badge {
  background-color: var(--brand-red);
}

.path-card h3 {
  font-size: 1.4rem;
  color: var(--brand-navy);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.path-card p {
  color: var(--text-dark);
  line-height: 1.65;
  font-size: 0.975rem;
}

/* Commission Breakdown Table */
.commission-table-wrap {
  overflow-x: auto;
  margin: 2rem 0 1rem 0;
  border: 1px solid var(--border-dark);
}

.commission-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.commission-table th {
  background-color: var(--brand-navy);
  color: #ffffff;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.825rem;
  letter-spacing: 0.5px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.commission-table th:last-child {
  border-right: none;
}

.commission-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  color: var(--text-dark);
}

.commission-table td:last-child {
  border-right: none;
}

.commission-table tbody tr:nth-child(even) {
  background-color: var(--bg-light);
}

.commission-table tbody tr:hover {
  background-color: #f1f5f9;
}

.tier-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.tier-bronze {
  background-color: var(--bronze-badge);
}
.tier-silver {
  background-color: var(--silver-badge);
}
.tier-gold {
  background-color: var(--gold-badge);
}
.tier-star {
  background-color: var(--star-badge);
}

.platform-note-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--brand-blue);
  padding: 1.25rem 1.5rem;
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

/* 4 Ways to Partner Grid */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.track-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

a.track-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.track-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(3, 49, 73, 0.12);
}

.track-card.recommended {
  border-top: 4px solid var(--brand-red);
}

a.track-card.recommended:hover {
  border-top-color: var(--brand-red);
}

.track-header {
  margin-bottom: 1.25rem;
}

.track-number {
  color: var(--brand-red);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
}

.track-card h3 {
  font-size: 1.35rem;
  color: var(--brand-navy);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.track-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.track-details {
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
  margin-top: auto;
}

.track-detail-item {
  margin-bottom: 0.85rem;
  font-size: 0.925rem;
  line-height: 1.55;
}

.track-detail-item strong {
  color: var(--brand-navy);
}

.track-payout-box {
  background-color: #f8fafc;
  border-left: 3px solid var(--brand-navy);
  padding: 0.85rem 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Key Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--brand-navy);
  padding: 2rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  color: var(--brand-navy);
  font-weight: 700;
  margin: 0 0 0.85rem 0;
}

.benefit-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Signature Circular Arrow FAQ Accordion (iBCScorp Design) */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 980px;
  margin: 2.5rem auto 0;
}

.faq-accordion-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 18px rgba(3, 49, 73, 0.04);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-accordion-item[open] {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(3, 49, 73, 0.07);
}

.faq-accordion-summary {
  padding: 1.4rem 2rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-accordion-summary::-webkit-details-marker {
  display: none;
}

.faq-accordion-summary::after {
  content: "↘";
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--brand-navy);
  color: var(--brand-red);
  flex-shrink: 0;
  margin-left: 1.5rem;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease;
}

.faq-accordion-item[open] .faq-accordion-summary {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1.25rem;
}

.faq-accordion-item[open] .faq-accordion-summary::after {
  content: "↓";
  transform: rotate(0deg);
  background-color: var(--brand-navy);
  color: var(--brand-red);
}

.faq-accordion-body {
  padding: 1.75rem 2.5rem;
  color: var(--text-dark);
  font-size: 1.025rem;
  line-height: 1.75;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.faq-accordion-body p {
  margin: 0 0 1rem 0;
}

.faq-accordion-body p:last-child {
  margin-bottom: 0;
}

.faq-accordion-body ul {
  text-align: left;
  margin: 1rem auto;
  max-width: 780px;
  padding-left: 1.5rem;
}

.faq-accordion-body li {
  font-size: 0.975rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   10. Comparison Matrices, Case Studies & Hotlines
   -------------------------------------------------------------------------- */
/* Opportunity Cost Comparison Matrix */
.comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.comparison-column {
  background: #ffffff;
  border: 1px solid var(--border-dark);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.comparison-column.gain-column {
  border-top: 5px solid #16a34a;
  background: #fcfdfc;
}

.comparison-column.cost-column {
  border-top: 5px solid var(--brand-red);
  background: #fffafa;
}

.comparison-column-header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.comparison-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  margin-bottom: 0.75rem;
}

.comparison-tag.tag-gain {
  background-color: #dcfce7;
  color: #15803d;
}

.comparison-tag.tag-cost {
  background-color: #fee2e2;
  color: #b91c1c;
}

.comparison-column h3 {
  font-size: 1.6rem;
  color: var(--brand-navy);
  font-weight: 700;
  margin: 0;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-dark);
}

.comparison-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  margin-top: 2px;
}

.comparison-icon.icon-check {
  background-color: #dcfce7;
  color: #15803d;
}

.comparison-icon.icon-cross {
  background-color: #fee2e2;
  color: #b91c1c;
}

/* Case Study & Performance Snapshot */
.case-study-card {
  background: var(--brand-navy);
  color: #ffffff;
  padding: 3.5rem;
  border-left: 6px solid var(--brand-red);
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}

.case-study-header {
  max-width: 800px;
  margin-bottom: 2.5rem;
}

.case-study-tag {
  display: inline-block;
  background-color: var(--brand-red);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
}

.case-study-card h3 {
  font-size: 2.1rem;
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.25;
}

.case-study-card p.case-lead {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.65;
}

.case-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.case-metric-box {
  background: rgba(1, 29, 44, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem 1.75rem;
  text-align: left;
  border-top: 3px solid #93c5fd;
  transition: transform 0.2s ease, border-top-color 0.2s ease;
}

.case-metric-box:hover {
  border-top-color: var(--brand-red);
  transform: translateY(-3px);
}

.case-metric-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: "Spartan", "Poppins", sans-serif;
}

.case-metric-num span {
  color: var(--brand-red);
  font-size: 2rem;
}

.case-metric-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #93c5fd;
  margin-bottom: 0.5rem;
}

.case-metric-desc {
  font-size: 0.925rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.5;
}

.case-proof-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.case-proof-item {
  background: rgba(1, 29, 44, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.case-proof-item:hover {
  border-color: var(--brand-red);
  transform: translateY(-2px);
}

.proof-img-frame {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.case-proof-item:hover .proof-img-frame img {
  transform: scale(1.02);
}

.proof-caption {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
  text-align: left;
  line-height: 1.4;
}

.case-study-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.total-actions-badge {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.total-actions-badge span {
  color: #fca5a5;
  font-size: 1.45rem;
}

/* Phone Hotline Box */
.phone-hotline-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1.25rem 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: left;
}

.phone-hotline-box a {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.phone-hotline-box a:hover {
  color: #fca5a5;
}

/* --------------------------------------------------------------------------
   11. Global Responsive & Breakpoint Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .tracks-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .path-container {
    grid-template-columns: 1fr;
  }
  .case-metrics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid,
  .value-prop-split,
  .faq-split-grid,
  .bottom-cta-grid,
  .comparison-container,
  .case-proof-gallery {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .process-chain {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .sub-heading-text {
    font-size: 2.1rem;
  }
  .section-title-wrap h2 {
    font-size: 1.75rem;
  }
  .industries-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  .process-chain {
    flex-direction: column;
  }
  .process-arrow {
    transform: rotate(90deg);
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .partner-form-card {
    padding: 1.5rem;
  }
  .case-study-card {
    padding: 2rem 1.5rem;
  }
  .case-study-card h3 {
    font-size: 1.65rem;
  }
}
