:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-soft: #edf3f8;
    --text: #142033;
    --muted: #64748b;
    --line: #d8e2ec;
    --navy: #123b5d;
    --navy-2: #0b2c47;
    --blue: #1f6fa8;
    --blue-soft: #e6f1f8;
    --green: #138a5b;
    --amber: #b7791f;
    --shadow: 0 16px 40px rgba(31, 55, 78, .10);
    --radius: 18px;
}

* { 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;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
}

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

.shell {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 2px 12px rgba(15, 23, 42, .08);
}

.header-top {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

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

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
}

.brand-main {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.4px;
}

.brand-sub {
    color: var(--muted);
    font-size: 12px;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--amber);
}

.status-ok { background: var(--green); }
.status-warn { background: var(--amber); }

.main-nav {
    background: var(--navy-2);
    color: #fff;
}

.nav-inner {
    min-height: 50px;
    display: flex;
    align-items: stretch;
    gap: 2px;
    overflow-x: auto;
}

.nav-inner a {
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 13px;
    white-space: nowrap;
    color: rgba(255,255,255,.82);
    border-bottom: 3px solid transparent;
}

.nav-inner a:hover,
.nav-inner a.active {
    color: #fff;
    background: rgba(255,255,255,.07);
    border-bottom-color: #7dc4ef;
}

.hero {
    background:
        radial-gradient(circle at 80% 20%, rgba(125,196,239,.20), transparent 35%),
        linear-gradient(135deg, #0b2c47, #174f78);
    color: #fff;
    padding: 76px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
    font-weight: 800;
    opacity: .82;
    margin-bottom: 10px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.02;
    max-width: 760px;
    margin-bottom: 22px;
    letter-spacing: -1.6px;
}

.hero-text {
    max-width: 760px;
    font-size: 18px;
    color: rgba(255,255,255,.82);
}

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

.btn {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.btn-primary {
    background: #fff;
    color: var(--navy-2);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
}

.hero-panel {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius);
    padding: 26px;
    backdrop-filter: blur(8px);
}

.metric {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
}

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

.metric strong {
    display: block;
    font-size: 26px;
    margin-bottom: 3px;
}

.metric span {
    font-size: 12px;
    color: rgba(255,255,255,.70);
}

.section {
    padding: 70px 0;
}

.section-soft {
    background: var(--surface-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.section-heading h2 {
    font-size: 32px;
    margin-bottom: 0;
}

.section-heading > p {
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 0;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tool-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    min-height: 210px;
    display: flex;
    gap: 16px;
    box-shadow: 0 3px 10px rgba(31,55,78,.04);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #b9d1e2;
}

.tool-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 14px;
    background: var(--blue-soft);
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 900;
}

.tool-content { min-width: 0; width: 100%; }

.tool-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.tool-topline h3 {
    font-size: 17px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.tool-card p {
    color: var(--muted);
    font-size: 13px;
    min-height: 62px;
}

.badge {
    font-size: 10px;
    line-height: 1;
    padding: 6px 8px;
    border-radius: 999px;
    background: #f7ead6;
    color: #9a6416;
    font-weight: 800;
    white-space: nowrap;
}

.badge-active {
    background: #dcf5e9;
    color: #0d774d;
}

.tool-link {
    font-size: 12px;
    font-weight: 800;
    color: var(--blue);
}

.tool-link.muted { color: #94a3b8; }

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.info-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}

.info-card > span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 20px;
}

.info-card h3 { margin-bottom: 8px; font-size: 16px; }
.info-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; }

.site-footer {
    background: #081f33;
    color: rgba(255,255,255,.72);
}

.footer-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
}

.footer-inner > div:first-child {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-inner strong { color: #fff; }

@media (max-width: 900px) {
    .hero-grid,
    .tool-grid,
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .section-heading {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 620px) {
    .header-top-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0;
    }

    .hero { padding: 54px 0; }

    .tool-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 20px 0;
    }
}


/* V24 Professional Cable Engineering Home */
.hero-engineering{
    position:relative;
    overflow:hidden;
    padding:74px 0 78px;
    background:
        radial-gradient(circle at 85% 10%, rgba(75,151,204,.22), transparent 32%),
        radial-gradient(circle at 8% 92%, rgba(35,104,154,.18), transparent 28%),
        linear-gradient(135deg,#0b2c47 0%,#153f60 55%,#1c5279 100%);
}
.hero-engineering::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
    background-size:42px 42px;
    mask-image:linear-gradient(to right,rgba(0,0,0,.30),rgba(0,0,0,.05));
}
.hero-engineering-grid{
    position:relative;
    z-index:1;
    grid-template-columns:minmax(0,1.05fr) minmax(460px,.95fr);
    gap:58px;
}
.hero-copy{
    align-self:center;
}
.hero-engineering h1{
    max-width:780px;
    font-size:clamp(46px,5vw,72px);
    line-height:.98;
    margin-bottom:22px;
    letter-spacing:-2px;
}
.hero-engineering .hero-text{
    max-width:760px;
    font-size:17px;
    line-height:1.72;
    color:rgba(255,255,255,.79);
}
.hero-tech-strip{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:28px;
}
.hero-tech-strip span{
    min-width:52px;
    min-height:34px;
    padding:6px 10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.16);
    border-radius:8px;
    background:rgba(255,255,255,.055);
    color:rgba(255,255,255,.85);
    font-size:12px;
    font-weight:800;
    letter-spacing:.02em;
}

.engineering-visual{
    position:relative;
    min-height:455px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.18);
    border-radius:22px;
    background:
        linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.055));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.13),
        0 24px 60px rgba(4,24,41,.28);
    backdrop-filter:blur(10px);
    padding:24px;
}
.visual-grid-lines{
    position:absolute;
    inset:0;
    opacity:.22;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
    background-size:28px 28px;
}
.visual-header{
    position:relative;
    z-index:2;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    padding-bottom:16px;
    border-bottom:1px solid rgba(255,255,255,.13);
}
.visual-header>div{
    display:flex;
    flex-direction:column;
    gap:4px;
}
.visual-kicker{
    color:#9cd4f4;
    font-size:9px;
    font-weight:900;
    letter-spacing:.14em;
}
.visual-header strong{
    color:#fff;
    font-size:15px;
}
.visual-standard{
    display:grid;
    place-items:center;
    width:44px;
    height:44px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:11px;
    background:rgba(8,36,57,.34);
    color:#d9f0ff;
    font-size:12px;
    font-weight:900;
}

.cable-schematic{
    position:absolute;
    left:42px;
    top:116px;
    width:170px;
    height:170px;
}
.cable-core{
    position:absolute;
    inset:12px;
    border:2px solid rgba(171,221,249,.92);
    border-radius:50%;
    box-shadow:
        0 0 0 12px rgba(121,188,229,.09),
        0 0 0 24px rgba(121,188,229,.05);
}
.strand{
    position:absolute;
    width:42px;
    height:42px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.72);
    background:radial-gradient(circle at 35% 30%,#fff5d6 0,#e9a85d 45%,#9a5827 100%);
    box-shadow:inset 0 0 8px rgba(69,31,8,.45);
}
.s1{left:52px;top:52px}
.s2{left:52px;top:9px}
.s3{left:91px;top:31px}
.s4{left:91px;top:75px}
.s5{left:52px;top:96px}
.s6{left:13px;top:75px}
.s7{left:13px;top:31px}

.dimension-line{
    position:absolute;
    color:#a9ddfa;
    font-size:10px;
    font-weight:900;
}
.dimension-x{
    left:14px;
    right:14px;
    bottom:-18px;
    border-top:1px solid rgba(169,221,250,.65);
    text-align:center;
}
.dimension-y{
    top:14px;
    bottom:14px;
    right:-18px;
    border-left:1px solid rgba(169,221,250,.65);
}
.dimension-y span{
    position:absolute;
    top:48%;
    left:5px;
}

.formula-panel{
    position:absolute;
    right:28px;
    width:250px;
    padding:13px 15px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:12px;
    background:rgba(8,36,57,.38);
    box-shadow:0 8px 20px rgba(5,28,46,.12);
}
.formula-panel span{
    display:block;
    margin-bottom:5px;
    color:#94cceb;
    font-size:8px;
    font-weight:900;
    letter-spacing:.10em;
}
.formula-panel strong{
    color:#fff;
    font-size:13px;
    font-family:"Segoe UI",Arial,sans-serif;
}
.formula-one{top:118px}
.formula-two{top:202px}

.visual-data-row{
    position:absolute;
    left:28px;
    right:28px;
    bottom:54px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
}
.visual-data-row div{
    padding:10px 11px;
    border:1px solid rgba(255,255,255,.13);
    border-radius:10px;
    background:rgba(8,36,57,.28);
}
.visual-data-row span{
    display:block;
    margin-bottom:3px;
    color:rgba(255,255,255,.57);
    font-size:8px;
}
.visual-data-row strong{
    color:#eaf7ff;
    font-size:11px;
}

.visual-signal{
    position:absolute;
    left:28px;
    bottom:20px;
    display:flex;
    align-items:center;
    gap:7px;
    color:rgba(255,255,255,.60);
    font-size:9px;
}
.signal-dot{
    width:7px;
    height:7px;
    border-radius:50%;
    background:#36b37e;
    box-shadow:0 0 0 4px rgba(54,179,126,.12);
}

@media(max-width:1040px){
    .hero-engineering-grid{
        grid-template-columns:1fr;
    }
    .engineering-visual{
        width:min(680px,100%);
    }
}
@media(max-width:620px){
    .hero-engineering{
        padding:54px 0 60px;
    }
    .hero-engineering h1{
        font-size:42px;
    }
    .engineering-visual{
        min-height:530px;
    }
    .cable-schematic{
        left:50%;
        transform:translateX(-50%);
        top:110px;
    }
    .formula-panel{
        left:20px;
        right:20px;
        width:auto;
    }
    .formula-one{top:300px}
    .formula-two{top:370px}
    .visual-data-row{
        bottom:50px;
        grid-template-columns:repeat(3,1fr);
    }
}


/* V25 screenshot-inspired live homepage */
.visual-hero{
    position:relative;
    min-height:525px;
    overflow:hidden;
    background:#071c31;
    color:#fff;
}
.visual-hero-media{
    position:absolute;
    inset:0;
    background-position:right center;
    background-repeat:no-repeat;
    background-size:cover;
}
.visual-hero-shade{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(4,22,40,.98) 0%,rgba(6,31,54,.92) 30%,rgba(7,34,58,.53) 55%,rgba(7,27,47,.14) 78%,rgba(7,27,47,.16) 100%);
}
.visual-hero-inner{
    position:relative;
    z-index:2;
    min-height:525px;
    display:flex;
    align-items:center;
}
.visual-hero-copy{
    width:min(510px,48%);
    padding:54px 0 68px;
}
.visual-kicker{
    font-size:11px;
    line-height:1;
    letter-spacing:.24em;
    color:#37a8f4;
    font-weight:900;
    margin-bottom:17px;
}
.visual-hero h1{
    margin:0;
    max-width:520px;
    font-size:clamp(46px,5vw,69px);
    line-height:.96;
    letter-spacing:-2.2px;
    color:#fff;
}
.visual-hero h1::first-line{color:#fff}
.hero-rule{
    width:66px;
    height:4px;
    margin:22px 0 20px;
    border-radius:10px;
    background:#1d91ee;
}
.visual-hero-copy p{
    max-width:445px;
    margin:0;
    color:rgba(255,255,255,.89);
    font-size:15px;
    line-height:1.65;
}
.visual-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:26px;
}
.visual-btn{
    min-height:44px;
    padding:0 17px;
    border-radius:8px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    font-size:12px;
    font-weight:800;
    text-decoration:none;
}
.visual-btn.primary{
    background:#147be8;
    color:#fff;
    box-shadow:0 8px 20px rgba(9,84,169,.25);
}
.visual-btn.primary:hover{background:#0b6bd2}
.visual-btn.secondary{
    background:rgba(3,25,45,.38);
    color:#fff;
    border:1px solid rgba(255,255,255,.34);
}
.hero-data-overlay{
    position:absolute;
    right:8px;
    bottom:38px;
    display:flex;
    gap:8px;
}
.data-chip{
    min-width:68px;
    padding:8px 10px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:9px;
    background:rgba(3,25,45,.48);
    backdrop-filter:blur(8px);
}
.data-chip span{
    display:block;
    color:#85c9f3;
    font-size:9px;
    font-weight:900;
}
.data-chip strong{
    display:block;
    margin-top:2px;
    color:#fff;
    font-size:11px;
}

.feature-band{
    position:relative;
    z-index:3;
    margin-top:-42px;
}
.feature-band-inner{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    background:#fff;
    border:1px solid #dbe5ec;
    border-radius:12px;
    box-shadow:0 10px 32px rgba(20,45,65,.13);
    overflow:hidden;
}
.feature-band article{
    min-height:88px;
    padding:17px 18px;
    display:flex;
    align-items:center;
    gap:12px;
    border-right:1px solid #e3ebf0;
}
.feature-band article:last-child{border-right:0}
.feature-icon{
    width:42px;
    height:42px;
    flex:0 0 42px;
    display:grid;
    place-items:center;
    color:#0d3c75;
    font-size:26px;
    font-weight:800;
}
.feature-band strong{
    display:block;
    color:#0f2e56;
    font-size:11px;
    margin-bottom:3px;
}
.feature-band span{
    display:block;
    color:#536b81;
    font-size:10px;
    line-height:1.45;
}

#calculation-tools.section{
    padding:55px 0 72px;
    background:#f8fafc;
}
#calculation-tools .section-heading{
    align-items:end;
    margin-bottom:22px;
}
#calculation-tools .section-heading h2{
    font-size:24px;
    color:#0d2d54;
}
#calculation-tools .section-heading .eyebrow{
    color:#1477cc;
    margin-bottom:5px;
}
#calculation-tools .section-heading>p{
    font-size:12px;
    color:#687c8e;
}

#calculation-tools .tool-grid{
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:11px;
}
.visual-module-card{
    position:relative;
    min-height:272px;
    display:block;
    padding:0;
    overflow:hidden;
    border-radius:11px;
    border:1px solid #dbe4ea;
    box-shadow:0 5px 15px rgba(15,42,63,.08);
    transition:transform .16s ease,box-shadow .16s ease;
}
.visual-module-card:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 24px rgba(15,42,63,.13);
}
.visual-module-card::before{
    left:0;right:0;top:auto;bottom:0;
    width:auto;height:3px;
    background:var(--module-accent,#16825f)!important;
}
.module-photo{
    height:105px;
    background-color:#e8eef3;
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
}
.module-icon-badge{
    position:absolute;
    top:86px;
    left:13px;
    width:40px;
    height:40px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--module-accent,#16825f);
    color:#fff;
    border:4px solid #fff;
    font-size:16px;
    font-weight:900;
    box-shadow:0 3px 8px rgba(12,43,62,.13);
}
.visual-module-card .tool-content{
    padding:28px 14px 11px;
}
.visual-module-card .tool-topline{
    display:block;
}
.visual-module-card .tool-topline h3{
    margin:0 0 8px;
    font-size:14px;
    line-height:1.25;
    color:inherit!important;
}
.visual-module-card .badge{
    display:none;
}
.visual-module-card .tool-content p{
    min-height:55px;
    margin:0;
    font-size:10.5px;
    line-height:1.48;
    color:inherit!important;
    opacity:.74;
}
.module-footer{
    margin-top:11px;
    padding-top:8px;
    border-top:1px solid #e3e9ed;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
}
.module-status-line{
    display:flex;
    align-items:center;
    gap:5px;
    font-size:9px;
    font-weight:800;
}
.module-status-line i{
    width:6px;height:6px;border-radius:50%;display:inline-block;
}
.module-status-line.active{color:#13865d}
.module-status-line.active i{background:#18a86f}
.module-status-line.planned{color:#d28a15}
.module-status-line.planned i{background:#f0a21a}
.module-arrow{
    display:grid;
    place-items:center;
    width:22px;height:22px;
    color:var(--module-accent,#176b9a);
    text-decoration:none;
    font-size:18px;
}
.module-arrow.muted{opacity:.35}

@media(max-width:1200px){
    #calculation-tools .tool-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
    .feature-band-inner{grid-template-columns:repeat(3,minmax(0,1fr))}
    .feature-band article:nth-child(3){border-right:0}
}
@media(max-width:820px){
    .visual-hero-media{background-position:62% center}
    .visual-hero-shade{background:linear-gradient(90deg,rgba(4,22,40,.97),rgba(6,30,52,.80))}
    .visual-hero-copy{width:72%}
    .feature-band-inner{grid-template-columns:1fr 1fr}
    .feature-band article{border-bottom:1px solid #e3ebf0}
}
@media(max-width:620px){
    .visual-hero{min-height:560px}
    .visual-hero-inner{min-height:560px}
    .visual-hero-copy{width:100%;padding:48px 0 80px}
    .visual-hero h1{font-size:45px}
    .hero-data-overlay{display:none}
    .feature-band{margin-top:-24px}
    .feature-band-inner{grid-template-columns:1fr}
    .feature-band article{border-right:0}
    #calculation-tools .tool-grid{grid-template-columns:1fr}
    .module-photo{height:155px}
}


/* V28 full module-card navigation */
.visual-module-card{position:relative}
.module-card-link{
    position:absolute;
    inset:0;
    z-index:8;
    display:block;
    border-radius:inherit;
    cursor:pointer;
}
.visual-module-card:has(.module-card-link){cursor:pointer}
.visual-module-card:has(.module-card-link):hover{
    transform:translateY(-4px);
    box-shadow:0 14px 28px rgba(15,42,63,.15);
}
.module-arrow{display:none!important}


/* V29 homepage cleanup */
.hero-data-overlay,
.feature-band{display:none!important}
#calculation-tools.section,
#calculation-tools{
    padding-top:46px!important;
}


/* V31 fixed responsive module-card image geometry */
.visual-module-card .module-photo{
    width:100%;
    height:auto!important;
    aspect-ratio:16/9;
    background-size:cover!important;
    background-position:center!important;
    background-repeat:no-repeat!important;
}
.visual-module-card{
    height:100%;
}


/* V32 Public Module Card colors */
#calculation-tools .visual-module-card{
    background-color:var(--card-bg,#ffffff)!important;
    color:var(--card-text,#18384e)!important;
}
#calculation-tools .visual-module-card .tool-content,
#calculation-tools .visual-module-card .tool-topline h3,
#calculation-tools .visual-module-card .tool-content p{
    color:var(--card-text,#18384e)!important;
}
#calculation-tools .visual-module-card .module-icon-badge,
#calculation-tools .visual-module-card::before,
#calculation-tools .visual-module-card .module-status-line i{
    background:var(--module-accent,#16825f)!important;
}
#calculation-tools .visual-module-card .module-status-line{
    color:var(--module-accent,#16825f)!important;
}

.request-calculation-band{padding:0 0 64px;background:#f8fafc}
.request-calculation-inner{display:flex;align-items:center;justify-content:space-between;gap:28px;padding:24px 26px;border:1px solid #d7e4eb;border-radius:14px;background:linear-gradient(135deg,#fff,#f3f8fb);box-shadow:0 5px 18px rgba(17,48,69,.05)}
.request-calculation-inner h2{margin:0 0 5px;font-size:21px;color:#123b5d}.request-calculation-inner p{margin:0;color:#708392;font-size:11px}
.request-calculation-button{flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 16px;border-radius:8px;background:#176d9f;color:#fff;text-decoration:none;font-size:11px;font-weight:850}
@media(max-width:700px){.request-calculation-inner{align-items:flex-start;flex-direction:column}}


/* V38 Request a Calculation button */
.visual-btn.request-hero-btn{
    background:#ffffff;
    color:#123b5d;
    border:1px solid rgba(255,255,255,.88);
    min-height:48px;
    padding:0 21px;
    font-size:12px;
    font-weight:850;
    box-shadow:0 8px 20px rgba(2,22,38,.15);
}
.visual-btn.request-hero-btn:hover{
    background:#eef7fc;
    color:#0b2c47;
}
.request-calculation-button{
    min-height:50px!important;
    padding:0 23px!important;
    font-size:12px!important;
    font-weight:900!important;
    gap:12px;
    box-shadow:0 7px 18px rgba(23,109,159,.18);
}
