/* Iron Noodle Brand System — Debt Advisors Law Offices Demo */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --true-blue: #0A1EF5;
    --soft-linen: #E8E2DA;
    --carbon-black: #191718;
    --stormy-teal: #1B6D69;
    --celadon: #7CCCA0;
    --white: #FFFFFF;
    --light-gray: #F5F3F0;
    --border-color: rgba(10, 30, 245, 0.1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--carbon-black);
    background: var(--soft-linen);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 { font-size: 2.85rem; }
h2 { font-size: 1.95rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; }
h5 { font-size: 0.95rem; font-weight: 500; }

p { margin-bottom: 1rem; }

a {
    color: var(--true-blue);
    text-decoration: none;
    transition: opacity 0.2s;
}
a:hover { opacity: 0.8; }

/* ═══ NAV ═══ */
.nav {
    background: var(--true-blue);
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.nav-brand svg { width: 36px; height: 36px; }
.nav-links {
    display: flex;
    gap: 0.25rem;
}
.nav-links a {
    color: rgba(255,255,255,0.8);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.15);
    opacity: 1;
}

/* ═══ LAYOUT ═══ */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section {
    padding: 3.25rem 0;
}
.section-alt {
    background: var(--white);
}
.section-blue {
    background: var(--true-blue);
    color: var(--white);
}
.section-blue h2,
.section-blue h3,
.section-blue p,
.section-blue li {
    color: var(--white);
}
.section-dark {
    background: var(--carbon-black);
    color: var(--white);
}
.section-dark h2,
.section-dark h3,
.section-dark p {
    color: var(--white);
}

/* ═══ CARDS ═══ */
.card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.35rem;
    border-left: 4px solid var(--true-blue);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.card-icon {
    width: 48px;
    height: 48px;
    background: var(--true-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.5rem;
}
.card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}
.card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
}

/* ═══ STAT CALLOUTS ═══ */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.35rem 0;
}
.stat-card {
    text-align: center;
    padding: 1.25rem 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--true-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-align: center;
}
.btn-primary {
    background: var(--true-blue);
    color: var(--white);
}
.btn-primary:hover {
    background: #0818CC;
    opacity: 1;
}
.btn-white {
    background: var(--white);
    color: var(--true-blue);
}
.btn-white:hover {
    background: #f0f0f0;
    opacity: 1;
}
.btn-outline {
    background: transparent;
    color: var(--true-blue);
    border: 2px solid var(--true-blue);
}
.btn-outline:hover {
    background: var(--true-blue);
    color: var(--white);
    opacity: 1;
}
.btn-teal {
    background: var(--stormy-teal);
    color: var(--white);
}
.btn-teal:hover {
    background: #155A56;
    opacity: 1;
}
.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
}

/* ═══ TABLES ═══ */
.table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0;
}
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.86rem;
}
thead th {
    background: var(--true-blue);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    padding: 0.58rem 0.72rem;
    text-align: left;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
tbody td {
    padding: 0.52rem 0.72rem;
    border-bottom: 1px solid var(--border-color);
}
tbody tr:hover {
    background: rgba(10, 30, 245, 0.03);
}
.highlight-row {
    background: rgba(10, 30, 245, 0.05);
    font-weight: 600;
}

/* ═══ BADGES ═══ */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.badge-blue { background: var(--true-blue); color: var(--white); }
.badge-teal { background: var(--stormy-teal); color: var(--white); }
.badge-green { background: var(--celadon); color: var(--carbon-black); }

/* ═══ CALLOUT ═══ */
.callout {
    background: var(--white);
    border-left: 4px solid var(--stormy-teal);
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin: 1.25rem 0;
    font-size: 0.92rem;
}
.callout-blue {
    border-left-color: var(--true-blue);
}
.callout strong {
    color: var(--true-blue);
}

/* ═══ TIMELINE ═══ */
.timeline {
    position: relative;
    padding-left: 2.5rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--true-blue);
    border-radius: 3px;
}
.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.4rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--celadon);
    border: 3px solid var(--true-blue);
}
.timeline-item h4 {
    margin-bottom: 0.25rem;
    color: var(--true-blue);
}

/* ═══ PRICING CARDS ═══ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.pricing-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}
.pricing-card-header {
    padding: 2rem;
    background: var(--stormy-teal);
    color: var(--white);
}
.pricing-card-header.featured {
    background: var(--true-blue);
}
.pricing-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}
.pricing-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
}
.pricing-period {
    font-size: 0.9rem;
    opacity: 0.8;
}
.pricing-card-body {
    padding: 2rem;
}
.pricing-card-body ul {
    list-style: none;
    text-align: left;
}
.pricing-card-body li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}
.pricing-card-body li::before {
    content: '\2713';
    color: var(--celadon);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* ═══ RANGE SLIDERS ═══ */
.slider-group {
    margin-bottom: 1.5rem;
}
.slider-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}
.slider-value {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--true-blue);
    font-size: 1.1rem;
}
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #ddd;
    outline: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--true-blue);
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--true-blue);
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* ═══ MASCOT SVG ═══ */
.mascot {
    display: inline-block;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
    h1 { font-size: 2.1rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    .container { padding: 0 1.25rem; }
    .section { padding: 2.25rem 0; }
    .nav { padding: 0.5rem 1rem; }
    .nav-links { display: none; }
    .stat-number { font-size: 1.9rem; }
    .card-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
}

/* ═══ PRINT ═══ */
@media print {
    .nav, .no-print { display: none !important; }
    body { background: white; font-size: 11pt; }
    .section { padding: 1rem 0; page-break-inside: avoid; }
    .section-blue, .section-dark { background: white !important; color: black !important; }
    .section-blue h2, .section-blue h3, .section-blue p,
    .section-dark h2, .section-dark h3, .section-dark p { color: black !important; }
    .card { box-shadow: none; border: 1px solid #ddd; }
    a { color: var(--carbon-black); }
}

/* ═══ UTILITIES ═══ */
.text-center { text-align: center; }
.text-blue { color: var(--true-blue); }
.text-teal { color: var(--stormy-teal); }
.text-small { font-size: 0.85rem; }
.text-large { font-size: 1.15rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }


/* Geller 2026 compact executive refresh */
body { font-size: 15px; }
p { line-height: 1.55; }
.container { max-width: 1180px; }
.section .container, .section-alt .container { padding-left: 2rem; padding-right: 2rem; }
.nav { padding: 0.55rem 1.5rem; }
.nav-brand { font-size: 1.05rem; letter-spacing: 0.035em; }
.nav-brand svg { width: 30px; height: 30px; }
.nav-links { flex-wrap: wrap; row-gap: 0.25rem; justify-content: flex-end; }
.nav-links a { padding: 0.38rem 0.68rem; font-size: 0.78rem; }
.card, .stat-card, .pricing-card, .timeline-item { box-shadow: 0 1px 8px rgba(0,0,0,0.045); }
.card-grid { gap: 1rem; }
.text-large { font-size: 1rem; }
table { font-size: 0.84rem; line-height: 1.35; }
thead th { padding: 0.55rem 0.68rem; font-size: 0.74rem; }
tbody td { padding: 0.48rem 0.68rem; vertical-align: top; }
.badge { font-size: 0.68rem; padding: 0.18rem 0.58rem; }
.btn-lg { padding: 0.85rem 1.75rem; font-size: 0.98rem; }
@media (max-width: 768px) { .nav { position: static; } .container { padding: 0 1rem; } }

/* ═══ 2026-06 REDESIGN — unified journey shell ═══ */

/* Numbered journey nav */
.nav-links a .step-no { font-family: 'Oswald', sans-serif; font-weight: 600; opacity: 0.55; margin-right: 0.3rem; font-size: 0.72rem; }
.nav-links a.active .step-no { opacity: 0.9; color: var(--celadon); }

/* Reference dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' \25BE'; font-size: 0.7em; opacity: 0.7; }
.nav-dropdown-menu { display: none; position: absolute; right: 0; top: 100%; background: var(--white); border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.18); min-width: 200px; padding: 0.4rem; z-index: 200; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; color: var(--carbon-black) !important; background: none !important; padding: 0.5rem 0.85rem; border-radius: 6px; font-size: 0.82rem; }
.nav-dropdown-menu a:hover { background: rgba(10, 30, 245, 0.07) !important; color: var(--true-blue) !important; }

/* Compact page hero */
.page-hero { padding: 2.2rem 0 1.9rem; border-bottom: 1px solid var(--border-color); }
.page-hero .kicker { display: inline-flex; align-items: center; gap: 0.55rem; font-family: 'Oswald', sans-serif; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.09em; color: var(--true-blue); margin-bottom: 0.7rem; }
.page-hero .kicker .step-chip { background: var(--true-blue); color: var(--white); border-radius: 5px; padding: 0.18rem 0.55rem; font-size: 0.74rem; }
.page-hero h1 { font-size: 2.35rem; margin-bottom: 0.55rem; max-width: 880px; }
.page-hero .lede { font-size: 1.02rem; color: #555; max-width: 820px; margin-bottom: 0; line-height: 1.55; }
.page-hero .hero-meta { font-size: 0.82rem; color: #888; margin-top: 0.9rem; }
.page-hero .client-chip { display: inline-block; background: var(--carbon-black); border-radius: 8px; padding: 0.45rem 0.8rem; margin-bottom: 1rem; }
.page-hero .client-chip img { height: 34px; width: auto; display: block; }

/* In-page section TOC chips */
.toc-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.toc-chips a { font-family: 'Oswald', sans-serif; font-size: 0.76rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; color: var(--true-blue); background: rgba(10, 30, 245, 0.07); border-radius: 999px; padding: 0.32rem 0.85rem; }
.toc-chips a:hover { background: var(--true-blue); color: var(--white); opacity: 1; }

/* Prev / next flow strip */
.flow-strip { background: var(--white); border-top: 1px solid var(--border-color); padding: 1.6rem 0; }
.flow-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.flow-cell { display: flex; flex-direction: column; gap: 0.15rem; max-width: 42%; }
.flow-cell .flow-label { font-family: 'Oswald', sans-serif; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #999; }
.flow-cell a { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--true-blue); }
.flow-cell.next { text-align: right; align-items: flex-end; }
.flow-cell.next a { background: var(--celadon); color: var(--carbon-black); padding: 0.45rem 1rem; border-radius: 8px; }
.flow-cell.next a:hover { background: var(--stormy-teal); color: var(--white); opacity: 1; }
.flow-progress { font-family: 'Oswald', sans-serif; font-size: 0.78rem; color: #999; letter-spacing: 0.12em; white-space: nowrap; }
.flow-progress .on { color: var(--true-blue); }

/* Collapsible evidence quotes */
details.more-quotes { margin-top: 0.5rem; }
details.more-quotes summary { cursor: pointer; font-family: 'Oswald', sans-serif; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--stormy-teal); padding: 0.3rem 0; list-style: none; }
details.more-quotes summary::before { content: '+ '; }
details[open].more-quotes summary::before { content: '\2212 '; }
details.more-quotes summary::-webkit-details-marker { display: none; }
details.more-quotes .quote:first-of-type { margin-top: 0.6rem; }

/* Journey cards (landing page) */
.journey-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; margin: 1.5rem 0 0; }
.journey-card { display: block; background: var(--white); border-radius: 12px; padding: 1.3rem 1.3rem 1.15rem; border-top: 4px solid var(--true-blue); box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; color: var(--carbon-black); }
.journey-card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,0.12); opacity: 1; }
.journey-card .step-num { font-family: 'Oswald', sans-serif; font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--true-blue); }
.journey-card h3 { font-size: 1.12rem; margin: 0.3rem 0 0.45rem; }
.journey-card p { font-size: 0.86rem; color: #555; margin: 0; line-height: 1.5; }
.journey-card .go { display: inline-block; margin-top: 0.7rem; font-family: 'Oswald', sans-serif; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--true-blue); }
.journey-card.is-here { border-top-color: var(--celadon); }
.journey-card.is-here .go { color: var(--stormy-teal); }

/* ═══ DATA VIZ — inline SVG charts (print-safe, no JS) ═══ */
.chart-block { background: var(--white); border-radius: 12px; padding: 1.5rem 1.6rem 1.3rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06); margin: 1.5rem 0; }
.chart-block h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.chart-block .chart-sub { font-size: 0.82rem; color: #777; margin-bottom: 1rem; }
.chart-block svg { width: 100%; height: auto; display: block; }
.chart-block .chart-note { font-size: 0.76rem; color: #999; margin: 0.75rem 0 0; }
.chart-svg text { font-family: 'Inter', sans-serif; }
.chart-svg .num { font-family: 'Oswald', sans-serif; font-weight: 700; }
.chart-svg .axis-label { font-size: 12px; fill: #666; }
.chart-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: stretch; }
@media (max-width: 900px) { .chart-grid-2 { grid-template-columns: 1fr; } }

@media (max-width: 768px) {
    .page-hero h1 { font-size: 1.85rem; }
    .flow-strip .container { flex-direction: column; align-items: stretch; }
    .flow-cell, .flow-cell.next { max-width: 100%; }
    .flow-progress { text-align: center; }
}
