:root {
    --blue-dark: #163a5f;
    --blue-mid: #1f4c7a;
    --gold: #f0b429;
    --white: #ffffff;
    --text-light: #dbe7f3;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #111;
	min-height: 100vh;
    display: flex;
    flex-direction: column;
}
}


body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 2px;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--blue-dark);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--blue-dark);
    color: #fff;
    border-radius: 8px;
    display: grid;
    place-items: center;
}

.logo img {
    max-height: 42px;
    width: auto;
    display: block;
}

.main-nav a {
    margin: 0 6px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--blue-dark);
}

/* Buttons */
.btn {
    padding: 7px 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--blue-dark);
    color: #fff;
}

.btn-light {
    background: #fff;
    color: var(--blue-dark);
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    color: var(--white);
    padding: 50px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    color: var(--text-light);
    max-width: 520px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    font-size: 14px;
}

/* Right card */
.hero-visual {
    position: relative;
    height: 360px;
}

.compliance-card {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: #fff;
    color: #111;
    padding: 18px 22px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.compliance-card 	 {
    display: block;
    font-size: 13px;
    color: #555;
}
/* Industry Section */
.industry-section {
    background: #f8fafc;
    padding: 90px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 34px;
    margin-bottom: 12px;
    color: #0f172a;
}

.section-header p {
    color: #475569;
    font-size: 16px;
}

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

/* Cards */
.industry-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 26px;
    border-radius: 16px;
    position: relative;
    transition: all 0.25s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
}

/* Backgrounds */
.light-yellow {
    background: #fffbe8;
}

.light-blue {
    background: #f1f7ff;
}

/* Icon */
.industry-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #ffffff;
    display: grid;
    place-items: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Content */
.card-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #0f172a;
}

.card-content p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* Chevron */
.chevron {
    position: absolute;
    right: 22px;
    top: 26px;
    font-size: 18px;
    color: #64748b;
}

/* Footer button */
.section-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-outline-dark {
    border: 1px solid #cbd5e1;
    color: #0f172a;
    background: #fff;
}
/* Health Check Section */
.healthcheck-section {
    background: #eef3f8;
    padding: 100px 0;
}

.healthcheck-card {
    max-width: 720px;
    margin: auto;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Header */
.healthcheck-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 26px 32px;
    background: linear-gradient(135deg, #163a5f, #1f4c7a);
    color: #fff;
}

.healthcheck-header h3 {
    font-size: 20px;
    margin-bottom: 2px;
}

.healthcheck-header p {
    font-size: 14px;
    opacity: 0.9;
}

.hc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    display: grid;
    place-items: center;
    font-size: 20px;
}

/* Form */
.healthcheck-form {
    padding: 30px 32px 36px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    display: block;
    margin-bottom: 6px;
}

.form-group label span {
    color: #dc2626;
}

.form-group select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
    background: #fff;
}

/* Submit Button */
.hc-submit {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    background: #94a3b8;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.hc-submit:hover {
    background: #64748b;
}

.hc-note {
    text-align: center;
    font-size: 12px;
    color: #64748b;
    margin-top: 12px;
}
/* Regulatory Section */
.regulatory-section {
    background: #f8fafc;
    padding: 110px 0;
}

.regulatory-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left */
.live-badge {
    font-size: 13px;
    color: #dc2626;
    font-weight: 600;
}

.regulatory-content h2 {
    font-size: 36px;
    margin: 14px 0;
    color: #0f172a;
}

.regulatory-content p {
    color: #475569;
    max-width: 480px;
}

.reg-actions {
    margin-top: auto; /* 👈 pushes buttons to bottom */
    display: flex;
    gap: 10px;
}

/* Right Card */
.regulatory-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

.reg-card-header {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 13px;
    color: #64748b;
}

.reg-card-body {
    padding: 22px 24px 26px;
}

.reg-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 10px;
}

.reg-category {
    color: #2563eb;
    font-weight: 600;
}

.reg-impact {
    font-weight: 600;
}

.impact-high { color: #dc2626; }
.impact-medium { color: #f59e0b; }
.impact-low { color: #16a34a; }

.reg-card-body h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.reg-card-body p {
    font-size: 10px;
    color: #475569;
}


.reg-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    font-size: 12px;
    color: #64748b;
}

/* Slider dots */
.reg-slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 14px 0 18px;
}

.reg-slider-dots span {
    width: 8px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 4px;
}

.reg-slider-dots .active {
    width: 18px;
    background: #1f4c7a;
}
/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1f4c7a, #2563eb);
    padding: 90px 0;
    color: #fff;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Left */
.cta-content h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.cta-content p {
    max-width: 420px;
    margin-bottom: 24px;
    opacity: 0.9;
}

/* Right Card */
.cta-form-card {
    background: #fff;
    color: #0f172a;
    padding: 28px 30px 32px;
    border-radius: 14px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.cta-form-card h3 {
    margin-bottom: 6px;
}

.cta-form-card p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 18px;
}

.cta-form-card input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
}

.cta-form-card button {
    width: 100%;
    padding: 13px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.cta-form-card small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #64748b;
    text-align: center;
}
/* Footer */
.site-footer {
    background: #fff;
    padding: 80px 0 30px;
    border-top: 1px solid #e5e7eb;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.site-footer h4 {
    font-size: 14px;
    margin-bottom: 14px;
    color: #0f172a;
}

.site-footer a {
    display: block;
    font-size: 14px;
    color: #475569;
    text-decoration: none;
    margin-bottom: 8px;
}

.site-footer p {
    font-size: 14px;
    color: #475569;
}

.footer-brand p {
    margin: 14px 0;
    max-width: 280px;
}

.socials a {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #f1f5f9;
    text-align: center;
    line-height: 28px;
    margin-right: 6px;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #e5e7eb;
    margin-top: 50px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #64748b;
}

.footer-bottom a {
    margin-left: 16px;
}
/* Page Hero (Services, Regulations, etc.) */
.page-hero {
    background: linear-gradient(135deg, #163a5f, #1f4c7a);
    padding: 50px 0;
    color: #fff;
    text-align: center;
}

.page-hero-content {
    max-width: 900px;
    margin: auto;
}

/* Badge */
.page-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 26px;
}

/* Heading */
.page-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 22px;
}

/* Description */
.page-hero p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto 36px;
    color: #dbe7f3;
}

/* Actions */
.page-hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
}

/* Buttons (reuse existing styles) */
.page-hero .btn-light {
    background: #fff;
    color: #163a5f;
}

.page-hero .btn-outline {
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
}
/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: #f8fafc;
}

/* Filter */
.services-filter {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 50px;
}

.filter-label {
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: 13px;
    cursor: pointer;
}

.filter-btn.active {
    background: #163a5f;
    color: #fff;
    border-color: #163a5f;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Card */
.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 26px;
    border: 1px solid #e5e7eb;
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 16px;
    background: #e0e7ff;
}

.service-icon.green { background:#dcfce7; }
.service-icon.purple { background:#ede9fe; }
.service-icon.red { background:#fee2e2; }
.service-icon.yellow { background:#fef9c3; }
.service-icon.blue { background:#e0f2fe; }

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

.service-card p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 14px;
}

.service-card ul {
    font-size: 13px;
    color: #475569;
    padding-left: 18px;
    margin-bottom: 18px;
}

.service-card ul li {
    margin-bottom: 6px;
}

.service-actions {
    display: flex;
    gap: 10px;
}
/* Process Section */
.process-section {
    padding: 110px 0;
    background: #f8fafc;
}

.section-header.center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px;
}

/* Timeline */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.process-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
    transform: translateX(-50%);
}

/* Rows */
.process-row {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    margin-bottom: 60px;
}

.process-row.left {
    grid-template-areas: "card step empty";
}

.process-row.right {
    grid-template-areas: "empty step card";
}

.process-row.left .process-card {
    grid-area: card;
}

.process-row.right .process-card {
    grid-area: card;
}

.process-step {
    grid-area: step;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #163a5f;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 600;
    z-index: 1;
}

/* Cards */
.process-card {
    background: #fff;
    padding: 26px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    max-width: 360px;
}

.process-row.left .process-card {
    margin-right: auto;
}

.process-row.right .process-card {
    margin-left: auto;
}

.process-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.process-card h4 span {
    font-size: 12px;
    color: #64748b;
}

.process-card p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 12px;
}

.process-card strong {
    font-size: 13px;
}

.process-card ul {
    font-size: 13px;
    color: #475569;
    padding-left: 18px;
    margin-top: 8px;
}

.process-card ul li {
    margin-bottom: 6px;
}

/* Actions */
.process-actions {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 18px;
}
/* Pricing Compare */
.pricing-compare {
    padding: 110px 0;
    background: #f8fafc;
}

.package-toggle {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 30px 0;
}

.package-toggle label {
    padding: 10px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    background: #fff;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.pricing-table th,
.pricing-table td {
    padding: 14px;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
    text-align: left;
}

.pricing-table th span {
    font-size: 13px;
    color: #64748b;
}

/* Calculator */
.pricing-calculator {
    padding: 110px 0;
    background: #ffffff;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.calculator-config,
.calculator-result {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 26px;
}

.calculator-config label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin: 16px 0 6px;
}

.calculator-config select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
}

.addon {
    margin-top: 10px;
    font-size: 14px;
}

.price-box {
    text-align: center;
    padding: 40px 20px;
}

.price-box h3 {
    font-size: 36px;
    color: #2563eb;
}
/* Price Breakdown */
.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.price-row.column {
    flex-direction: column;
}

.price-row ul {
    margin-top: 6px;
    padding-left: 18px;
    font-size: 13px;
    color: #475569;
}

.price-row ul li {
    margin-bottom: 4px;
}

.price-row .muted {
    color: #94a3b8;
}

.price-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    margin: 18px 0 6px;
}

.price-note {
    font-size: 12px;
    color: #64748b;
    display: block;
    margin-bottom: 18px;
}

.price-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.price-footnote {
    font-size: 12px;
    color: #475569;
    background: #f1f5f9;
    padding: 10px;
    border-radius: 8px;
}
/* Assessment Section */
.assessment-section {
    padding: 120px 0;
    background: #f8fafc;
}

/* Card */
.assessment-card {
    max-width: 760px;
    margin: auto;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 30px 34px 36px;
}

/* Progress Header */
.assessment-progress {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #475569;
    margin-bottom: 10px;
}

/* Progress Bar */
.progress-bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 36px;
}

.progress-fill {
    height: 100%;
    background: #163a5f;
    border-radius: 999px;
}

/* Content */
.assessment-content {
    text-align: center;
}

.assessment-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #f1f5f9;
    display: grid;
    place-items: center;
    font-size: 26px;
    margin: 0 auto 16px;
}

.assessment-content h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.assessment-content p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 26px;
}

/* Form */
.assessment-form {
    max-width: 520px;
    margin: auto;
    text-align: left;
}

.assessment-form .form-group {
    margin-bottom: 18px;
}

.assessment-form label {
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.assessment-form label span {
    color: #dc2626;
}

.assessment-form input,
.assessment-form select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
}

/* Button */
.btn-full {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    font-size: 15px;
}
.assessment-step {
    display: none;
}

.assessment-step.active {
    display: block;
}

.assessment-nav {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.recommendations {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.recommend-card {
    border: 1px solid #e5e7eb;
    padding: 18px;
    border-radius: 12px;
    background: #f8fafc;
}

.recommend-card h4 {
    margin-bottom: 6px;
}
/* Regulations */
.stats-grid {
    display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-bottom:40px;
}
.stat-card {
    padding:20px;border-radius:12px;color:#fff;
}
.stat-card.blue{background:#2563eb;}
.stat-card.green{background:#22c55e;}
.stat-card.purple{background:#9333ea;}
.stat-card.orange{background:#f97316;}

.quick-grid {
    display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-bottom:40px;
}
.quick-card {
    background:#fff;padding:20px;border-radius:12px;border:1px solid #e5e7eb;
}

.library-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Regulation cards grid */
.reg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    align-items: stretch; /* 👈 critical */
}


/* Individual regulation card */
.reg-card p {
    font-size: 13px;
    line-height: 1.45;
    color: #64748b;

    display: -webkit-box;
    -webkit-line-clamp: 3;     /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.badge-new {
    background:#facc15;color:#000;font-size:11px;padding:2px 6px;border-radius:6px;
}
/* FILTER PANEL */
.filter-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 18px 20px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* Header */
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.filter-header h4 {
    font-size: 15px;
    font-weight: 700;
}

.clear-filters {
    font-size: 12px;
    color: #2563eb;
    text-decoration: none;
}

/* Groups */
.filter-group {
    border-top: 1px solid #e5e7eb;
    padding-top: 14px;
    margin-top: 14px;
}

.filter-group h5 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0f172a;
}

/* Options */
.filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
    cursor: pointer;
}

.filter-option input {
    margin-right: 8px;
}

.filter-option span {
    flex: 1;
    margin-left: 6px;
}

.filter-option em {
    font-style: normal;
    color: #64748b;
    font-size: 12px;
}

/* Results */
.filter-results {
    margin-top: 18px;
    background: #f8fafc;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

.filter-results span {
    display: block;
    font-size: 12px;
    color: #64748b;
}

.filter-results strong {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
}
/* Small Page Hero (Regulations) */
.page-hero-sm {
    padding: 60px 0;
}

.page-hero-inline {
    display: flex;
    align-items: center;
    gap: 16px;
}

.page-hero-sm h1 {
    font-size: 42px;
    margin-bottom: 4px;
}

.page-hero-sm p {
    font-size: 14px;
    color: #dbe7f3;
    margin: 0;
}

.hero-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    display: grid;
    place-items: center;
    font-size: 22px;
}
/* About Hero */
.about-hero {
    background: linear-gradient(180deg, #1e3a5f, #274c77);
    padding: 60px 0 50px;
    color: #fff;
    text-align: center;
}

.about-hero-content {
    max-width: 880px;
    margin: auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 18px;
}

.about-hero h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero-subtext {
    font-size: 16px;
    color: #dbe7f3;
    max-width: 720px;
    margin: 0 auto 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-stat {
    background: rgba(255,255,255,0.12);
    padding: 16px 22px;
    border-radius: 12px;
    min-width: 150px;
}

.hero-stat strong {
    font-size: 20px;
    display: block;
}

.hero-stat span {
    font-size: 13px;
    color: #dbe7f3;
}
/* About Story */
.about-story {
    padding: 110px 0;
    background: #ffffff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.section-eyebrow {
    font-size: 13px;
    color: #2563eb;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
}

.story-text h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

.story-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 14px;
}

/* Image */
.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #eab308;
    color: #0f172a;
    padding: 14px 18px;
    border-radius: 12px;
    text-align: center;
}

.experience-badge strong {
    font-size: 20px;
    display: block;
}

.experience-badge span {
    font-size: 12px;
}
/* Industries We Serve */
.about-industries {
    padding: 110px 0;
    background: #f8fafc;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 50px;
}

.industry-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 26px;
}

.industry-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f1f5f9;
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.industry-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}
/* CTA Strip */
.about-cta {
    background: linear-gradient(180deg, #1e3a5f, #274c77);
    padding: 80px 0;
    color: #ffffff;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 15px;
    color: #dbe7f3;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}
/* Contact Hero */
.contact-hero {
    background: linear-gradient(180deg, #1e3a5f, #274c77);
    padding: 60px 0 50px;
    color: #ffffff;
    text-align: center;
}

.contact-hero-content {
    max-width: 860px;
    margin: auto;
}

.contact-hero h1 {
    font-size: 36px;
    margin-bottom: 14px;
}

.contact-hero .hero-subtext {
    font-size: 15px;
    color: #dbe7f3;
    max-width: 720px;
    margin: 0 auto 40px;
}

.contact-hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.feature-card {
    background: rgba(255,255,255,0.12);
    padding: 16px 18px;
    border-radius: 12px;
    min-width: 160px;
}

.feature-card strong {
    display: block;
    font-size: 14px;
}

.feature-card span {
    font-size: 12px;
    color: #dbe7f3;
}
/* Contact Main */
.contact-main {
    padding: 110px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

/* Form Card */
.contact-form-card,
.contact-info-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 30px;
}

.contact-form-card h3,
.contact-info-card h3 {
    margin-bottom: 6px;
}

.contact-form-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 22px;
}

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

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
}

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

/* Checkbox */
.form-checkbox {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: #475569;
    margin-bottom: 18px;
}

/* Info Blocks */
.info-block {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.info-block strong {
    display: block;
    margin-bottom: 4px;
}

.info-block p {
    font-size: 13px;
    color: #475569;
    margin-bottom: 6px;
}

.info-block a {
    font-size: 13px;
    color: #2563eb;
    text-decoration: none;
}
/* Blog Hero */
.blog-hero {
    background: linear-gradient(180deg, #1e40af, #2563eb);
    padding: 40px 0 30px;
    color: #fff;
    text-align: center;
}

.blog-hero-content {
    max-width: 900px;
    margin: auto;
}

.blog-hero-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.blog-hero h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.blog-hero p {
    font-size: 15px;
    color: #dbeafe;
    max-width: 680px;
    margin: 0 auto 10px;
}

/* Subscribe Box */
.blog-subscribe-box {
    background: rgba(255,255,255,0.15);
    padding: 18px 20px;
    border-radius: 14px;
    display: inline-block;
}

.blog-subscribe-box strong {
    display: block;
    font-size: 14px;
}

.blog-subscribe-box span {
    font-size: 12px;
    color: #e0e7ff;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.subscribe-form input {
    padding: 10px 12px;
    border-radius: 8px;
    border: none;
    width: 220px;
}

.subscribe-form button {
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    background: #f59e0b;
    color: #0f172a;
    font-weight: 600;
    cursor: pointer;
}
.blog-filters {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
}

.filter-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.filter-row input,
.filter-row select {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
}

.results-count {
    margin-left: auto;
    font-size: 13px;
    color: #64748b;
}
.blog-main {
    padding: 80px 0;
    background: #f8fafc;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

/* Blog Card */
.blog-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 20px;
}

.blog-thumb {
    width: 120px;
    height: 120px;
    background: #e5e7eb;
    border-radius: 12px;
}

.blog-tag {
    font-size: 11px;
    font-weight: 600;
    color: #2563eb;
}

.blog-content h3 {
    font-size: 17px;
    margin: 6px 0;
}

.blog-content p {
    font-size: 14px;
    color: #475569;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    margin-top: 8px;
}

/* Sidebar */
.blog-sidebar .sidebar-box {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-box h4 {
    margin-bottom: 12px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    margin-bottom: 10px;
}

.sidebar-list a {
    font-size: 14px;
    color: #1e3a8a;
    text-decoration: none;
}

.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topic-tags span {
    background: #e0e7ff;
    color: #1e40af;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
}
/* Single Blog Hero */
.blog-view-hero {
    background: #f8fafc;
    padding: 70px 0 50px;
}

.blog-view-hero h1 {
    font-size: 32px;
    margin: 12px 0 10px;
    line-height: 1.25;
}

.blog-view-meta {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: #64748b;
}
/* Blog View */
.blog-view-main {
    padding: 70px 0 100px;
    background: #ffffff;
}

.blog-view-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.blog-excerpt {
    font-size: 16px;
    font-weight: 500;
    color: #334155;
    margin-bottom: 26px;
}

/* TinyMCE content styling */
.blog-body {
    font-size: 15px;
    line-height: 1.75;
    color: #1f2937;
}

.blog-body h2,
.blog-body h3 {
    margin: 28px 0 12px;
}

.blog-body ul,
.blog-body ol {
    margin: 12px 0 12px 20px;
}

.blog-body a {
    color: #2563eb;
    text-decoration: underline;
}
/* Admin Layout */
.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
    background: #0f172a;
    color: #fff;
    padding: 24px;
}

.admin-sidebar h3 {
    margin-bottom: 20px;
}

.admin-sidebar nav a {
    display: block;
    padding: 10px 0;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
}

.admin-sidebar nav a:hover {
    color: #ffffff;
}

/* Main */
.admin-main {
    padding: 30px;
}
.admin-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 👈 force single row */
    gap: 20px;
    margin-top: 30px;
}
@media (max-width: 1000px) {
    .admin-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .admin-cards {
        grid-template-columns: 1fr;
    }
}
.portal-divider {
    margin: 60px 0;
    border: none;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        #e5e7eb,
        transparent
    );
}

.admin-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

.admin-card h4 {
    margin-bottom: 6px;
}

.admin-card p {
    font-size: 13px;
    color: #475569;
}

.admin-card a {
    font-size: 13px;
    color: #2563eb;
    text-decoration: none;
}
/* Auth Pages */
.auth-wrapper {
    min-height: 100vh;
    background: linear-gradient(180deg, #1e3a5f, #274c77);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 32px 34px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.auth-header {
    text-align: center;
    margin-bottom: 24px;
}

.auth-header h2 {
    margin-bottom: 6px;
}

.auth-header p {
    font-size: 14px;
    color: #64748b;
}

.auth-form .form-group {
    margin-bottom: 18px;
}

.auth-form label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.auth-form input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
}

.auth-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 16px;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #64748b;
}
/* Regulation View Hero */
.reg-view-hero {
    background: #f8fafc;
    padding: 70px 0 50px;
}

.reg-view-hero h1 {
    font-size: 30px;
    margin: 12px 0;
    line-height: 1.25;
}

.reg-summary {
    font-size: 15px;
    color: #475569;
    max-width: 800px;
}
/* Regulation View */
.reg-view-main {
    padding: 70px 0 100px;
    background: #ffffff;
}

.reg-view-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

/* Info Box */
.reg-info-box {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 30px;
}

.reg-info-box h3 {
    margin-bottom: 18px;
}

/* Metadata Table */
.reg-meta-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 26px;
}

.reg-meta-table td {
    padding: 10px 8px;
    border-bottom: 1px solid #e5e7eb;
}

.reg-meta-table td:first-child {
    font-weight: 600;
    color: #0f172a;
    width: 40%;
}

/* Actions */
.reg-actions {
    display: flex;
    gap: 14px;
}

/* Sidebar */
.reg-sidebar .sidebar-box {
    background: #f8fafc;
    border-radius: 14px;
    padding: 22px;
    border: 1px solid #e5e7eb;
}

.reg-sidebar p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 14px;
}
/* =========================================================
   REGULATIONS PAGE – CLEAN, CONSOLIDATED, AUTHORITATIVE
   ========================================================= */

/* Grid layout */
.reg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    align-items: stretch;
}

/* Card */
.reg-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px;
}

/* Category tag */
.reg-card .tag {
    font-size: 11px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 6px;
}

/* New badge */
.reg-card .badge-new {
    background: #facc15;
    color: #000;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 6px;
}

/* Title */
.reg-card h4 {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 6px;
    color: #0f172a;
}

/* Summary */
.reg-card p {
    font-size: 13px;
    line-height: 1.45;
    color: #64748b;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta row */
.reg-card .reg-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #94a3b8;
    margin: 10px 0 14px;
}

/* Actions pinned to bottom */
.reg-card .reg-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

/* Buttons inside cards */
.reg-card .btn {
    font-size: 13px;
    padding: 8px 14px;
}
/* Regulation card top row */
.reg-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

/* Category tag */
.reg-card .tag {
    font-size: 11px;
    font-weight: 600;
    color: #2563eb;
}

/* New badge – compact */
.reg-card .badge-new {
    background: #facc15;
    color: #000;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
    line-height: 1;
    white-space: nowrap;
}
.reg-dashboard .stats-grid {
    margin-top: 80px;
}
.reg-dashboard {
    padding-bottom: 80px;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Blog list: 2 cards per row */
.blog-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 900px) {
    .blog-list {
        grid-template-columns: 1fr;
    }
}
.services-detail {
    padding: 90px 0;
    background: #f8fafc;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* LEFT NAV */
.services-nav {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 18px;
}

.services-nav a {
    display: block;
    padding: 12px 14px;
    margin-bottom: 6px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    color: #334155;
}

.services-nav a.active {
    background: #163a5f;
    color: #fff;
    font-weight: 600;
}

/* RIGHT CONTENT */
.service-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.service-summary {
    font-size: 15px;
    color: #475569;
    margin-bottom: 26px;
    max-width: 800px;
}

.service-content ul {
    margin-top: 12px;
    padding-left: 20px;
}

.service-content ul li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #334155;
}

.service-actions {
    margin-top: 30px;
    display: flex;
    gap: 14px;
}

/* ===== INDUSTRY ACCORDION FIX ===== */

.industry-card.expandable {
    position: relative;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* FORCE CLOSED STATE */
.industry-expand {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

/* OPEN STATE */
.industry-card.active .industry-expand {
    max-height: 400px; /* enough for list */
    opacity: 1;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

/* Chevron animation */
.industry-card .chevron {
    transition: transform 0.3s ease;
}

.industry-card.active .chevron {
    transform: rotate(180deg);
}

/* List styling */
.industry-expand ul {
    margin: 0;
    padding-left: 18px;
}

.industry-expand li {
    font-size: 13px;
    color: #475569;
    margin-bottom: 6px;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.admin-table th,
.admin-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.admin-table th {
    background: #f8f9fb;
    font-weight: 600;
}

.tag {
    background: #eef2ff;
    color: #334155;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.status {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
}

.status.available {
    background: #e6f9f0;
    color: #067647;
}

.status.used {
    background: #fdecea;
    color: #b42318;
}

.muted {
    color: #999;
    font-size: 13px;
}

.blog-pagination-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 30px;
    padding: 14px 18px;

    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;

    /* IMPORTANT: override card styles */
    box-shadow: none;
}

.blog-pagination-top a {
    font-size: 14px;
    font-weight: 500;
    color: #2563eb;
    text-decoration: none;
}

.blog-pagination-top a:hover {
    text-decoration: underline;
}

.page-status {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}
/* ===== Auth Forms ===== */
.auth-wrap {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.auth-card h2 {
    margin-bottom: 8px;
    font-size: 22px;
}

.auth-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.auth-group {
    margin-bottom: 16px;
}

.auth-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #374151;
}

.auth-group input {
    width: 100%;
    padding: 11px 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

.auth-group input:focus {
    outline: none;
    border-color: #2563eb;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

.auth-btn:hover {
    background: #1e40af;
}

.auth-footer {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
}

.auth-footer a {
    color: #2563eb;
    text-decoration: none;
}

.auth-msg {
    font-size: 13px;
    margin-bottom: 12px;
}
.auth-msg.success { color: #16a34a; }
.auth-msg.error { color: #dc2626; }
.tool-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.tool-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.tool-card.active {
    background: #163a5f;
    color: #fff;
}

.tool-panel {
    display: none;
}

.tool-panel.active {
    display: block;
}

.risk-form {
    max-width: 600px;
}

.risk-form label {
    font-weight: 600;
    margin-top: 16px;
    display: block;
}

.risk-form select {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
}

.risk-result {
    margin-top: 30px;
    padding: 20px;
    border-radius: 12px;
}

.risk-result.low {
    background: #dcfce7;
    color: #166534;
}

.risk-result.medium {
    background: #fef3c7;
    color: #92400e;
}

.risk-result.high {
    background: #fee2e2;
    color: #991b1b;
}
.tool-header {
    max-width: 900px;
    margin-bottom: 40px;
}

.method-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 12px;
    margin-top: 16px;
}

.method-box ul {
    margin-left: 18px;
}

.risk-table {
    width: 100%;
    margin-top: 16px;
    border-collapse: collapse;
    font-size: 13px;
}

.risk-table th,
.risk-table td {
    border-bottom: 1px solid #e5e7eb;
    padding: 10px;
    text-align: left;
}

.risk-group {
    margin-bottom: 18px;
}

.risk-group label {
    font-weight: 600;
}

.risk-group small {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

.risk-result-box {
    margin-top: 40px;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

.risk-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.risk-badge.low { color:#166534; }
.risk-badge.medium { color:#92400e; }
.risk-badge.high { color:#991b1b; }

.risk-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}
/* HERO SLIDER */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    display: none;
    animation: fadeSlide 0.8s ease-in-out;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* AUTH PAGE SPLIT LAYOUT */
.auth-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.auth-info {
    background: #f8fafc;
    border-radius: 12px;
    padding: 40px;
}

.auth-badge {
    display: inline-block;
    background: #e0e7ff;
    color: #1e3a8a;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    font-weight: 600;
}

.auth-info h2 {
    margin-bottom: 12px;
}

.auth-lead {
    font-size: 14px;
    color: #475569;
    margin-bottom: 20px;
}

.auth-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.auth-benefits li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #0f172a;
}

.auth-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

/* MOBILE */
@media (max-width: 900px) {
    .auth-split {
        grid-template-columns: 1fr;
    }

    .auth-info {
        order: 2;
    }
}
.auth-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
}

.auth-value {
    background: #f8fafc;
    border-radius: 14px;
    padding: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.auth-badge {
    display: inline-block;
    background: #e0e7ff;
    color: #1e3a8a;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 14px;
}

.auth-lead {
    font-size: 14px;
    color: #475569;
    margin: 12px auto 20px;
    max-width: 560px;
}

.auth-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-benefits li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #0f172a;
}

.auth-centered {
    margin: 0 auto;
}
