/* ORBIS Intelligent Compliance Landing Page
   Typography uses px (not rem) because Bootstrap 3 sets html { font-size: 10px }. */

.ic-page {
    font-family: 'Myriad Pro', 'Helvetica', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

.ic-page *,
.ic-page *::before,
.ic-page *::after {
    box-sizing: border-box;
}

.ic-page h1,
.ic-page h2,
.ic-page h3,
.ic-page h4,
.ic-page h5,
.ic-page h6 {
    font-weight: 700;
}

.ic-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.ic-section {
    padding: 80px 0;
}

/* Hero */
.ic-hero {
    background: #f5f9fc url('/img/intelligent-compliance-lander/hero-bg.png') center right/cover no-repeat;
    position: relative;
    overflow: hidden;
    padding: 72px 0 88px;
}

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

.ic-hero-logo {
    height: 56px;
    width: auto;
    margin-bottom: 28px;
    display: block;
}

.ic-hero--part2 .ic-hero-logo {
    height: 80px;
    margin-bottom: 24px;
}

.ic-hero h1 {
    color: #0f436b;
    font-size: clamp(36px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 16px;
}

.ic-hero-subtitle {
    color: #1a79bd;
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 600;
    margin: 0 0 20px;
    line-height: 1.35;
}

.ic-hero-text {
    color: #555;
    font-size: 18px;
    margin: 0 0 32px;
    max-width: 540px;
}

.ic-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.ic-btn-primary {
    display: inline-block;
    background: #1a79bd;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.ic-btn-primary:hover,
.ic-btn-primary:focus {
    background: #1565a0;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.ic-btn-secondary {
    display: inline-block;
    background: #fff;
    color: #0f436b;
    font-size: 17px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #0f436b;
    cursor: pointer;
}

.ic-btn-secondary:hover,
.ic-btn-secondary:focus {
    color: #0f436b;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(15, 67, 107, 0.15);
}

.ic-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ic-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 121, 189, 0.08);
    border: 1px solid rgba(26, 121, 189, 0.2);
    color: #0f436b;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
}

.ic-hero-pill i {
    color: #1a79bd;
    font-size: 14px;
}

.ic-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ic-hero-video-wrap {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 67, 107, 0.2);
    background: #000;
    aspect-ratio: 16 / 9;
}

.ic-hero-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ic-hero-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #0f436b;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s, background 0.2s;
}

.ic-hero-play-btn:hover,
.ic-hero-play-btn:focus {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.05);
    outline: none;
}

.ic-hero-video-wrap.is-playing .ic-hero-play-btn {
    display: none;
}

/* The World Has Changed */
.ic-world-changed {
    background-color: #fff;
    background-image: url('/img/intelligent-compliance-lander/hero-bg.png');
    background-repeat: no-repeat;
    background-size: 120% auto;
    background-position: left bottom;
    position: relative;
    overflow: hidden;
}

.ic-world-changed-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
    gap: 40px;
    align-items: center;
}

.ic-world-changed-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ic-world-changed-visual img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
}

.ic-world-changed-content .ic-heading {
    margin-bottom: 12px;
}

.ic-world-changed-content .ic-heading-rule {
    margin-bottom: 24px;
}

.ic-world-changed-content p {
    color: #555;
    font-size: 18px;
    margin: 0 0 18px;
    line-height: 1.65;
}

.ic-world-changed-content p:last-child {
    margin-bottom: 0;
}

.ic-lead-blue {
    color: #1a79bd !important;
    font-weight: 700;
    font-size: 19px !important;
}

/* Two-column sections */
.ic-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.ic-heading {
    color: #0f436b;
    font-size: clamp(30px, 3vw, 36px);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.2;
}

.ic-heading-rule {
    width: 60px;
    height: 4px;
    background: #1a79bd;
    margin-bottom: 0;
}

.ic-body-text {
    color: #555;
    font-size: 18px;
    margin: 0;
}

.ic-body-text p {
    margin: 0 0 16px;
}

.ic-body-text p:last-child {
    margin-bottom: 0;
}

.ic-highlight {
    color: #0f436b;
    font-weight: 600;
}

/* Intelligent Systems section */
.ic-systems {
    background: #fff;
}

.ic-systems-heading {
    margin-bottom: 12px;
}

.ic-systems .ic-heading-rule {
    margin-bottom: 32px;
}

.ic-systems-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15, 67, 107, 0.12);
}

.ic-systems-content {
    background: #f0f7fc;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ic-systems-content p {
    color: #555;
    font-size: 17px;
    margin: 0 0 18px;
    line-height: 1.65;
}

.ic-systems-content p:last-child {
    margin-bottom: 0;
}

.ic-systems-lead {
    color: #1a79bd !important;
    font-weight: 700;
    font-size: 19px !important;
}

.ic-systems-content strong {
    color: #1a79bd;
    font-weight: 700;
}

.ic-systems-visual {
    background: #e8f4fa;
    min-height: 320px;
}

.ic-systems-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Solution section (What is + Why Matters) */
.ic-solution {
    background: #0f436b url('/img/intelligent-compliance-lander/cta-bg.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.ic-solution::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 67, 107, 0.45);
    pointer-events: none;
}

.ic-solution > .ic-container {
    position: relative;
    z-index: 1;
}

.ic-solution-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
}

.ic-solution-intro h2 {
    color: #fff;
    font-size: clamp(30px, 3vw, 36px);
    font-weight: 700;
    margin: 0 0 24px;
    line-height: 1.2;
}

.ic-solution-intro p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin: 0 0 16px;
    line-height: 1.65;
}

.ic-solution-intro p:last-child {
    margin-bottom: 0;
}

.ic-solution-intro strong {
    color: #fff;
    font-weight: 700;
}

.ic-solution-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 28px;
}

.ic-solution-logo {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
}

.ic-btn-solution {
    display: inline-block;
    background: #fff;
    color: #0f436b;
    font-size: 17px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.ic-btn-solution:hover,
.ic-btn-solution:focus {
    color: #0f436b;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ic-solution-subheading {
    color: #fff;
    font-size: clamp(30px, 3vw, 36px);
    font-weight: 700;
    text-align: center;
    margin: 0 0 40px;
    line-height: 1.2;
}

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

.ic-solution-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 28px 22px;
}

.ic-solution-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin-bottom: 18px;
}

.ic-solution-card-icon i {
    color: #fff;
    font-size: 20px;
}

.ic-solution-card h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
}

.ic-solution-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 0;
    line-height: 1.55;
}

/* Expertise section */
.ic-expertise {
    background: #f0f4f8;
}

.ic-expertise-grid {
    display: grid;
    grid-template-columns: minmax(180px, 280px) 1fr;
    gap: 48px;
    align-items: center;
}

.ic-expertise-shield {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ic-expertise-shield img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
}

.ic-expertise-content .ic-heading {
    margin-bottom: 12px;
}

.ic-expertise-content .ic-heading-rule {
    margin-bottom: 24px;
}

.ic-expertise-body p {
    color: #555;
    font-size: 17px;
    margin: 0 0 18px;
    line-height: 1.65;
}

.ic-expertise-body p:last-child {
    margin-bottom: 0;
}

.ic-expertise-brand {
    color: #1a79bd;
    font-weight: 700;
}

.ic-expertise-body strong:not(.ic-expertise-brand) {
    color: #333;
    font-weight: 700;
}

.ic-expertise-footer {
    color: #1a79bd;
    font-weight: 600;
    font-size: 18px;
    margin: 24px 0 0;
    text-align: left;
}

/* Ecosystem CTA */
.ic-ecosystem-section {
    background: #f0f4f8;
    padding: 80px 0;
}

/* CTA banner */
.ic-cta-banner {
    position: relative;
    background: #0f436b url('/img/intelligent-compliance-lander/cta-bg.png') center/cover no-repeat;
    border-radius: 20px;
    padding: 56px 48px 48px;
    overflow: hidden;
    text-align: center;
}

.ic-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 67, 107, 0.45);
    pointer-events: none;
}

.ic-cta-banner > * {
    position: relative;
    z-index: 1;
}

.ic-cta-date {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0 auto 20px;
}

.ic-cta-heading {
    color: #fff;
    font-size: clamp(30px, 3vw, 36px);
    font-weight: 700;
    margin: 0 auto 16px;
    max-width: 760px;
    line-height: 1.2;
}

.ic-cta-heading-rule {
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 0 auto 24px;
}

.ic-cta-text {
    color: #fff;
    font-size: 18px;
    margin: 0 auto 32px;
    max-width: 760px;
    line-height: 1.65;
}

.ic-cta-text strong {
    color: #fff;
    font-weight: 700;
}

.ic-btn-cta {
    display: inline-block;
    background: #fff;
    color: #0f436b;
    font-size: 17px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 24px;
}

.ic-btn-cta:hover,
.ic-btn-cta:focus {
    color: #0f436b;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ic-cta-tagline {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Part 2: Hero journey badge */
.ic-hero-journey-badge {
    display: inline-block;
    background: rgba(26, 121, 189, 0.1);
    border: 1px solid rgba(26, 121, 189, 0.25);
    color: #0f436b;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

/* Part 2: Hero with inline highlights video */
.ic-hero--part2 .ic-hero-grid {
    align-items: center;
}

.ic-hero-highlights {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    align-self: center;
}

.ic-hero-highlights-heading {
    color: #1a79bd;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 16px;
}

.ic-hero-highlights-caption {
    color: #555;
    font-size: 16px;
    line-height: 1.55;
    margin: 16px 0 0;
    text-align: center;
}

.ic-hero--part2 .ic-hero-video-wrap {
    width: 100%;
}

.ic-heading-rule-center {
    margin: 0 auto 24px;
}

/* Part 2: Speakers */
.ic-speakers {
    background: #f0f4f8;
}

.ic-speakers-intro {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px;
}

.ic-speakers-intro .ic-heading {
    margin-bottom: 12px;
}

.ic-speakers-intro p {
    color: #555;
    font-size: 18px;
    margin: 0 0 16px;
    line-height: 1.65;
}

.ic-speakers-intro p:last-child {
    margin-bottom: 0;
}

.ic-speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.ic-speaker-card {
    text-align: center;
}

.ic-speaker-card img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 8px 24px rgba(15, 67, 107, 0.15);
}

.ic-speaker-card h3 {
    color: #0f436b;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
}

.ic-speaker-card p {
    color: #1a79bd;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.ic-speakers-footer {
    color: #1a79bd;
    font-weight: 600;
    font-size: 18px;
    margin: 40px 0 0;
    text-align: center;
}

/* Part 2: Tools section */
.ic-tools {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: #0f436b url('/img/intelligent-compliance-lander/part2/services-bg.png') center/cover no-repeat;
}

.ic-tools::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 67, 107, 0.5);
    pointer-events: none;
}

.ic-tools > .ic-container {
    position: relative;
    z-index: 1;
}

.ic-tools-header {
    text-align: center;
    margin-bottom: 48px;
}

.ic-tools-header h2 {
    color: #fff;
    font-size: clamp(30px, 3vw, 36px);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.ic-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ic-tool-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
}

.ic-tool-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: block;
}

.ic-tool-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 14px;
}

.ic-tool-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin: 0;
    line-height: 1.55;
}

/* Part 2: Dual CTA */
.ic-cta-urgency {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.ic-cta-dual {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.ic-cta-dual .ic-btn-cta {
    margin-bottom: 0;
}

.ic-btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.ic-btn-cta-outline:hover,
.ic-btn-cta-outline:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .ic-section,
    .ic-solution {
        padding: 60px 0;
    }

    .ic-ecosystem-section {
        padding: 60px 0;
    }

    .ic-hero-grid,
    .ic-two-col,
    .ic-world-changed-grid,
    .ic-solution-top,
    .ic-systems-card,
    .ic-expertise-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ic-expertise-shield {
        max-width: 180px;
        margin: 0 auto;
    }

    .ic-systems-card {
        gap: 0;
    }

    .ic-systems-visual {
        min-height: 280px;
        order: -1;
    }

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

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

    .ic-tools-grid {
        grid-template-columns: 1fr;
    }

    .ic-solution-brand {
        max-width: 400px;
        margin: 0 auto;
    }

    .ic-world-changed-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .ic-hero-visual {
        order: -1;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .ic-hero--part2 .ic-hero-visual {
        order: 0;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .ic-container {
        padding: 0 20px;
    }

    .ic-hero {
        padding: 48px 0 56px;
    }

    .ic-section,
    .ic-ecosystem-section,
    .ic-solution,
    .ic-tools {
        padding: 48px 0;
    }

    .ic-systems-content {
        padding: 32px 24px;
    }

    .ic-solution-cards,
    .ic-speakers-grid {
        grid-template-columns: 1fr;
    }

    .ic-hero-ctas {
        flex-direction: column;
    }

    .ic-cta-banner {
        padding: 40px 28px 36px;
    }

    .ic-cta-dual {
        flex-direction: column;
        align-items: center;
    }

    .ic-cta-dual .ic-btn-cta {
        width: 100%;
        max-width: 360px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ic-btn-primary,
    .ic-btn-secondary,
    .ic-btn-solution,
    .ic-btn-cta {
        display: block;
        text-align: center;
        width: 100%;
        white-space: normal;
    }

    .ic-hero-pills {
        flex-direction: column;
    }
}
