/* ── SECTION ── */
.ci-section { padding: 50px 0; position: relative; }

.ci-section [data-dot-sphere] {
    left: 400px;
}

.ci-section.ci-section--reverse [data-dot-sphere] {
    left: auto;
    right: calc(100% - 600px);
}

/* ── TWO-COLUMN LAYOUT ── */
.ci-cols {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

.ci-col-left {
    flex: 0 0 47%;
    max-width: 47%;
    display: flex;
    flex-direction: column;
    gap: 39px;
    padding: 3px 0;
}

.ci-col-right {
    flex: 0 0 49%;
    max-width: 49%;
    position: relative;
    z-index: 3;
}

/* Reverse: image left, content right */
.ci-cols--reverse { flex-direction: row-reverse; }

/* ── HEADER (left col) ── */
.ci-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
}

/* ── EYEBROW ── */
.ci-eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    line-height: 19.2px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: #03cfff;
    display: block;
}

/* ── HEADING ── */
.ci-heading {
    font-family: var(--font-main);
    font-size: 50px;
    font-weight: 700;
    line-height: 57px;
    letter-spacing: -1.86px;
    color: #ffffff;
    margin-bottom: 0;
}

/* ── BODY TEXT (WYSIWYG variant) ── */
.ci-body {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #ffffff;
}
.ci-body p {
    margin: 0 0 0 0;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
}
.ci-body p + p { margin-top: 20px; }
.ci-body strong,
.ci-body b { font-weight: 700; }
.ci-body a { color: #03cfff; text-decoration: underline; }

/* ── CAPABILITY LIST ── */
.ci-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ci-item {
    display: flex;
    flex-direction: column;
}

.ci-item.ci-item--inline {
    flex-direction: row;
    align-items: flex-start;
}

.ci-item-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Glowing cyan square dot */
.ci-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #03cfff;
    box-shadow: 0 0 8px 0 #00d4ff;
    /* vertically align with the 30px line-height text: (30 - 8) / 2 = 11px */
    margin-top: 11px;
    display: block;
}

.ci-item-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #03cfff;
    text-transform: uppercase;
}

/* Body text indented to align past dot + gap (8 + 12 = 20px, Figma uses 22px) */
.ci-item-body {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #ffffff;
    margin: 0;
    padding-left: 22px;
}

/* ── IMAGE BOX (right column) ── */
.ci-img-box {
    position: relative;
    height: 564px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 20px;
    overflow: hidden;
    background-color: #03cfff;
}

/* Cyan base + texture overlay */
.ci-img-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ci-img-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

/* Main ACF image fills the box */
.ci-main-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Subtle gradient at bottom */
.ci-img-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.35));
    pointer-events: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
    .ci-section { padding: 72px 0; }
    .ci-heading { font-size: 38px; line-height: 1.15; letter-spacing: -1px; }
    .ci-img-box { height: 440px; }
}

@media (max-width: 767.98px) {
    .ci-section { padding: 56px 0; }
    .ci-cols,
    .ci-cols--reverse {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }
    .ci-col-left,
    .ci-col-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .ci-heading { font-size: 30px; line-height: 1.1; letter-spacing: -0.5px; }
    .ci-body,
    .ci-body p { font-size: 18px; line-height: 28px; }
    .ci-item-title { font-size: 18px; }
    .ci-item-body { font-size: 18px; line-height: 28px; }
    .ci-img-box { height: 360px; }
}

@media (max-width: 575.98px) {
    .ci-section { padding: 40px 0; }
    .ci-heading { font-size: 26px; }
    .ci-body,
    .ci-body p { font-size: 16px; line-height: 26px; }
    .ci-item-title { font-size: 16px; }
    .ci-item-body { font-size: 16px; line-height: 26px; }
    .ci-img-box { height: 280px; }
}
