.satf-section,
.satf-section * {
    box-sizing: border-box;
}

.satf-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: #fff;
    color: #07143f;
    font-family: Inter, Arial, sans-serif;
}

.satf-inner {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.satf-panel {
    width: 100%;
    min-width: 0;
    background: #f7f9ff;
    border-radius: 18px;
    overflow: hidden;
}

.satf-tech-row,
.satf-faq-row {
    width: 100%;
    min-width: 0;
    display: grid;
    align-items: center;
}

.satf-tech-row {
    --satf-column-gap: 22px;
    grid-template-columns: minmax(0, 61%) minmax(0, calc(39% - var(--satf-column-gap)));
    gap: var(--satf-column-gap);
}

.satf-faq-row {
    --satf-faq-gap: 30px;
    grid-template-columns: minmax(0, 52%) minmax(0, calc(48% - var(--satf-faq-gap)));
    gap: var(--satf-faq-gap);
}

.satf-tech-content,
.satf-faq-content,
.satf-visual {
    min-width: 0;
}

.satf-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: #073ee6;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.satf-eyebrow::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    flex: 0 0 auto;
}

.satf-eyebrow::after {
    content: "";
    width: 38px;
    height: 1px;
    margin-left: 2px;
    background: currentColor;
    opacity: .72;
}

.satf-heading {
    margin: 0;
    max-width: 760px;
    color: #07143f;
    font-family: Manrope, Inter, Arial, sans-serif;
    font-size: clamp(31px, 3.1vw, 48px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.035em;
}

.satf-heading span {
    display: inline;
}

.satf-heading .satf-highlight {
    color: #0a4ce5;
}

.satf-description {
    max-width: 720px;
    margin-top: 14px;
    color: #24365f;
    font-size: 15px;
    line-height: 1.65;
}

.satf-tech-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.satf-tech-card {
    min-width: 0;
    min-height: 222px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(19, 60, 150, .08);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(31, 75, 163, .08);
    text-align: center;
}

.satf-tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #fff;
    background: linear-gradient(135deg, var(--satf-card-accent), color-mix(in srgb, var(--satf-card-accent) 72%, #7b4dff));
    box-shadow: 0 8px 18px color-mix(in srgb, var(--satf-card-accent) 24%, transparent);
}

.satf-tech-icon i {
    font-size: 31px;
}

.satf-tech-icon svg {
    width: 31px;
    height: 31px;
    fill: currentColor;
}

.satf-tech-card-title {
    width: 100%;
    margin: 13px 0 0;
    color: #07143f;
    font-family: Manrope, Inter, Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
}

.satf-tech-card-line {
    width: 28px;
    height: 2px;
    margin: 11px auto 12px;
    border-radius: 10px;
    background: var(--satf-card-accent);
}

.satf-tech-list {
    width: 100%;
    margin: 0;
    padding: 0 0 0 15px;
    color: #16264d;
    font-size: 12.5px;
    line-height: 1.55;
    text-align: left;
}

.satf-tech-list li {
    margin: 4px 0;
}

.satf-tech-list li::marker {
    color: var(--satf-card-accent);
}

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

.satf-visual img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.satf-tech-visual img {
    width: 100%;
}

.satf-faq-heading {
    margin-bottom: 14px;
    font-size: clamp(30px, 3vw, 44px);
}

.satf-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.satf-faq-item {
    width: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dbe5fb;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(33, 74, 155, .05);
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.satf-faq-item.is-open {
    border-color: #90afff;
    background: #f3f7ff;
}

.satf-faq-button {
    width: 100%;
    min-width: 0;
    border: 0;
    padding: 11px 14px;
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr) 15px;
    gap: 10px;
    align-items: center;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.satf-faq-toggle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0757e8;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

.satf-faq-minus {
    display: none;
}

.satf-faq-item.is-open .satf-faq-plus {
    display: none;
}

.satf-faq-item.is-open .satf-faq-minus {
    display: inline;
}

.satf-faq-question {
    min-width: 0;
    color: #07143f;
    font-family: Manrope, Inter, Arial, sans-serif;
    font-size: 13.5px;
    font-weight: 750;
    line-height: 1.35;
}

.satf-faq-chevron {
    width: 8px;
    height: 8px;
    border-right: 1.7px solid #07143f;
    border-bottom: 1.7px solid #07143f;
    transform: rotate(45deg) translateY(-2px);
    justify-self: end;
    transition: transform .2s ease;
}

.satf-faq-item.is-open .satf-faq-chevron {
    transform: rotate(225deg) translate(-1px, -1px);
}

.satf-faq-answer-wrap[hidden] {
    display: none !important;
}

.satf-faq-answer {
    padding: 0 50px 12px;
    color: #25365d;
    font-size: 12.5px;
    line-height: 1.55;
}

.satf-faq-answer p {
    margin: 0 0 7px;
}

.satf-faq-answer p:last-child {
    margin-bottom: 0;
}

.satf-faq-visual img {
    width: 100%;
}

@media (max-width: 1100px) {
    .satf-tech-row,
    .satf-faq-row {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 24px !important;
    }

    .satf-tech-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .satf-tech-card {
        min-height: 0;
    }

    .satf-tech-visual,
    .satf-faq-visual {
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .satf-section {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .satf-panel {
        padding: 22px 18px !important;
    }

    .satf-heading {
        font-size: clamp(28px, 9vw, 38px);
        line-height: 1.08;
    }

    .satf-description {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.6;
    }

    .satf-tech-cards {
        grid-template-columns: 1fr !important;
        margin-top: 18px;
        gap: 10px;
    }

    .satf-tech-card {
        min-height: 0;
        align-items: flex-start;
        text-align: left;
    }

    .satf-tech-card-line {
        margin-left: 0;
    }

    .satf-tech-icon {
        width: 54px;
        height: 54px;
    }

    .satf-faq-button {
        padding: 11px 12px;
        grid-template-columns: 23px minmax(0, 1fr) 13px;
        gap: 9px;
    }

    .satf-faq-question {
        font-size: 13px;
    }

    .satf-faq-answer {
        padding: 0 43px 12px;
    }
}


/* Full-width background only — 2026.29.37 */
.satf-panel {
    position: relative;
    z-index: 0;
    background: transparent;
    border-radius: 0;
    overflow: visible;
}

.satf-panel::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: #f7f9ff;
    border-radius: 18px;
    z-index: -1;
}

/* Compact Android page defaults — 2026.29.37 */
@media (min-width:1025px){
  .satf-inner{gap:10px}
  .satf-panel{padding:20px 26px}
  .satf-tech-row{--satf-column-gap:18px;gap:18px}
  .satf-faq-row{--satf-faq-gap:22px;gap:22px}
  .satf-eyebrow{margin-bottom:9px}
  .satf-heading{font-size:clamp(30px,2.75vw,42px)}
  .satf-description{margin-top:10px;font-size:14px;line-height:1.5}
  .satf-tech-cards{gap:10px;margin-top:16px}
  .satf-tech-card{min-height:185px;padding:14px}
  .satf-tech-icon{width:52px;height:52px}
  .satf-tech-icon i{font-size:27px}
  .satf-tech-icon svg{width:27px;height:27px}
  .satf-tech-card-title{margin-top:10px;font-size:14px}
  .satf-tech-card-line{margin:8px auto 9px}
  .satf-tech-list{font-size:12px;line-height:1.45}
  .satf-faq-heading{font-size:clamp(28px,2.7vw,40px)}
}
