/* 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: 3.75rem; }
h2 { font-size: 2.625rem; }
h3 { font-size: 1.7rem; }
h4 { font-size: 1.3rem; }
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: 5rem 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: 2rem;
    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: 1.5rem;
    margin: 2rem 0;
}
.stat-card {
    text-align: center;
    padding: 2rem 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: 3rem;
    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.95rem;
}
thead th {
    background: var(--true-blue);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    padding: 0.85rem 1rem;
    text-align: left;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
tbody td {
    padding: 0.75rem 1rem;
    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: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
    font-size: 1.05rem;
}
.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: 3rem;
    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.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.3rem; }
    .container { padding: 0 1.25rem; }
    .section { padding: 3rem 0; }
    .nav { padding: 0.5rem 1rem; }
    .nav-links { display: none; }
    .stat-number { font-size: 2.25rem; }
    .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%; }
