/* ── SECTION ── */
.ct-section { padding: 100px 0; }

/* ── HEADER ── */
.ct-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    margin-bottom: 53px;
}

/* ── EYEBROW ── */
.ct-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;
    text-align: center;
    display: block;
}

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

/* ── GRID ── */
.ct-grid {
    row-gap: 53px;
    margin-bottom: 53px;
}

/* ── ITEM ── */
.ct-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* ── LOGO BOX ── */
.ct-logo-wrap {
    background: #ffffff;
    border-radius: 7px;
    width: 143px;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    padding: 10px;
}

.ct-logo-img {
    max-width: 120px;
    max-height: 85px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ── TITLE ── */
.ct-title {
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 700;
    line-height: 28.9px;
    color: #03cfff;
    text-align: center;
    margin-bottom: 0;
}

/* ── BODY ── */
.ct-body {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #ffffff;
    text-align: center;
}
.ct-body p { margin: 0; font-size: 20px; line-height: 30px; font-weight: 300; }
.ct-body strong, .ct-body b { font-weight: 700; }

/* ── CTA ── */
.ct-cta-wrap {
    display: flex;
    justify-content: center;
}

.ct-arrow { display: inline-block; vertical-align: middle; }

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
    .ct-section { padding: 72px 0; }
    .ct-heading { font-size: 38px; line-height: 1.1; letter-spacing: -1px; }
    .ct-grid { row-gap: 40px; margin-bottom: 40px; }
}

@media (max-width: 767.98px) {
    .ct-section { padding: 56px 0; }
    .ct-heading { font-size: 30px; letter-spacing: -0.5px; }
    .ct-grid { row-gap: 32px; margin-bottom: 32px; }
    .ct-title { font-size: 24px; }
    .ct-body { font-size: 18px; line-height: 27px; }
    .ct-body p { font-size: 18px; line-height: 27px; }
}

@media (max-width: 575.98px) {
    .ct-section { padding: 40px 0; }
    .ct-heading { font-size: 26px; }
    .ct-header { gap: 16px; margin-bottom: 36px; }
}
