/* Mahakode company profile aligned with the Mahakasir Laundry visual system. */
:root {
    --ink: #071e3e;
    --ink-soft: #123456;
    --muted: #64748b;
    --line: #dce8f2;
    --paper: #f4faff;
    --white: #ffffff;
    --blue: #087cd4;
    --blue-dark: #0b2f5f;
    --green: #1eb980;
    --amber: #f49a4a;
    --coral: #ef6a67;
    --cyan: #27c4e9;
    --shadow: 0 30px 90px rgba(7, 30, 62, .14);
    --soft-shadow: 0 16px 48px rgba(7, 30, 62, .08);
    --font-sans: Inter, "Segoe UI", Arial, sans-serif;
}

body {
    background: #ffffff;
    color: var(--ink);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 76px;
    margin: 0;
    padding: 0 clamp(22px, 6.8vw, 92px);
    border: 0;
    border-bottom: 1px solid rgba(220, 232, 242, .62);
    border-radius: 0;
    background: rgba(243, 250, 255, .78);
    box-shadow: none;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .94);
    border-color: rgba(220, 232, 242, .9);
    box-shadow: 0 10px 30px rgba(7, 30, 62, .05);
}

.brand {
    min-width: 275px;
    color: var(--ink);
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 9px 22px rgba(8, 124, 212, .23);
    transform: rotate(-7deg);
}

.brand-mark::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 3px solid #ffffff;
    border-radius: 50%;
}

.brand-mark::after {
    inset: auto;
    right: 9px;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #ffffff;
    animation: none;
    transform: none;
}

.brand-text strong {
    font-size: 1.08rem;
    font-weight: 850;
    letter-spacing: -.4px;
}

.brand-text small {
    color: #66809a;
    font-size: .72rem;
    font-weight: 750;
}

.main-nav {
    gap: 18px;
    color: #1d3350;
    font-size: .9rem;
    font-weight: 850;
}

.main-nav a {
    position: relative;
    padding: 9px 0;
    border-radius: 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: -10px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    opacity: 0;
    transition: left .25s ease, right .25s ease, opacity .25s ease;
}

.main-nav a:hover,
.main-nav a:focus {
    background: transparent;
    color: var(--blue);
}

.main-nav a:hover::after,
.main-nav a:focus::after {
    left: 0;
    right: 0;
    opacity: 1;
}

.button.primary,
.nav-cta {
    min-height: 48px;
    border: 1px solid var(--blue);
    border-radius: 12px;
    background: linear-gradient(135deg, #0a8bdd, #0872c5);
    box-shadow: 0 14px 30px rgba(8, 124, 212, .25);
    font-weight: 850;
}

.button.secondary {
    min-height: 48px;
    border-color: var(--line);
    border-radius: 12px;
    background: #ffffff;
    color: var(--ink);
    box-shadow: 0 8px 25px rgba(7, 30, 62, .07);
    font-weight: 850;
}

.hero {
    min-height: 100vh;
    padding-top: 146px;
    background:
        linear-gradient(rgba(8, 124, 212, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 124, 212, .04) 1px, transparent 1px),
        linear-gradient(180deg, #eff9ff 0%, #f8fcff 74%, #ffffff 100%);
    background-size: 48px 48px, 48px 48px, auto;
}

.hero::before {
    inset: 0;
    height: auto;
    background:
        radial-gradient(circle at 78% 17%, rgba(39, 196, 233, .18), transparent 28rem),
        radial-gradient(circle at 15% 45%, rgba(8, 124, 212, .10), transparent 25rem);
    pointer-events: none;
}

.hero h1 {
    color: #0b2345;
    font-size: clamp(3.15rem, 5.35vw, 4.95rem);
    line-height: 1.04;
    font-weight: 850;
}

.hero h1 em,
.hero h1 span {
    color: var(--blue);
    font-style: normal;
}

.hero-copy > p:not(.eyebrow) {
    color: #637b96;
    font-size: clamp(1rem, 1.42vw, 1.18rem);
    line-height: 1.78;
}

.eyebrow,
.section-kicker {
    color: var(--blue) !important;
    letter-spacing: 1.4px;
}

.eyebrow::before {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 0 5px rgba(39, 196, 233, .14);
}

.company-showcase {
    border-color: rgba(255, 255, 255, .95);
    border-radius: 18px;
    box-shadow: 0 40px 100px rgba(7, 30, 62, .22), 0 0 0 8px rgba(255, 255, 255, .5);
    transform: perspective(1300px) rotateY(-3deg) rotateX(1deg);
}

.company-showcase-top {
    height: 46px;
    padding: 0 18px;
    background: #f5f8fb;
}

.company-showcase-top strong {
    color: #27415e;
}

.company-showcase-body {
    background:
        linear-gradient(rgba(8, 124, 212, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 124, 212, .04) 1px, transparent 1px),
        #f4f8fc;
    background-size: 38px 38px;
}

.browser-hero,
.blueprint-browser,
.blueprint-card,
.blueprint-flow article,
.blueprint-checklist,
.summary-grid div,
.chart-card,
.task-list p,
.order-card,
.card-grid article,
.content-grid article,
.product-list article,
.pricing-grid article,
.blog-grid article {
    border-color: #dce8f2;
    box-shadow: 0 14px 45px rgba(7, 30, 62, .06);
}

.blueprint-card.accent,
.order-card.accent {
    background: linear-gradient(135deg, #092c58, #071c3d);
}

.browser-hero {
    background:
        linear-gradient(135deg, rgba(8, 124, 212, .09), rgba(39, 196, 233, .08)),
        #ffffff;
}

.browser-hero i {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.trust-strip span,
.feature-list span,
.solution-list a {
    border-color: rgba(153, 190, 214, .4);
    background: rgba(255, 255, 255, .82);
}

.solution-strip {
    margin-top: -34px;
    border-color: rgba(153, 190, 214, .38);
    border-radius: 18px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 24px 70px rgba(7, 30, 62, .1);
    backdrop-filter: blur(16px);
}

.solution-icon,
.card-icon,
.product-mini-icon {
    border-color: rgba(8, 124, 212, .16);
    background:
        linear-gradient(135deg, rgba(39, 196, 233, .16), rgba(8, 124, 212, .12)),
        #f8fbff;
    color: var(--blue);
}

.section:nth-of-type(even):not(.process):not(.service-process-band):not(.split-section):not(.final-company-cta) {
    background: #f4faff;
}

.product-list article:first-child {
    background: linear-gradient(135deg, #ffffff, #edf9ff);
}

.product-list article:nth-child(2) {
    background: linear-gradient(135deg, #ffffff, #f5fbff);
}

.process {
    background: linear-gradient(135deg, #08264e, #061833) !important;
    color: #ffffff;
}

.process .eyebrow,
.process h2 {
    color: #ffffff !important;
}

.process ol li {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    color: #d8e5f1;
    box-shadow: none;
}

.process li::before {
    color: #55d0ec;
}

.section.service-process-band {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(39, 196, 233, .15), transparent 20rem),
        linear-gradient(135deg, #08264e, #061833) !important;
    color: #ffffff;
}

.section.service-process-band::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 52px 52px;
}

.section.service-process-band > * {
    position: relative;
    z-index: 1;
}

.section.service-process-band .eyebrow {
    color: #6ed8ef !important;
}

.section.service-process-band h2,
.section.service-process-band strong {
    color: #ffffff;
}

.section.service-process-band p {
    color: #b5c8da;
}

.section.service-process-band article {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
}

.section.final-company-cta {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 12%, rgba(39, 196, 233, .18), transparent 18rem),
        linear-gradient(135deg, #0b315f, #071c3c) !important;
    color: #ffffff;
    box-shadow: 0 35px 85px rgba(7, 30, 62, .2);
}

.section.final-company-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 52px 52px;
}

.section.final-company-cta > * {
    position: relative;
    z-index: 1;
}

.section.final-company-cta .eyebrow {
    color: #6ed8ef !important;
}

.section.final-company-cta h2 {
    color: #ffffff;
}

.section.final-company-cta p {
    color: #d5e3ee;
}

.final-company-cta .button.secondary {
    border-color: #ffffff;
}

.section.final-company-cta .mini-product-panel {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
}

.section.final-company-cta .mini-product-panel span {
    color: #61d6ef;
}

.section.final-company-cta .mini-contact-list a {
    border-color: rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .08);
    color: #eef6ff;
}

.site-footer {
    background: #06172f;
    color: #a9bbcd;
}

.site-footer p,
.site-footer a {
    color: #a9bbcd;
}

.site-footer a:hover {
    color: #53d1ec;
}

@media (max-width: 980px) {
    .site-header {
        height: auto;
        min-height: 68px;
        padding: 10px 22px;
    }

    .brand {
        min-width: 0;
    }

    .main-nav {
        gap: 0;
    }

    .main-nav.is-open {
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 15px;
        background: #ffffff;
        box-shadow: var(--shadow);
    }

    .main-nav.is-open a {
        padding: 11px 12px;
        border-radius: 8px;
    }

    .main-nav.is-open a::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 9px 14px;
    }

    .site-header .nav-cta {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 108px;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 11vw, 2.8rem);
    }

    .solution-strip {
        margin-top: 0;
        border-radius: 16px;
    }
}

/* Refined, less template-like visual system. */
.delivery-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .92);
    border-radius: 22px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 34px 92px rgba(7, 30, 62, .16), 0 0 0 8px rgba(255, 255, 255, .45);
    backdrop-filter: blur(14px);
    transform: perspective(1200px) rotateY(-2deg) rotateX(.7deg);
}

.delivery-panel::before {
    content: "";
    position: absolute;
    inset: 46px 0 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(8, 124, 212, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 124, 212, .04) 1px, transparent 1px);
    background-size: 36px 36px;
}

.delivery-panel-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 11px 11px 11px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
    background: #f7fbff;
}

.delivery-panel-top span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--coral);
}

.delivery-panel-top span:nth-child(2) {
    background: var(--amber);
}

.delivery-panel-top span:nth-child(3) {
    background: var(--green);
}

.delivery-panel-top strong {
    color: #27415e;
    font-size: .9rem;
    font-weight: 850;
}

.delivery-panel-top small {
    color: #7a8ca3;
    font-size: .72rem;
    font-weight: 750;
}

.delivery-panel-body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(190px, .5fr);
    gap: 18px;
    padding: 22px;
}

.delivery-focus {
    grid-column: 1 / -1;
    padding: clamp(18px, 2.2vw, 26px);
    border: 1px solid rgba(8, 124, 212, .14);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(39, 196, 233, .12), rgba(8, 124, 212, .07)),
        #ffffff;
}

.delivery-focus span,
.delivery-stack span {
    color: var(--blue);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.delivery-focus h3 {
    max-width: 700px;
    margin: 9px 0 8px;
    color: var(--ink);
    font-size: clamp(1.45rem, 2.25vw, 2.08rem);
    line-height: 1.15;
    font-weight: 850;
}

.delivery-focus p {
    max-width: 660px;
    margin: 0;
    color: #637b96;
}

.delivery-lanes,
.delivery-stack,
.delivery-status {
    display: grid;
    gap: 12px;
}

.delivery-lanes article,
.delivery-stack article,
.delivery-status {
    border: 1px solid #dce8f2;
    border-radius: 14px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 36px rgba(7, 30, 62, .055);
}

.delivery-lanes article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
}

.delivery-lanes b {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    background: #e9f7ff;
    color: var(--blue);
    font-size: .78rem;
    font-weight: 900;
}

.delivery-lanes strong,
.delivery-stack strong {
    display: block;
    color: var(--ink);
    line-height: 1.22;
}

.delivery-lanes small {
    display: block;
    margin-top: 4px;
    color: #6b7f96;
    line-height: 1.5;
}

.delivery-stack article {
    padding: 16px;
}

.delivery-stack strong {
    margin-top: 8px;
    font-size: 1.06rem;
}

.delivery-stack em {
    display: inline-flex;
    width: fit-content;
    margin-top: 11px;
    padding: 6px 9px;
    border-radius: 999px;
    background: #e7f8ff;
    color: #0872c5;
    font-size: .72rem;
    font-style: normal;
    font-weight: 850;
}

.delivery-status {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 13px;
    background: rgba(244, 250, 255, .86);
}

.delivery-status span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #27415e;
    font-size: .86rem;
    font-weight: 800;
}

.delivery-status i {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(30, 185, 128, .12);
}

.company-showcase {
    display: none;
}

.solution-icon,
.card-icon,
.product-mini-icon,
.service-card-top .card-icon,
.service-hero-kicker .card-icon {
    overflow: hidden;
    border-radius: 13px;
    background: #f7fbff;
    color: var(--blue);
    font-size: 0;
    box-shadow: inset 0 0 0 1px rgba(8, 124, 212, .15);
}

.solution-icon::before,
.card-icon::before,
.product-mini-icon::before {
    content: "";
    position: static;
    display: grid;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: none;
    color: inherit;
    transform: none;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .3px;
}

.solution-icon::after,
.card-icon::after,
.product-mini-icon::after {
    display: none !important;
}

.icon-card-web::before {
    content: "WEB";
}

.icon-card-landing::before {
    content: "LP";
}

.icon-card-app::before {
    content: "APP";
}

.icon-card-system::before {
    content: "SYS";
}

.solution-icon-laundry::before,
.product-mini-icon-laundry::before {
    content: "ML";
}

.solution-icon-apotek::before,
.product-mini-icon-apotek::before {
    content: "MA";
}

.card-grid article::after {
    background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.card-grid article,
.service-showcase-card,
.product-list article,
.pricing-grid article,
.blog-grid article,
.faq-accordion details,
.faq-help-card {
    border-radius: 16px;
}

.service-card-top .card-icon {
    margin-bottom: 0;
    flex: 0 0 46px;
}

.page-hero-visual .product-mini-icon {
    width: 56px;
    height: 56px;
}

@media (max-width: 980px) {
    .delivery-panel {
        transform: none;
    }

    .delivery-panel-body {
        grid-template-columns: 1fr;
    }

    .delivery-status {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .delivery-panel {
        margin-top: 12px;
        border-radius: 18px;
        box-shadow: 0 22px 62px rgba(7, 30, 62, .13);
    }

    .delivery-panel-top {
        grid-template-columns: 9px 9px 9px minmax(0, 1fr);
        height: 44px;
        padding-inline: 14px;
    }

    .delivery-panel-top small {
        display: none;
    }

    .delivery-panel-body {
        gap: 12px;
        padding: 14px;
    }

    .delivery-focus,
    .delivery-lanes article,
    .delivery-stack article,
    .delivery-status {
        border-radius: 13px;
    }

    .delivery-focus {
        padding: 16px;
    }

    .delivery-focus h3 {
        font-size: 1.3rem;
    }

    .delivery-lanes article {
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 14px;
    }

    .delivery-lanes b {
        width: 36px;
        height: 36px;
    }
}

/* Final visual pass: cleaner project desk and calmer service icon system. */
.delivery-panel {
    border-color: rgba(173, 210, 232, .68);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(246, 251, 255, .93)),
        #ffffff;
    box-shadow: 0 28px 78px rgba(7, 30, 62, .13), 0 0 0 6px rgba(255, 255, 255, .48);
    transform: none;
}

.delivery-panel::before {
    inset: 48px 0 0;
    background:
        linear-gradient(rgba(8, 124, 212, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 124, 212, .028) 1px, transparent 1px);
    background-size: 34px 34px;
}

.delivery-panel-top {
    height: 50px;
    background: rgba(247, 251, 255, .94);
}

.delivery-panel-top strong {
    color: #183454;
}

.delivery-panel-body {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 20px;
}

.delivery-focus {
    padding: clamp(18px, 2vw, 24px);
    border-color: rgba(8, 124, 212, .13);
    border-radius: 18px;
    background:
        radial-gradient(circle at 94% 12%, rgba(39, 196, 233, .16), transparent 14rem),
        linear-gradient(135deg, #f0fbff, #ffffff 78%);
}

.delivery-focus h3 {
    max-width: 100%;
    margin: 8px 0 9px;
    font-size: clamp(1.42rem, 2vw, 1.88rem);
    line-height: 1.18;
    letter-spacing: -.7px;
}

.delivery-focus p {
    max-width: 100%;
    font-size: .95rem;
    line-height: 1.7;
}

.delivery-lanes {
    gap: 9px;
}

.delivery-lanes article {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 13px 14px;
    border-color: rgba(173, 210, 232, .7);
    border-radius: 14px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 28px rgba(7, 30, 62, .045);
}

.delivery-lanes b {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: #eaf7ff;
    font-size: .73rem;
}

.delivery-lanes strong {
    font-size: .98rem;
}

.delivery-lanes small {
    margin-top: 2px;
    font-size: .82rem;
    line-height: 1.48;
}

.delivery-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.delivery-stack article {
    padding: 12px;
    border-color: rgba(173, 210, 232, .68);
    border-radius: 14px;
    background: rgba(255, 255, 255, .9);
    box-shadow: none;
}

.delivery-stack span {
    font-size: .64rem;
    letter-spacing: .8px;
}

.delivery-stack strong {
    margin-top: 6px;
    font-size: .92rem;
}

.delivery-stack em {
    margin-top: 8px;
    padding: 5px 8px;
    font-size: .66rem;
}

.delivery-status {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border-color: rgba(173, 210, 232, .68);
    background: rgba(244, 250, 255, .82);
    box-shadow: none;
}

.delivery-status span {
    font-size: .8rem;
    white-space: nowrap;
}

.solution-icon,
.card-icon,
.product-mini-icon,
.service-card-top .card-icon,
.service-hero-kicker .card-icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(8, 124, 212, .14);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(39, 196, 233, .16), rgba(8, 124, 212, .08)),
        #ffffff;
    color: var(--blue);
    box-shadow: 0 12px 26px rgba(7, 30, 62, .07);
    font-size: 0;
}

.solution-icon::before,
.card-icon::before,
.product-mini-icon::before {
    content: "" !important;
    position: absolute;
    z-index: 1;
    display: block;
    width: 20px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 5px;
    background: transparent;
    box-shadow: none;
}

.solution-icon::after,
.card-icon::after,
.product-mini-icon::after {
    content: "";
    position: absolute;
    z-index: 1;
    display: block !important;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 5px 0 rgba(8, 124, 212, .38);
}

.icon-card-landing::before {
    width: 19px;
    height: 19px;
    border-radius: 50%;
}

.icon-card-landing::after {
    width: 8px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 50%;
    background: transparent;
    box-shadow: 10px 0 0 -2px currentColor;
}

.icon-card-app::before {
    width: 19px;
    height: 19px;
    border-radius: 6px;
    box-shadow: inset 7px 0 0 rgba(8, 124, 212, .16);
}

.icon-card-app::after {
    width: 3px;
    height: 3px;
    border-radius: 999px;
    box-shadow: 7px 0 0 currentColor, 14px 0 0 currentColor, 0 7px 0 currentColor, 7px 7px 0 currentColor, 14px 7px 0 currentColor;
}

.icon-card-system::before {
    width: 20px;
    height: 20px;
    border-radius: 8px;
    transform: rotate(45deg);
}

.icon-card-system::after {
    width: 18px;
    height: 2px;
    box-shadow: 0 -7px 0 rgba(8, 124, 212, .38), 0 7px 0 rgba(8, 124, 212, .38);
}

.solution-icon-laundry::before,
.product-mini-icon-laundry::before {
    width: 21px;
    height: 14px;
    border-radius: 4px 4px 8px 8px;
}

.solution-icon-laundry::after,
.product-mini-icon-laundry::after {
    width: 15px;
    height: 8px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 9px 9px 0 0;
    background: transparent;
    box-shadow: none;
    transform: translateY(-8px);
}

.solution-icon-apotek::before,
.product-mini-icon-apotek::before {
    width: 22px;
    height: 22px;
    border-radius: 7px;
}

.solution-icon-apotek::after,
.product-mini-icon-apotek::after {
    width: 15px;
    height: 3px;
    background: currentColor;
    box-shadow: 0 0 0 currentColor;
}

.solution-icon-apotek,
.product-mini-icon-apotek {
    color: #0f9f86;
}

.solution-icon-apotek::after,
.product-mini-icon-apotek::after {
    transform: rotate(90deg);
}

.solution-icon-apotek > *,
.product-mini-icon-apotek > * {
    pointer-events: none;
}

.solution-strip {
    display: grid;
    grid-template-columns: minmax(190px, .65fr) minmax(0, 1.9fr);
    gap: 18px;
    align-items: center;
}

.solution-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.solution-list a {
    min-width: 0;
    gap: 11px;
    padding: 14px 12px;
    overflow: visible;
}

.solution-list span,
.solution-list strong,
.solution-list small {
    min-width: 0;
}

.solution-list strong {
    display: block;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    line-height: 1.2;
}

.solution-list small {
    display: block;
    margin-top: 3px;
    line-height: 1.25;
}

@media (max-width: 980px) {
    .delivery-stack {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .solution-strip {
        grid-template-columns: 1fr;
    }

    .solution-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .delivery-panel {
        border-radius: 18px;
        box-shadow: 0 20px 56px rgba(7, 30, 62, .12), 0 0 0 4px rgba(255, 255, 255, .5);
    }

    .delivery-panel-top strong {
        font-size: .86rem;
    }

    .delivery-panel-body {
        padding: 14px;
    }

    .delivery-focus {
        padding: 16px;
    }

    .delivery-focus h3 {
        font-size: 1.22rem;
        letter-spacing: -.35px;
    }

    .delivery-lanes article {
        grid-template-columns: 34px minmax(0, 1fr);
        padding: 12px;
    }

    .delivery-lanes b {
        width: 30px;
        height: 30px;
        border-radius: 10px;
    }

    .delivery-stack,
    .delivery-status {
        grid-template-columns: 1fr;
    }

    .delivery-stack article {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 5px 10px;
    }

    .delivery-stack span,
    .delivery-stack strong {
        margin: 0;
    }

    .delivery-stack em {
        grid-row: 1 / span 2;
        grid-column: 2;
        margin: 0;
        white-space: nowrap;
    }

    .delivery-status span {
        white-space: normal;
    }

    .solution-strip {
        margin-top: 24px;
        padding: 16px;
    }

    .solution-list {
        grid-template-columns: 1fr;
    }

    .solution-list a {
        padding: 13px;
    }
}

/* Professional icon pass: use Remix line icons instead of handcrafted shapes. */
.button i,
.nav-cta i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.08em;
    line-height: 1;
}

.solution-icon,
.card-icon,
.product-mini-icon,
.service-card-top .card-icon,
.service-hero-kicker .card-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(8, 124, 212, .16);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(39, 196, 233, .13), rgba(8, 124, 212, .06)),
        #ffffff;
    color: var(--blue);
    box-shadow: 0 12px 28px rgba(7, 30, 62, .07);
    font-size: 0;
}

.solution-icon::before,
.solution-icon::after,
.card-icon::before,
.card-icon::after,
.product-mini-icon::before,
.product-mini-icon::after {
    content: none !important;
    display: none !important;
}

.solution-icon > i,
.card-icon > i,
.product-mini-icon > i {
    display: block;
    color: currentColor;
    font-size: 1.32rem;
    line-height: 1;
}

.solution-icon {
    width: 42px;
    height: 42px;
}

.card-icon {
    width: 46px;
    height: 46px;
}

.product-mini-icon {
    width: 58px;
    height: 58px;
}

.product-mini-icon > i {
    font-size: 1.65rem;
}

.solution-icon-laundry,
.product-mini-icon-laundry {
    color: #087cd4;
}

.solution-icon-apotek,
.product-mini-icon-apotek {
    color: #0f9f86;
}

.solution-list a {
    align-items: center;
}

.card-grid article .card-icon {
    margin-bottom: 20px;
}

.service-card-top .card-icon,
.service-hero-kicker .card-icon {
    margin-bottom: 0;
}

.hero-copy > p:not(.eyebrow) {
    max-width: 650px;
}

.delivery-focus h3 {
    font-size: clamp(1.35rem, 1.8vw, 1.7rem);
}

.delivery-focus p,
.delivery-lanes small {
    color: #5f7690;
}

.faq-accordion details p {
    line-height: 1.65;
}

@media (max-width: 640px) {
    .solution-icon {
        width: 40px;
        height: 40px;
    }

    .card-icon {
        width: 44px;
        height: 44px;
    }

    .product-mini-icon {
        width: 54px;
        height: 54px;
    }
}

/* Third product: Mahakasir Carwash. */
.solution-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-list article:nth-child(3) {
    background: linear-gradient(135deg, #ffffff, #f2fbff);
}

.pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-icon-carwash,
.product-mini-icon-carwash {
    color: #0b84d8;
}

.carwash-hero .page-hero-visual {
    background:
        radial-gradient(circle at 84% 12%, rgba(39, 196, 233, .18), transparent 14rem),
        #ffffff;
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .product-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .solution-list {
        grid-template-columns: 1fr;
    }

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