/* SuitCoin — Production Stylesheet
   Azul: #0F2647  |  Verde: #00B686  |  Off-white: #F6F7F9
   Fonte: Inter via Google Fonts */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #0F2647; background: #fff; -webkit-font-smoothing: antialiased; }
h1 { font-size: clamp(28px,4vw,44px); font-weight:600; letter-spacing:-1px; line-height:1.1; }
h2 { font-size: clamp(22px,3vw,32px); font-weight:600; letter-spacing:-0.5px; line-height:1.2; }
h3 { font-size: clamp(18px,2vw,22px); font-weight:600; letter-spacing:-0.3px; }
p  { line-height:1.65; }
a  { text-decoration:none; color:inherit; }
button { font-family:inherit; cursor:pointer; border:none; }
img { max-width:100%; }

:root {
    --blue-900: #0F2647;
    --blue-700: #1A3D6E;
    --blue-600: #1E4D8C;
    --blue-500: #2563B0;
    --blue-200: #B6C9E2;
    --blue-100: #D9E5F5;
    --green: #00B686;
    --green-light: #E6F8F3;
    --off-white: #F6F7F9;
    --white: #FFFFFF;
    --text-dark: #0F2647;
    --text-mid: #3B5270;
    --text-light: #8096AE;
    --border: #D9E5F5;
}

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


/* ---- CHROME WRAPPER ---- */

.chrome-bar {
    background: #E0E6EF;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #C8D5E8;
}

.chrome-dots { display: flex; gap: 6px; }
.chrome-dot { width: 12px; height: 12px; border-radius: 50%; }
.chrome-dot.red { background: #FF5F56; }
.chrome-dot.yellow { background: #FFBD2E; }
.chrome-dot.green { background: #27C93F; }

.chrome-url {
    flex: 1;
    background: white;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    color: var(--text-mid);
    border: 1px solid #C8D5E8;
    font-family: 'Inter', monospace;
}

/* ---- WIREFRAME LABEL ---- */
.wf-label {
    background: var(--blue-900);
    color: white;
    text-align: center;
    padding: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ---- SITE WRAPPER ---- */

/* ---- NAV ---- */
nav {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 12px rgba(15,38,71,0.06);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-symbol {
    width: 180px;
    height: 48px;
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}




.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-login {
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--blue-900);
    cursor: pointer;
    background: white;
    border: 1.5px solid var(--blue-200);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    transition: all 0.15s;
}

.btn-login:hover {
    border-color: var(--blue-500);
    color: var(--blue-500);
}

.btn-hero-sec {
    padding: 8px 18px;
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.15s;
}
.btn-hero-sec:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
}

.btn-ghost-nav {
    padding: 7px 14px;
    font-size: 13px;
    color: var(--text-mid);
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    transition: color 0.15s;
}

.btn-ghost-nav:hover { color: var(--blue-900); }

.btn-primary {
    padding: 8px 18px;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.15s;
}

.btn-primary:hover { background: #00a078; transform: translateY(-1px); }

.btn-secondary {
    padding: 8px 18px;
    background: transparent;
    color: var(--blue-900);
    border: 1.5px solid var(--blue-200);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.15s;
}

.btn-secondary:hover {
    border-color: var(--blue-500);
    color: var(--blue-500);
}

.btn-secondary-light {
    padding: 8px 18px;
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.15s;
}

.btn-secondary-light:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
}

/* Internal navigation buttons — consistent across site */
.btn-internal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: var(--blue-100);
    color: var(--blue-900);
    border: 2px solid var(--blue-200);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.18s;
}
.btn-internal:hover {
    background: var(--blue-900);
    color: white;
    border-color: var(--blue-900);
}

/* ---- PAGE ---- */

@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ---- SECTIONS ---- */
.section { padding: 80px 64px; }
.section-sm { padding: 56px 64px; }
.section-bg { background: var(--off-white); }
.section-dark { background: var(--blue-900); color: white; }

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.section-label-light {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
}

h1 { font-size: 44px; font-weight: 600; line-height: 1.18; letter-spacing: -0.8px; }
h2 { font-size: 32px; font-weight: 600; line-height: 1.25; letter-spacing: -0.4px; }
h3 { font-size: 20px; font-weight: 600; line-height: 1.3; }
h4 { font-size: 15px; font-weight: 600; }

p { font-size: 15px; line-height: 1.65; color: var(--text-mid); }
p.large { font-size: 17px; }

.text-white { color: rgba(255,255,255,0.85) !important; }
.text-white-dim { color: rgba(255,255,255,0.55) !important; }

/* ---- HERO ---- */
.hero {
    background: var(--blue-900);
    padding: 88px 64px 72px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 480px;
    background: rgba(255,255,255,0.02);
    border-left: 1px solid rgba(255,255,255,0.05);
}

.hero-icon {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    z-index: 0;
    pointer-events: none;
}

.hero-layout {
    display: block;
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(0,182,134,0.12);
    border: 1px solid rgba(0,182,134,0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: var(--green);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.hero h1 { color: white; margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.65); font-size: 17px; line-height: 1.6; margin-bottom: 36px; }
.hero-cta { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; }

.hero-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-proof-item {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-proof-item::before {
    content: '●';
    color: var(--green);
    font-size: 8px;
}



/* ---- GRID CARDS ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    transition: all 0.2s;
}

.card:hover {
    border-color: var(--blue-600);
    box-shadow: 0 8px 32px rgba(15,38,71,0.12);
    transform: translateY(-3px);
}

.card-num {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--green);
    margin-bottom: 14px;
}

.card h3 { margin-bottom: 10px; font-size: 17px; }
.card p { font-size: 14px; }

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--blue-600);
    font-size: 18px;
}

/* ---- STAT ROW ---- */
.stat-row { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 56px; }

.stat-item {
    flex: 1;
    padding: 32px 40px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-num {
    font-size: 36px;
    font-weight: 600;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ---- STEPS ---- */
.steps { display: flex; flex-direction: column; gap: 0; }

.step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.step:last-child { border-bottom: none; }

.step-num {
    width: 44px;
    height: 44px;
    background: var(--blue-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 { margin-bottom: 8px; }
.step-content p { font-size: 14px; }

.step-tag {
    display: inline-block;
    padding: 3px 9px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    margin-top: 8px;
}

/* ---- DIFFERENTIALS ---- */
.diff-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 2px solid var(--border); border-radius: 12px; overflow: hidden; }

.diff-item { background: white; padding: 36px; transition: all 0.2s; }
.diff-item:hover { background: var(--blue-100); }

.diff-item h4 { margin-bottom: 10px; font-size: 17px; color: var(--blue-900); }
.diff-item p { font-size: 14px; }

.diff-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--blue-900);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(15,38,71,0.2);
}

.diff-icon svg { width: 26px; height: 26px; }

/* ---- CASES ---- */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.case-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
}

.case-card:hover { border-color: var(--blue-500); box-shadow: 0 4px 20px rgba(15,38,71,0.08); }

.case-header {
    background: var(--blue-900);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.case-num { font-size: 11px; color: var(--green); font-weight: 600; letter-spacing: 1px; }
.case-header h4 { color: white; font-size: 15px; margin-top: 4px; }
.case-arrow { color: rgba(255,255,255,0.3); font-size: 18px; }

.case-body { padding: 20px 24px; }

.case-meta { display: flex; gap: 16px; margin-bottom: 16px; }
.case-meta-item { font-size: 12px; color: var(--text-light); }
.case-meta-item strong { display: block; font-size: 13px; color: var(--text-dark); font-weight: 500; }

.case-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
    padding: 3px 9px;
    background: var(--blue-100);
    color: var(--blue-700);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.tag.green { background: var(--green-light); color: var(--green); }

/* ---- PAGE HEADER (hero for inner pages) ---- */
.page-header {
    background: var(--blue-900);
    padding: 64px 64px 56px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}
.breadcrumb span { cursor: pointer; transition: color 0.15s; }
.breadcrumb span:hover { color: rgba(255,255,255,0.8); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }

.page-header h1 {
    font-size: 40px;
    font-weight: 600;
    color: white;
    letter-spacing: -1px;
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 0;
}

.page-header .btn-primary,
.page-header .btn-hero-sec,
.page-header .btn-login {
    margin-top: 28px;
}

/* ---- SECTIONS ---- */
.section {
    padding: 64px;
}

.section-bg { background: var(--off-white); }
.section-dark { background: var(--blue-900); }

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.section-label-light {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0,182,134,0.8);
    margin-bottom: 12px;
}

.section h2 { margin-bottom: 32px; }

/* ---- FOOTER ---- */
footer {
    background: var(--blue-900);
    padding: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 56px 64px 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-col h5 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
}

.footer-link {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.15s;
}
.footer-link:hover { color: white; }

.footer-bottom {
    padding: 20px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ---- INFO BOX ---- */
.info-box {
    background: var(--blue-100);
    border-left: 3px solid var(--blue-500);
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 13px;
    color: var(--blue-900);
    line-height: 1.5;
}

/* ---- GOVERNANCE CARDS ---- */
.gov-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,182,134,0.2);
    border-top: 3px solid var(--green);
    border-radius: 10px;
    padding: 24px;
    transition: all 0.2s;
}
.gov-card:hover {
    background: rgba(0,182,134,0.06);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    border-color: rgba(0,182,134,0.5);
}
.gov-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* ---- GRID HELPERS ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ---- STEPS (legacy, kept for compatibility) ---- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue-900);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}
.step-content h3 { margin-bottom: 8px; }
.step-content p { font-size: 14px; line-height: 1.6; }

/* ---- FORMS ---- */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    font-size: 13px;
    font-family: inherit;
    color: var(--text-dark);
    background: white;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

/* ---- CARDS ---- */
.card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
    border-color: var(--blue-200);
    box-shadow: 0 4px 16px rgba(15,38,71,0.06);
}

/* ---- INSTITUTIONAL ---- */
.inst-grid { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }

.inst-nav { position: sticky; top: 80px; }

.inst-nav-item {
    display: block;
    padding: 11px 14px;
    font-size: 13px;
    color: var(--text-mid);
    cursor: pointer;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: all 0.15s;
    margin-bottom: 2px;
}

.inst-nav-item:hover {
    color: var(--blue-900);
    background: var(--blue-100);
    border-left-color: var(--blue-300, #7aaad4);
}

.inst-nav-item.active {
    color: white;
    background: var(--blue-900);
    border-left-color: var(--green);
    font-weight: 600;
}

.inst-list { list-style: none; margin-top: 12px; }
.inst-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 8px;
}
.inst-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}
.inst-list li:last-child { border-bottom: none; }

/* ── Panel (right column) ── */
.inst-panel-wrap { padding-top: 48px; min-height: 480px; }

.inst-panel { display: none; }
.inst-panel.active {
    display: block;
    animation: instFadeIn 0.2s ease;
}

@keyframes instFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: none; }
}

.inst-panel-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.inst-panel-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--blue-900);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.4px;
}

.inst-panel-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 20px;
    max-width: 580px;
}

/* ---- FLOWCHART ---- */
.flowchart-wrapper {
    position: relative;
    padding: 0 0 16px;
}

/* Vertical spine line */
.flowchart-spine {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue-200) 0%, var(--green) 100%);
    z-index: 0;
}

.flow-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Left column: number bubble + connector dot */
.flow-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
    padding-bottom: 0;
    flex-shrink: 0;
}

.flow-bubble {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue-900);
    border: 3px solid var(--blue-900);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px rgba(15,38,71,0.1), 0 4px 20px rgba(15,38,71,0.2);
    transition: all 0.2s;
    position: relative;
    z-index: 2;
}

.flow-bubble-num {
    font-size: 16px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.flow-step:last-child .flow-bubble {
    background: var(--green);
    border-color: var(--green);
    box-shadow: 0 0 0 5px rgba(0,182,134,0.15), 0 4px 20px rgba(0,182,134,0.3);
}

/* Right column: card */
.flow-card {
    margin: 16px 0 16px 24px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s;
    cursor: default;
}

.flow-step:hover .flow-card {
    border-color: var(--blue-500);
    box-shadow: 0 8px 32px rgba(15,38,71,0.1);
    transform: translateX(4px);
}

.flow-step:last-child .flow-card {
    border-color: var(--green);
    border-width: 2px;
}

.flow-step:last-child:hover .flow-card {
    border-color: var(--green);
    box-shadow: 0 8px 32px rgba(0,182,134,0.15);
}

.flow-card-header {
    padding: 20px 28px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    background: var(--off-white);
}

.flow-step:last-child .flow-card-header {
    background: var(--green-light);
    border-bottom-color: rgba(0,182,134,0.15);
}

.flow-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--blue-900);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-step:last-child .flow-card-icon {
    background: var(--green);
}

.flow-card-icon svg { width: 22px; height: 22px; }

.flow-card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--blue-900);
    line-height: 1.2;
}

.flow-card-subtitle {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 2px;
}

.flow-step:last-child .flow-card-title { color: var(--green); }

.flow-card-body {
    padding: 20px 28px 24px;
}

.flow-card-body p { font-size: 14px; line-height: 1.65; margin-bottom: 0; }

.flow-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 14px;
}

/* ---- GOVERNANCE CARDS ---- */
.gov-card {
    padding: 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,182,134,0.2);
    border-top: 3px solid var(--green);
    border-radius: 8px;
    transition: all 0.2s;
    cursor: default;
}
.gov-card:hover {
    background: rgba(0,182,134,0.08);
    border-color: rgba(0,182,134,0.5);
    border-top-color: var(--green);
    transform: translateY(-2px);
}
.gov-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 8px;
    letter-spacing: 0.1px;
}

/* smooth scroll for inst sections */
html { scroll-behavior: smooth; }

