/* RIA shared styles
   Used by the main RIA landing page (#ria-page)
   and all RIA industry pages (#ria-industry-page).
*/
:root {
    --navy: #0a1f3d;
    --navy-deep: #061429;
    --navy-mid: #142a4f;
    --gold: #3FC1B0;
    --gold-bright: #5DD3C3;
    --off-white: #f4f1ea;
    --paper: #faf8f3;
    --text-dark: #1a2942;
    --text-muted: #5a6b85;
    --text-light: #9ba9bd;
    --accent-red: #c84a4a;
    --border-light: rgba(10, 31, 61, 0.1);
    --border-dark: rgba(255, 255, 255, 0.08);
  }

#ria-page * {
box-sizing: border-box;
}

#ria-page {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui, sans-serif;
  background: var(--paper);
  color: var(--text-dark);
  line-height: 1.6;
}

#ria-page {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui, sans-serif;
    background: var(--paper);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

#ria-page .container {
max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== TOP STATUS BAR ===== */

#ria-page .status-bar {
background: var(--navy-deep);
    color: var(--off-white);
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--gold);
}

#ria-page .status-bar .container {
display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

#ria-page .status-item {
display: flex;
    align-items: center;
    gap: 8px;
}

#ria-page .status-dot {
width: 8px;
    height: 8px;
    background: var(--gold-bright);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

/* ===== HERO ===== */

#ria-page .hero {
background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
    color: var(--off-white);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

#ria-page .hero::before {
content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(63, 193, 176, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

#ria-page .hero-inner {
position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

#ria-page .eyebrow {
display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 24px;
}

#ria-page .eyebrow::before {
content: "";
    width: 32px;
    height: 1px;
    background: var(--gold-bright);
}

#ria-page .hero h1 {
font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--off-white);
}

#ria-page .hero h1 .accent {
color: var(--gold-bright);
    display: block;
}

#ria-page .hero-sub {
font-size: 18px;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 540px;
}

/* ===== SIGNUP FORM CARD ===== */

#ria-page .signup-card {
background: var(--paper);
    color: var(--text-dark);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#ria-page .signup-card h2 {
font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

#ria-page .signup-card .form-sub {
font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

#ria-page .form-group {
margin-bottom: 16px;
}

#ria-page .form-group label {
display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

#ria-page .form-group input, #ria-page .form-group select {
width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background: white;
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

#ria-page .form-group input:focus, #ria-page .form-group select:focus {
outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(63, 193, 176, 0.15);
}

#ria-page .form-row {
display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

#ria-page .role-toggle {
display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

#ria-page .role-option {
padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: white;
    transition: all 0.2s;
    user-select: none;
}

#ria-page .role-option.active {
background: var(--navy);
    color: var(--off-white);
    border-color: var(--navy);
}

#ria-page .role-option:hover:not(.active) {
border-color: var(--gold);
}

#ria-page .submit-btn {
width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--navy-deep);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 8px;
}

#ria-page .submit-btn:hover {
background: var(--gold-bright);
}

#ria-page .submit-btn:active {
transform: translateY(1px);
}

#ria-page .form-fine-print {
margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

/* ===== SECONDARY CTA STRIP ===== */

#ria-page .secondary-cta-strip {
background: var(--navy-mid);
    color: var(--off-white);
    padding: 20px 0;
    border-top: 1px solid var(--border-dark);
}

#ria-page .secondary-cta-inner {
display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

#ria-page .secondary-cta-text {
font-size: 15px;
}

#ria-page .secondary-cta-text strong {
color: var(--gold-bright);
}

#ria-page .secondary-cta-btn {
display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: var(--off-white);
    border: 1px solid var(--gold);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

#ria-page .secondary-cta-btn:hover {
background: var(--gold);
    color: var(--navy-deep);
}

/* ===== SECTIONS ===== */

#ria-page section.content {
padding: 100px 0;
    border-bottom: 1px solid var(--border-light);
}

#ria-page .section-header {
text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

#ria-page .section-eyebrow {
font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

#ria-page .section-header h2 {
font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text-dark);
}

#ria-page .section-header p {
color: var(--text-muted);
    font-size: 17px;
}

/* ===== TIMELINE ===== */

#ria-page .timeline {
display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

#ria-page .timeline::before {
content: "";
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 50%, var(--accent-red) 100%);
    z-index: 0;
}

#ria-page .timeline-item {
text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 16px;
}

#ria-page .timeline-dot {
width: 56px;
    height: 56px;
    background: var(--paper);
    border: 3px solid var(--gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-weight: 700;
    font-size: 18px;
}

#ria-page .timeline-item:last-child .timeline-dot {
border-color: var(--accent-red);
}

#ria-page .timeline-date {
font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

#ria-page .timeline-label {
font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#ria-page .timeline-desc {
font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== INDUSTRIES ===== */

#ria-page .industries-grid {
display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

#ria-page .industry-card {
display: block;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    position: relative;
}

#ria-page .industry-card:hover {
border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 31, 61, 0.08);
}

#ria-page .industry-card:hover .industry-card-link {
color: var(--gold-bright);
    gap: 8px;
}

#ria-page .industry-icon {
width: 36px;
    height: 36px;
    margin-bottom: 16px;
    color: var(--navy);
}

#ria-page .industry-card h3 {
font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

#ria-page .industry-card p {
font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
      margin-bottom: 12px;
}

#ria-page .industry-card-link {
display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.2s, color 0.2s;
}

/* ===== PROGRAM STRUCTURE (dark band) ===== */

#ria-page .program-section {
background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--off-white);
}

#ria-page .program-section .section-header h2 {
color: var(--off-white);
}

#ria-page .program-section .section-header p {
color: var(--text-light);
}

#ria-page .stats-row {
display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
    text-align: center;
}

#ria-page .stat-num {
font-size: 72px;
    font-weight: 700;
    color: var(--gold-bright);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

#ria-page .stat-label {
font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
}

#ria-page .modules-grid {
display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

#ria-page .module-row {
display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
}

#ria-page .module-num {
font-size: 13px;
    font-weight: 700;
    color: var(--gold-bright);
    letter-spacing: 1px;
    flex-shrink: 0;
    width: 32px;
}

#ria-page .module-name {
font-size: 15px;
    font-weight: 500;
}

/* ===== INSIDE THE TRAINING PREVIEW ===== */

#ria-page .training-preview {
display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

#ria-page .preview-block {
display: flex;
    flex-direction: column;
}

#ria-page .preview-label {
font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

#ria-page .preview-block h3 {
font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

#ria-page .preview-block p.preview-desc {
color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

#ria-page .convo-pair {
display: flex;
    flex-direction: column;
    gap: 12px;
}

#ria-page .convo-box {
background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

#ria-page .convo-box .convo-hdr {
padding: 10px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#ria-page .convo-box.good .convo-hdr {
background: rgba(63, 193, 176, 0.12);
    color: var(--gold);
    border-bottom: 1px solid rgba(63, 193, 176, 0.3);
}

#ria-page .convo-box.bad .convo-hdr {
background: rgba(200, 74, 74, 0.08);
    color: var(--accent-red);
    border-bottom: 1px solid rgba(200, 74, 74, 0.2);
}

#ria-page .convo-box .convo-bod {
padding: 18px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
}

#ria-page .scenario-preview {
background: var(--navy-deep);
    color: var(--off-white);
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#ria-page .scenario-preview .preview-label {
color: var(--gold-bright);
    margin-bottom: 12px;
}

#ria-page .scenario-preview h3 {
color: var(--off-white);
    margin-bottom: 16px;
}

#ria-page .scenario-quote {
color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--gold-bright);
    font-style: italic;
}

#ria-page .scenario-pick {
padding: 12px 14px;
    margin-bottom: 8px;
    background: rgba(63, 193, 176, 0.08);
    border: 1px solid rgba(63, 193, 176, 0.4);
    border-radius: 6px;
    font-size: 14px;
    color: var(--off-white);
    line-height: 1.5;
    display: flex;
    gap: 10px;
}

#ria-page .scenario-pick .pick-letter {
color: var(--gold-bright);
    font-weight: 700;
    flex-shrink: 0;
}

#ria-page .scenario-explain {
color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
    margin-top: 8px;
}

#ria-page .preview-link {
margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

#ria-page .preview-link a {
color: var(--gold);
    font-weight: 600;
}

#ria-page .preview-link a:hover {
color: var(--gold-bright);
}

/* ===== SCOPE NOTE BLOCK ===== */

#ria-page .scope-note-block {
background: white;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 28px 36px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

#ria-page .scope-note-icon {
width: 36px;
    height: 36px;
    background: rgba(63, 193, 176, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

#ria-page .scope-note-icon svg {
width: 20px;
    height: 20px;
}

#ria-page .scope-note-content h3 {
font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

#ria-page .scope-note-content p {
font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

#ria-page .scope-note-content p:last-child {
margin-bottom: 0;
}

/* ===== ACCREDITATION STATUS BLOCK ===== */

#ria-page .accreditation-block {
background: white;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 32px 40px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

#ria-page .accreditation-icon {
width: 44px;
    height: 44px;
    background: rgba(63, 193, 176, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

#ria-page .accreditation-icon svg {
width: 22px;
    height: 22px;
}

#ria-page .accreditation-block h3 {
font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

#ria-page .accreditation-block p {
font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== FAQ ===== */

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

#ria-page .faq-item {
border-bottom: 1px solid var(--border-light);
}

#ria-page .faq-question {
padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 17px;
    color: var(--text-dark);
    user-select: none;
    list-style: none;
}

#ria-page .faq-question::-webkit-details-marker {
display: none;
}

#ria-page .faq-question::after {
content: "+";
    font-size: 24px;
    color: var(--gold);
    font-weight: 400;
    transition: transform 0.2s;
}

#ria-page details[open] .faq-question::after {
content: "−";
}

#ria-page .faq-answer {
padding: 0 0 24px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== CLOSING CTA ===== */

#ria-page .closing-cta {
background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--off-white);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#ria-page .closing-cta::before {
content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(63, 193, 176, 0.1) 0%, transparent 60%);
}

#ria-page .closing-cta-inner {
position: relative;
    z-index: 1;
}

#ria-page .closing-cta h2 {
font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--off-white);
    text-align: center;
}

#ria-page .closing-cta h2 .accent {
color: var(--gold-bright);
}

#ria-page .closing-sub {
font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#ria-page .closing-buttons {
display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

#ria-page .btn-primary, #ria-page .btn-ghost {
padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    border: none;
}

#ria-page .btn-primary {
background: var(--gold);
    color: var(--navy-deep);
}

#ria-page .btn-primary:hover {
background: var(--gold-bright);
    transform: translateY(-2px);
}

#ria-page .btn-ghost {
background: transparent;
    color: var(--off-white);
    border: 1px solid var(--border-dark);
}

#ria-page .btn-ghost:hover {
border-color: var(--gold-bright);
    color: var(--gold-bright);
}

/* ===== FOOTER ===== */

#ria-page .footer {
background: var(--navy-deep);
    color: var(--text-light);
    padding: 32px 0;
    text-align: center;
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  #ria-page .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  #ria-page .industries-grid { grid-template-columns: repeat(2, 1fr); }
  #ria-page .timeline { grid-template-columns: 1fr; gap: 40px; }
  #ria-page .timeline::before { display: none; }
  #ria-page .stats-row { grid-template-columns: 1fr; gap: 32px; }
  #ria-page .training-preview { grid-template-columns: 1fr; }
  #ria-page .modules-grid { grid-template-columns: 1fr; }
  #ria-page .accreditation-block { flex-direction: column; gap: 16px; padding: 28px; }
  #ria-page .scope-note-block { flex-direction: column; gap: 16px; padding: 24px; }
  #ria-page .form-row { grid-template-columns: 1fr; }
}

/* Ninja Forms inside RIA signup card */

#ria-page .signup-card .nf-before-form-content {
display: none;
}

#ria-page .signup-card .nf-form-content {
padding: 0 !important;
  margin: 0 !important;
}

#ria-page .signup-card .nf-field-container {
margin-bottom: 16px !important;
}

#ria-page .signup-card .one-half {
width: calc(50% - 6px) !important;
  float: left;
  margin-left: 12px !important;
}

#ria-page .signup-card .one-half.first {
margin-left: 0 !important;
  clear: both;
}

#ria-page .signup-card .email-container, #ria-page .signup-card .textbox-container, #ria-page .signup-card .listselect-container, #ria-page .signup-card .submit-container {
width: 100% !important;
  clear: both;
  float: none !important;
  margin-left: 0 !important;
}

#ria-page .signup-card .nf-field-label label {
display: block;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  margin-bottom: 6px !important;
}

#ria-page .signup-card .ninja-forms-req-symbol {
color: var(--accent-red);
}

#ria-page .signup-card input[type="text"], #ria-page .signup-card input[type="email"], #ria-page .signup-card select {
width: 100% !important;
  height: auto !important;
  padding: 12px 14px !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 6px !important;
  font-size: 15px !important;
  font-family: inherit !important;
  background: white !important;
  color: var(--text-dark) !important;
  box-shadow: none !important;
}

#ria-page .signup-card input:focus, #ria-page .signup-card select:focus {
outline: none !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(63, 193, 176, 0.15) !important;
}

#ria-page .signup-card .submit-container input[type="submit"] {
width: 100% !important;
  padding: 16px !important;
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer;
  margin-top: 8px !important;
}

#ria-page .signup-card .submit-container input[type="submit"]:hover {
background: var(--gold-bright) !important;
}

#ria-page .signup-card::after, #ria-page .signup-card .nf-form-content::after {
content: "";
  display: table;
  clear: both;
}

#ria-page .signup-card .nf-after-form-content {
margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 600px) {
  #ria-page .signup-card .one-half, #ria-page .signup-card .one-half.first { width: 100% !important;
    float: none !important;
    margin-left: 0 !important; }
}

#ria-page .ria-success {
background: rgba(63,193,176,.12);
    border-left: 4px solid #3FC1B0;
    padding: 18px 20px;
    margin-top: 20px;
    border-radius: 6px;
    color: #0a1f3d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

#ria-page .ria-success strong {
display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0a1f3d;
}

/* ===== INDUSTRY PAGE STYLES ===== */

#ria-industry-page * { margin: 0; padding: 0; box-sizing: border-box; }
#ria-industry-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui, sans-serif;
    background: var(--paper);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
#ria-industry-page a { color: var(--gold); text-decoration: none; }
#ria-industry-page a:hover { color: var(--gold-bright); }
#ria-industry-page .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
  }
#ria-industry-page /* ===== BREADCRUMB ===== */
  .breadcrumb-bar {
    background: var(--paper);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 13px;
    color: var(--text-muted);
  }
#ria-industry-page .breadcrumb-bar a { color: var(--text-muted); }
#ria-industry-page .breadcrumb-bar a:hover { color: var(--gold); }
#ria-industry-page .breadcrumb-bar .sep { margin: 0 8px; opacity: 0.5; }
#ria-industry-page /* ===== HERO ===== */
  .hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
    color: var(--off-white);
    padding: 64px 0 80px;
    position: relative;
    overflow: hidden;
  }
#ria-industry-page .hero::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(63, 193, 176, 0.1) 0%, transparent 60%);
    pointer-events: none;
  }
#ria-industry-page .hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
  }
#ria-industry-page .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 20px;
  }
#ria-industry-page .eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold-bright);
  }
#ria-industry-page .hero h1 {
    color:#fff;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
#ria-industry-page .hero h1 .accent { color: var(--gold-bright); }
#ria-industry-page .hero-sub {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
  }
#ria-industry-page .industry-emblem {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    background: rgba(63, 193, 176, 0.12);
    border: 1px solid rgba(63, 193, 176, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    flex-shrink: 0;
  }
#ria-industry-page .industry-emblem svg { width: 56px; height: 56px; }
#ria-industry-page /* ===== SECTIONS ===== */
  section {
    padding: 64px 0;
    border-bottom: 1px solid var(--border-light);
  }
#ria-industry-page section.alt { background: white; }
#ria-industry-page h2 {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text-dark);
  }
#ria-industry-page h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
  }
#ria-industry-page .lead {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 760px;
  }
#ria-industry-page /* ===== PRODUCTS COVERED ===== */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
  }
#ria-industry-page .product-card {
    background: white;
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--gold);
    border-radius: 8px;
    padding: 28px;
  }
#ria-industry-page .product-card .module-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 8px;
    text-transform: uppercase;
  }
#ria-industry-page .product-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }
#ria-industry-page .product-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
  }
#ria-industry-page /* ===== WHAT THE TRAINING PREPARES YOUR TEAM FOR (combined customer profile + risks) ===== */
  .preparation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
  }
#ria-industry-page .prep-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 28px;
  }
#ria-industry-page .prep-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }
#ria-industry-page .prep-card ul {
    list-style: none;
  }
#ria-industry-page .prep-card li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
  }
#ria-industry-page .prep-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    top: 6px;
  }
#ria-industry-page /* ===== TRAINING SCOPE ===== */
  .scope-table {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 24px;
  }
#ria-industry-page .scope-row {
    display: grid;
    grid-template-columns: 80px 1.2fr 2fr;
    border-bottom: 1px solid var(--border-light);
  }
#ria-industry-page .scope-row:last-child {
    border-bottom: none;
  }
#ria-industry-page .scope-row > div {
    padding: 18px 20px;
  }
#ria-industry-page .scope-num {
    background: var(--paper);
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border-light);
  }
#ria-industry-page .scope-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border-light);
  }
#ria-industry-page .scope-detail {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
  }
#ria-industry-page .scope-extra {
    background: var(--paper);
    padding: 16px 20px;
    font-size: 13px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
    font-style: italic;
  }
#ria-industry-page /* ===== SAY THIS / DON'T SAY THIS ===== */
  .conversation-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
  }
#ria-industry-page .convo-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
  }
#ria-industry-page .convo-header {
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
#ria-industry-page .convo-card.good .convo-header {
    background: rgba(63, 193, 176, 0.12);
    color: var(--gold);
    border-bottom: 1px solid rgba(63, 193, 176, 0.3);
  }
#ria-industry-page .convo-card.bad .convo-header {
    background: rgba(200, 74, 74, 0.08);
    color: var(--accent-red);
    border-bottom: 1px solid rgba(200, 74, 74, 0.2);
  }
#ria-industry-page .convo-body {
    padding: 24px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
  }
#ria-industry-page /* ===== SCENARIO ===== */
  .scenario {
    background: var(--navy-deep);
    color: var(--off-white);
    padding: 40px;
    border-radius: 12px;
    margin-top: 32px;
  }
#ria-industry-page .scenario-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 16px;
  }
#ria-industry-page .scenario h3 {
    color: var(--off-white);
    font-size: 22px;
    margin-bottom: 16px;
  }
#ria-industry-page .scenario-prompt {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--gold-bright);
    font-style: italic;
  }
#ria-industry-page .scenario-options {
    list-style: none;
    margin-bottom: 24px;
  }
#ria-industry-page .scenario-options li {
    padding: 12px 16px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
#ria-industry-page .scenario-options li.correct {
    background: rgba(63, 193, 176, 0.08);
    border-color: rgba(63, 193, 176, 0.4);
    color: var(--off-white);
  }
#ria-industry-page .scenario-options .opt-letter {
    font-weight: 700;
    color: var(--gold-bright);
    flex-shrink: 0;
    min-width: 20px;
  }
#ria-industry-page .scenario-answer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
#ria-industry-page .scenario-answer .answer-label {
    color: var(--gold-bright);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
#ria-industry-page .scenario-answer p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
  }
#ria-industry-page /* ===== FAQ ===== */
  .faq-list {
    max-width: 800px;
    margin-top: 24px;
  }
#ria-industry-page .faq-item {
    border-bottom: 1px solid var(--border-light);
  }
#ria-industry-page .faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    user-select: none;
    list-style: none;
  }
#ria-industry-page .faq-question::-webkit-details-marker { display: none; }
#ria-industry-page .faq-question::after {
    content: "+";
    font-size: 22px;
    color: var(--gold);
    font-weight: 400;
  }
#ria-industry-page details[open] .faq-question::after { content: "−"; }
#ria-industry-page .faq-answer {
    padding: 0 0 20px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
  }
#ria-industry-page /* ===== CTA BLOCK ===== */
  .cta-block {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--off-white);
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
#ria-industry-page .cta-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(63, 193, 176, 0.1) 0%, transparent 60%);
  }
#ria-industry-page .cta-block-inner {
    position: relative;
    z-index: 1;
  }
#ria-industry-page .cta-block h2 {
    color: var(--off-white);
    margin-bottom: 12px;
  }
#ria-industry-page .cta-block h2 .accent { color: var(--gold-bright); }
#ria-industry-page .cta-sub {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 17px;
  }
#ria-industry-page .cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }
#ria-industry-page .btn {
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
  }
#ria-industry-page .btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
  }
#ria-industry-page .btn-primary:hover {
    background: var(--gold-bright);
    color: var(--navy-deep);
    transform: translateY(-1px);
  }
#ria-industry-page .btn-ghost {
    background: transparent;
    color: var(--off-white);
    border: 1px solid var(--border-dark);
  }
#ria-industry-page .btn-ghost:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
  }
#ria-industry-page /* ===== RELATED INDUSTRIES ===== */
  .related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 24px;
  }
#ria-industry-page .related-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
  }
#ria-industry-page .related-card:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
  }
#ria-industry-page .related-card svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
  }
#ria-industry-page /* ===== FOOTER ===== */
  .footer {
    background: var(--navy-deep);
    color: var(--text-light);
    padding: 32px 0;
    text-align: center;
    font-size: 13px;
  }
#ria-industry-page /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; }
    .industry-emblem { width: 80px; height: 80px; }
    .industry-emblem svg { width: 36px; height: 36px; }
    .products-grid { grid-template-columns: 1fr; }
    .preparation-grid { grid-template-columns: 1fr; }
    .scope-row { grid-template-columns: 60px 1fr; }
    .scope-row .scope-detail {
      grid-column: 1 / -1;
      border-top: 1px solid var(--border-light);
    }
    .conversation-compare { grid-template-columns: 1fr; }
    .scenario { padding: 28px; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
  }
/* WordPress/Divi template guard */
#ria-industry-page { -webkit-font-smoothing: antialiased; }
#ria-industry-page svg { max-width: none; }

/* ===== SHARED BUTTON FIX ===== */
#ria-page .btn-ghost,
#ria-industry-page .btn-ghost {
  background: transparent !important;
  color: var(--off-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  padding: 16px 32px !important;
  min-width: 160px;
  justify-content: center;
  text-align: center;
}

#ria-page .btn-ghost:hover,
#ria-industry-page .btn-ghost:hover {
  border-color: var(--gold-bright) !important;
  color: var(--gold-bright) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}
