:root {
    --red: #c81e1e;
    --red-dark: #9f1616;
    --green: #146b46;
    --orange: #f59e0b;
    --dark: #111827;
    --muted: #667085;
    --line: #e5e7eb;
    --soft: #f8fafc;
    --white: #ffffff;
    --radius: 22px;
    --container: 1440px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--dark);
    background: #fff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(229,231,235,.9);
    backdrop-filter: blur(18px);
}

.navbar-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, var(--red), #ef6c2f);
    box-shadow: 0 9px 24px rgba(200,30,30,.18);
}

.brand-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
}

.brand-subtitle {
    display: block;
    margin-top: 4px;
    color: #98a2b3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 30px;
    color: #475467;
    font-size: 14px;
    font-weight: 650;
}

.nav-links a:hover {
    color: var(--red);
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 750;
    transition: .2s ease;
}

.btn-primary {
    color: #fff;
    background: var(--red);
    box-shadow: 0 10px 25px rgba(200,30,30,.20);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #fff;
    border: 1px solid #d0d5dd;
}

.btn-secondary:hover {
    background: #f9fafb;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 20%, rgba(245,158,11,.12), transparent 28rem),
        radial-gradient(circle at 10% 20%, rgba(20,107,70,.09), transparent 30rem),
        linear-gradient(#fff, #fbfcfe);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(17,24,39,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,24,39,.035) 1px, transparent 1px);
    background-size: 34px 34px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    min-height: 700px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 70px;
    padding-block: 80px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    border: 1px solid #fecaca;
    border-radius: 999px;
    background: #fff5f5;
    color: #b42318;
    font-size: 13px;
    font-weight: 750;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
}

.hero h1 {
    max-width: 760px;
    margin: 24px 0 0;
    font-size: clamp(46px, 5.4vw, 76px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

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

.hero-copy {
    max-width: 700px;
    margin-top: 26px;
    color: #667085;
    font-size: 19px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 32px;
    color: #475467;
    font-size: 13px;
    font-weight: 650;
}

.check {
    color: var(--green);
    font-weight: 900;
    margin-right: 6px;
}

.dashboard-shell {
    position: relative;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 30px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 32px 80px rgba(16,24,40,.14);
}

.dashboard {
    overflow: hidden;
    border: 1px solid #e4e7ec;
    border-radius: 23px;
    background: #f8fafc;
}

.dash-top {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 22px;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}

.fake-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fake-logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--red);
}

.fake-lines span {
    display: block;
    height: 7px;
    border-radius: 999px;
    background: #d0d5dd;
}

.fake-lines span:first-child {
    width: 95px;
    background: #1d2939;
}

.fake-lines span:last-child {
    width: 65px;
    margin-top: 7px;
}

.dash-main {
    min-height: 430px;
    display: grid;
    grid-template-columns: 145px 1fr;
}

.dash-side {
    padding: 18px;
    background: #101828;
}

.dash-side span {
    display: block;
    height: 38px;
    margin-bottom: 11px;
    border-radius: 9px;
    background: rgba(255,255,255,.10);
}

.dash-side span:first-child {
    background: var(--red);
}

.dash-content {
    padding: 24px;
}

.dash-title {
    width: 180px;
    height: 22px;
    border-radius: 7px;
    background: #101828;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 13px;
    margin-top: 24px;
}

.metric {
    min-height: 110px;
    padding: 17px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(16,24,40,.05);
}

.metric-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #fee2e2;
}

.metric:nth-child(2) .metric-icon {
    background: #dcfce7;
}

.metric:nth-child(3) .metric-icon {
    background: #fef3c7;
}

.metric-line {
    width: 55px;
    height: 18px;
    margin-top: 18px;
    border-radius: 5px;
    background: #111827;
}

.chart-card {
    min-height: 180px;
    margin-top: 15px;
    padding: 18px;
    border-radius: 16px;
    background: #fff;
}

.bars {
    height: 110px;
    display: flex;
    align-items: end;
    gap: 12px;
    margin-top: 22px;
}

.bars span {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: rgba(200,30,30,.76);
}

.floating-badge {
    position: absolute;
    left: -35px;
    bottom: -24px;
    padding: 15px 18px;
    border: 1px solid #fff;
    border-radius: 18px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 16px 35px rgba(16,24,40,.14);
    font-size: 13px;
    font-weight: 750;
}

.stats {
    border-block: 1px solid var(--line);
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.stat {
    padding: 28px 22px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border-right: 0;
}

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

.stat span {
    display: block;
    margin-top: 5px;
    color: #98a2b3;
    font-size: 12px;
}

.section {
    padding-block: 100px;
}

.section-soft {
    background: #f8fafc;
}

.section-dark {
    color: #fff;
    background: #101828;
}

.section-heading {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.section-label {
    color: var(--red);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.section-dark .section-label {
    color: #fbbf24;
}

.section-heading h2,
.split-copy h2 {
    margin: 14px 0 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.section-heading p,
.split-copy p {
    margin-top: 20px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.section-dark .section-heading p {
    color: #98a2b3;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 55px;
}

.card {
    min-height: 250px;
    padding: 28px;
    border: 1px solid #e4e7ec;
    border-radius: var(--radius);
    background: #fff;
    transition: .25s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(16,24,40,.09);
}

.card-number {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--red);
    background: #fff1f2;
    font-size: 13px;
    font-weight: 900;
}

.card h3 {
    margin: 22px 0 0;
    font-size: 19px;
}

.card p {
    margin-top: 11px;
    color: #667085;
    font-size: 14px;
    line-height: 1.75;
}

.split {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.steps {
    display: grid;
    gap: 14px;
}

.step {
    display: flex;
    gap: 18px;
    padding: 22px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #f9fafb;
}

.step-number {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: #101828;
    font-weight: 850;
}

.step h3 {
    margin: 0;
    font-size: 17px;
}

.step p {
    margin: 7px 0 0;
    color: #667085;
    font-size: 14px;
}

.roles {
    max-width: 1160px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    margin: 52px auto 0;
}

.role-card {
    min-height: 240px;
    padding: 26px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius);
    background: rgba(255,255,255,.055);
}

.role-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #101828;
    background: #fff;
    font-size: 13px;
    font-weight: 900;
}

.role-card h3 {
    margin: 24px 0 0;
    font-size: 19px;
}

.role-card p {
    color: #98a2b3;
    font-size: 14px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-panel {
    padding: 46px;
    border-radius: 30px;
    color: #fff;
    background:
        linear-gradient(135deg, var(--red), #dc3b24 58%, #f59e0b);
    box-shadow: 0 28px 60px rgba(200,30,30,.20);
}

.about-panel h3 {
    max-width: 600px;
    margin: 16px 0 0;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.12;
}

.about-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 36px;
}

.about-mini div {
    padding: 20px;
    border-radius: 16px;
    background: rgba(255,255,255,.14);
}

.about-mini strong {
    display: block;
    font-size: 20px;
}

.about-list {
    display: grid;
    gap: 17px;
    margin-top: 28px;
}

.about-list div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #475467;
    font-weight: 650;
}

.cta-wrap {
    padding-bottom: 90px;
}

.cta {
    padding: 65px 30px;
    border-radius: 32px;
    color: #fff;
    text-align: center;
    background: #101828;
}

.cta h2 {
    max-width: 860px;
    margin: auto;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
}

.cta p {
    max-width: 650px;
    margin: 18px auto 0;
    color: #98a2b3;
}

.cta .btn {
    margin-top: 30px;
}

.footer {
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-block: 55px;
}

.footer p {
    max-width: 500px;
    color: #667085;
    font-size: 14px;
}

.footer-title {
    font-weight: 800;
}

.footer-links {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    color: #667085;
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-block: 20px;
    border-top: 1px solid var(--line);
    color: #98a2b3;
    font-size: 12px;
}

@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }

    .hero-inner,
    .split,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        padding-bottom: 110px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .dashboard-shell {
        max-width: 720px;
        margin-inline: auto;
    }

    .cards,
    .roles {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 700px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .navbar-inner {
        min-height: 68px;
    }

    .brand-subtitle {
        display: none;
    }

    .navbar .btn {
        padding-inline: 15px;
        font-size: 12px;
    }

    .hero-inner {
        min-height: auto;
        padding-block: 62px 95px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-copy {
        font-size: 16px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .dash-main {
        grid-template-columns: 85px 1fr;
    }

    .dash-side {
        padding: 12px;
    }

    .dash-content {
        padding: 16px;
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .metric:nth-child(n+2) {
        display: none;
    }

    .floating-badge {
        left: 8px;
    }

    .stats-grid,
    .cards,
    .roles,
    .about-mini {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stat:last-child {
        border-bottom: 0;
    }

    .section {
        padding-block: 72px;
    }

    .about-panel {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}


/*
 * central-contact-page-v1
 */

.contact-page {
    min-height: calc(100vh - 150px);
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(20,107,70,.08),
            transparent 28rem
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(245,158,11,.10),
            transparent 28rem
        ),
        #f8fafc;
}

.contact-hero {
    padding: 95px 0 115px;
}

.contact-heading {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.contact-heading h1 {
    margin: 14px 0 0;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.contact-heading p {
    max-width: 680px;
    margin: 22px auto 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 60px auto 0;
}

.contact-card {
    position: relative;
    min-height: 360px;
    padding: 34px;
    border: 1px solid #e4e7ec;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16,24,40,.05);
    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(16,24,40,.10);
}

.contact-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #c81e1e;
    background: #fff1f2;
}

.contact-icon svg {
    width: 29px;
    height: 29px;
}

.contact-icon.whatsapp {
    color: #15803d;
    background: #ecfdf3;
}

.contact-type {
    margin-top: 28px;
    color: #667085;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-card h2 {
    margin: 9px 0 0;
    font-size: 23px;
    line-height: 1.3;
}

.contact-card h2 a:hover {
    color: #c81e1e;
}

.contact-person {
    margin-top: 7px;
    color: #101828;
    font-size: 17px;
    font-weight: 800;
}

.contact-card p {
    margin-top: 20px;
    color: #667085;
    font-size: 14px;
    line-height: 1.8;
}

.contact-link {
    display: inline-flex;
    margin-top: 16px;
    color: #15803d;
    font-size: 14px;
    font-weight: 800;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-logo-image {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.contact-logo {
    display: block;
    width: auto;
    height: 46px;
    max-width: 280px;
    object-fit: contain;
}

@media (max-width: 700px) {
    .contact-logo {
        height: 40px;
        max-width: 220px;
    }
}

@media (max-width: 950px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .contact-card {
        min-height: auto;
    }
}

@media (max-width: 700px) {
    .contact-hero {
        padding: 65px 0 80px;
    }

    .contact-heading p {
        font-size: 16px;
    }

    .contact-card {
        padding: 27px;
    }

    .contact-card h2 {
        font-size: 20px;
    }
}

.dashboard-shell {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.dashboard-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ==================================================
   HERO IMAGE — FINAL OVERRIDE
   ================================================== */

.dashboard-shell {
    position: relative;

    width: 100%;
    max-width: 760px;

    margin: 0 auto;
    padding: 0;

    border: 0;
    border-radius: 0;

    background: transparent;
    box-shadow: none;

    overflow: visible;
}

.dashboard-image {
    display: block;

    width: 100%;
    max-width: none;
    height: auto;

    margin: 0;
    padding: 0;

    border: 0;
    border-radius: 0;

    background: transparent;
    box-shadow: none;

    object-fit: contain;
}

@media (max-width: 900px) {
    .dashboard-shell {
        max-width: 680px;
        margin: 32px auto 0;
    }
}

@media (max-width: 700px) {
    .dashboard-shell {
        max-width: 100%;
        margin: 28px auto 0;
    }

    .dashboard-image {
        width: 100%;
        height: auto;
    }
}

.role-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.role-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
}

/* ==================================================
   ROLE ICON — FINAL COLOR FIX
   ================================================== */

.role-icon {
    color: #d92d20;
}

.role-icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: #d92d20;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;

    display: block;
}

/* ==================================================
   MAIN LOGO
   ================================================== */

.brand.brand-image {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-logo {
    display: block;
    width: auto;
    height: 46px;
    max-width: 280px;
    object-fit: contain;
}

@media (max-width: 700px) {
    .main-logo {
        height: 40px;
        max-width: 220px;
    }
}

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

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 14px;
}

.footer-logo {
    display: block;
    width: auto;
    height: 44px;
    max-width: 260px;
    object-fit: contain;
}

@media (max-width: 700px) {
    .footer-logo {
        height: 40px;
        max-width: 220px;
    }
}

/* ==================================================
   CONTACT HEADER LOGO — FINAL
   ================================================== */

.navbar .contact-logo-image {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.navbar .contact-logo {
    display: block;
    width: auto !important;
    height: 46px !important;
    max-width: 280px !important;
    max-height: 46px !important;
    object-fit: contain;
}

@media (max-width: 700px) {
    .navbar .contact-logo {
        width: auto !important;
        height: 40px !important;
        max-width: 220px !important;
        max-height: 40px !important;
    }
}
