@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

body.intellisure-page {
    --ew-dark: #0A1628;
    --ew-navy: #0F2240;
    --ew-blue: #0E5FC0;
    --ew-teal: #0D9F75;
    --ew-gold: #E8A427;
    --ew-light: #F4F7FC;
    --ew-muted: #8494A7;
    --ew-border: rgba(255, 255, 255, 0.08);

    background: var(--ew-dark);
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
}

body.intellisure-page .intellisure-main {
    overflow-x: hidden;
    font-family: 'DM Sans', sans-serif;
}

body.intellisure-page .main-header,
body.intellisure-page .main-header .main-menu ul li a,
body.intellisure-page .main-header .header-btn .btn-default,
body.intellisure-page .responsive-menu,
body.intellisure-page .responsive-menu .slicknav_nav a {
    font-family: var(--default-font);
}

body.intellisure-page .main-header {
    position: relative;
    z-index: 110;
}

body.intellisure-page .intellisure-hero {
    position: relative;
    padding: 5rem 3rem 6rem;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

body.intellisure-page .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

body.intellisure-page .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 159, 117, 0.12);
    border: 0.5px solid rgba(13, 159, 117, 0.35);
    padding: 0.35rem 0.9rem;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ew-teal);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

body.intellisure-page .hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ew-teal);
    animation: ew-pulse 2s infinite;
}

@keyframes ew-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

body.intellisure-page .intellisure-hero h1 {
    font-family: var(--default-font);
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    color: #fff;
}

body.intellisure-page .intellisure-hero h1 em {
    font-style: normal;
    color: var(--ew-teal);
}

body.intellisure-page .hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 480px;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

body.intellisure-page .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

body.intellisure-page .is-btn-primary {
    background: var(--ew-teal);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

body.intellisure-page .is-btn-primary:hover {
    background: #0bbf8a;
    color: #fff;
    transform: translateY(-2px);
}

body.intellisure-page .is-btn-outline {
    background: transparent;
    color: #fff;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

body.intellisure-page .is-btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

body.intellisure-page .hero-visual {
    position: relative;
}

body.intellisure-page .asset-card {
    background: rgba(255, 255, 255, 0.04);
    border: 0.5px solid var(--ew-border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

body.intellisure-page .asset-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(13, 159, 117, 0.3);
    transform: translateX(4px);
}

body.intellisure-page .asset-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--ew-teal);
    border-radius: 3px 0 0 3px;
}

body.intellisure-page .asset-card.warn::before {
    background: var(--ew-gold);
}

body.intellisure-page .asset-card.alert::before {
    background: #E24B4A;
}

body.intellisure-page .card-label {
    font-size: 11px;
    color: var(--ew-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

body.intellisure-page .card-title {
    font-family: var(--default-font);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

body.intellisure-page .card-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

body.intellisure-page .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

body.intellisure-page .dot-green { background: #2DCA8C; }
body.intellisure-page .dot-amber { background: var(--ew-gold); }
body.intellisure-page .dot-red { background: #E24B4A; animation: ew-pulse 1.5s infinite; }

body.intellisure-page .status-healthy { color: #2DCA8C; font-size: 13px; }
body.intellisure-page .status-warning { color: var(--ew-gold); font-size: 13px; }
body.intellisure-page .status-critical { color: #E8736B; font-size: 13px; }

body.intellisure-page .card-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

body.intellisure-page .meta-item {
    font-size: 12px;
    color: var(--ew-muted);
}

body.intellisure-page .meta-item strong {
    display: block;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    font-family: var(--default-font);
}

body.intellisure-page .metrics-strip {
    background: rgba(255, 255, 255, 0.03);
    border-top: 0.5px solid var(--ew-border);
    border-bottom: 0.5px solid var(--ew-border);
    padding: 2rem 3rem;
}

body.intellisure-page .metrics-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

body.intellisure-page .metric {
    text-align: center;
}

body.intellisure-page .metric-value {
    font-family: var(--default-font);
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
}

body.intellisure-page .metric-value.teal { color: var(--ew-teal); }
body.intellisure-page .metric-value.gold { color: var(--ew-gold); }
body.intellisure-page .metric-value.blue { color: #5BA4F5; }
body.intellisure-page .metric-value.white { color: #fff; }

body.intellisure-page .metric-label {
    font-size: 12px;
    color: var(--ew-muted);
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

body.intellisure-page .is-section {
    padding: 6rem 3rem;
}

body.intellisure-page .section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

body.intellisure-page .section-tag {
    font-size: 11px;
    color: var(--ew-teal);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    margin-bottom: 1rem;
}

body.intellisure-page .section-title {
    font-family: var(--default-font);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
}

body.intellisure-page .section-sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    font-weight: 300;
    max-width: 600px;
    line-height: 1.8;
}

body.intellisure-page .modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

body.intellisure-page .module-card {
    background: rgba(255, 255, 255, 0.03);
    border: 0.5px solid var(--ew-border);
    border-radius: 8px;
    padding: 1.8rem;
    transition: all 0.3s;
}

body.intellisure-page .module-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(13, 159, 117, 0.3);
    transform: translateY(-4px);
}

body.intellisure-page .module-icon {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 20px;
}

body.intellisure-page .icon-teal { background: rgba(13, 159, 117, 0.15); color: var(--ew-teal); }
body.intellisure-page .icon-blue { background: rgba(14, 95, 192, 0.2); color: #5BA4F5; }
body.intellisure-page .icon-gold { background: rgba(232, 164, 39, 0.15); color: var(--ew-gold); }
body.intellisure-page .icon-red { background: rgba(226, 75, 74, 0.15); color: #E8736B; }
body.intellisure-page .icon-purple { background: rgba(127, 119, 221, 0.15); color: #9B95E8; }

body.intellisure-page .module-name {
    font-family: var(--default-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
    color: var(--ew-teal);
}

body.intellisure-page .module-full-name {
    font-family: var(--default-font);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

body.intellisure-page .module-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

body.intellisure-page .module-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.1rem;
}

body.intellisure-page .tag {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    padding: 0.25rem 0.65rem;
    border-radius: 2px;
    letter-spacing: 0.03em;
}

body.intellisure-page .module-card-cta {
    border-color: rgba(13, 159, 117, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

body.intellisure-page .module-cta-title {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
}

body.intellisure-page .arch-section {
    background: rgba(255, 255, 255, 0.02);
}

body.intellisure-page .arch-flow {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 3rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

body.intellisure-page .arch-step {
    flex: 1;
    min-width: 140px;
    background: rgba(255, 255, 255, 0.04);
    border: 0.5px solid var(--ew-border);
    padding: 1.4rem 1.2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

body.intellisure-page .arch-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(13, 159, 117, 0.3);
}

body.intellisure-page .arch-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ew-teal);
    font-size: 18px;
    z-index: 2;
}

body.intellisure-page .arch-step-icon {
    font-size: 22px;
    margin-bottom: 0.8rem;
    color: var(--ew-teal);
}

body.intellisure-page .arch-step-name {
    font-family: var(--default-font);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

body.intellisure-page .arch-step-sub {
    font-size: 11px;
    color: var(--ew-muted);
    line-height: 1.5;
}

body.intellisure-page .cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

body.intellisure-page .case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 0.5px solid var(--ew-border);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

body.intellisure-page .case-card:hover {
    border-color: rgba(13, 159, 117, 0.25);
}

body.intellisure-page .case-badge {
    font-family: var(--default-font);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ew-teal);
    margin-bottom: 1rem;
}

body.intellisure-page .case-title {
    font-family: var(--default-font);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.8rem;
}

body.intellisure-page .case-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

body.intellisure-page .case-results {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

body.intellisure-page .result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

body.intellisure-page .result-item::before {
    content: '✓';
    color: var(--ew-teal);
    font-weight: 700;
    flex-shrink: 0;
}

body.intellisure-page .tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

body.intellisure-page .tier-card {
    background: rgba(255, 255, 255, 0.03);
    border: 0.5px solid var(--ew-border);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s;
}

body.intellisure-page .tier-card.featured {
    background: rgba(13, 159, 117, 0.07);
    border-color: rgba(13, 159, 117, 0.4);
    transform: translateY(-6px);
}

body.intellisure-page .tier-badge {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ew-muted);
    margin-bottom: 1rem;
}

body.intellisure-page .tier-badge.featured-badge {
    color: var(--ew-teal);
}

body.intellisure-page .tier-name {
    font-family: var(--default-font);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.4rem;
}

body.intellisure-page .tier-price {
    font-family: var(--default-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

body.intellisure-page .tier-price-suffix {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

body.intellisure-page .tier-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 0;
}

body.intellisure-page .tier-features li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.5;
}

body.intellisure-page .tier-features li::before {
    content: '—';
    color: var(--ew-teal);
    flex-shrink: 0;
}

body.intellisure-page .tier-cta {
    width: 100%;
    padding: 0.75rem;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

body.intellisure-page .tier-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

body.intellisure-page .tier-cta.featured-cta {
    background: var(--ew-teal);
    border-color: var(--ew-teal);
    color: #fff;
}

body.intellisure-page .tier-cta.featured-cta:hover {
    background: #0bbf8a;
    color: #fff;
}

body.intellisure-page .cta-band {
    background: linear-gradient(135deg, rgba(13, 159, 117, 0.15), rgba(14, 95, 192, 0.1));
    border-top: 0.5px solid var(--ew-border);
    border-bottom: 0.5px solid var(--ew-border);
    text-align: center;
    padding: 6rem 3rem;
}

body.intellisure-page .cta-band h2 {
    font-family: var(--default-font);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: #fff;
}

body.intellisure-page .cta-band p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

body.intellisure-page .cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

body.intellisure-page .is-footer {
    padding: 3rem;
    border-top: 0.5px solid var(--ew-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

body.intellisure-page .footer-logo {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 800;
}

body.intellisure-page .footer-logo span {
    color: var(--ew-teal);
}

body.intellisure-page .footer-copy {
    font-size: 12px;
    color: var(--ew-muted);
}

body.intellisure-page .footer-tagline {
    font-size: 12px;
    color: var(--ew-muted);
    font-style: italic;
}

body.intellisure-page .footer-back {
    font-size: 12px;
    color: var(--ew-teal);
    text-decoration: none;
}

body.intellisure-page .footer-back:hover {
    color: #0bbf8a;
}

body.intellisure-page .divider {
    height: 0.5px;
    background: var(--ew-border);
    max-width: 1200px;
    margin: 0 auto;
}

body.intellisure-page .hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

body.intellisure-page .hero-bg-ring {
    position: absolute;
    border-radius: 50%;
    border: 0.5px solid rgba(13, 159, 117, 0.1);
}

body.intellisure-page .hero-bg-ring.r1 {
    width: 600px;
    height: 600px;
    right: -200px;
    top: -200px;
}

body.intellisure-page .hero-bg-ring.r2 {
    width: 400px;
    height: 400px;
    right: -100px;
    top: -100px;
    border-color: rgba(14, 95, 192, 0.08);
}

body.intellisure-page .hero-bg-ring.r3 {
    width: 200px;
    height: 200px;
    right: 0;
    top: 0;
    border-color: rgba(13, 159, 117, 0.15);
}

body.intellisure-page .hero-content {
    position: relative;
    z-index: 1;
}

body.intellisure-page .logos-strip {
    padding: 2.5rem 3rem;
    border-bottom: 0.5px solid var(--ew-border);
}

body.intellisure-page .logos-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

body.intellisure-page .logos-label {
    font-size: 12px;
    color: var(--ew-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

body.intellisure-page .logo-items {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

body.intellisure-page .logo-item {
    font-family: var(--default-font);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.05em;
}

body.intellisure-page .pricing-section {
    background: rgba(255, 255, 255, 0.01);
}

@media (max-width: 900px) {
    body.intellisure-page .intellisure-hero {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    body.intellisure-page .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    body.intellisure-page .hero-visual {
        display: none;
    }

    body.intellisure-page .metrics-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    body.intellisure-page .is-section {
        padding: 4rem 1.5rem;
    }

    body.intellisure-page .modules-grid,
    body.intellisure-page .cases-grid,
    body.intellisure-page .tiers-grid {
        grid-template-columns: 1fr;
    }

    body.intellisure-page .tier-card.featured {
        transform: none;
    }

    body.intellisure-page .arch-flow {
        flex-direction: column;
    }

    body.intellisure-page .arch-step:not(:last-child)::after {
        content: '↓';
        right: 50%;
        bottom: -16px;
        top: auto;
        transform: translateX(50%);
    }
}
