/* =========================
   SERVICES
========================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 65px;
}

.service-link {
    display: block;
    height: 100%;
}

.service {
    min-height: 330px;
    padding: 30px;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: linear-gradient(145deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .005));

    position: relative;
    overflow: hidden;

    transition: .3s ease;
}

.service-link:hover .service {
    transform: translateY(-7px);
    background: var(--surface);
    border-color: rgba(59, 130, 246, .25);
}

.service-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: rgba(59, 130, 246, .08);
    border: 1px solid rgba(59, 130, 246, .16);

    color: #6da2ff;

    margin-bottom: 70px;
    transition: .3s ease;
}

.service-icon svg {
    width: 21px;
    height: 21px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service:hover .service-icon {
    color: white;
    background: rgba(59, 130, 246, .15);
    border-color: rgba(59, 130, 246, .35);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, .12);
}

.service h3 {
    font-size: 23px;
    letter-spacing: -.03em;
    margin-bottom: 14px;
}

.service p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.service::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    right: -110px;
    bottom: -110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, .13), transparent 65%);
}

/* =========================
   PARTNER
========================= */
.partner {
    background:
        radial-gradient(circle at 75% 45%, rgba(59, 130, 246, .08), transparent 35%),
        #0a0e16;
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.partner h2 {
    font-size: clamp(42px, 5vw, 65px);
    line-height: .98;
    letter-spacing: -.055em;
}

.partner h2 span {
    color: var(--text);
}

.partner-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.partner-item {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255, 255, 255, .018);
}

.partner-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
}

.partner-item p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

/* =========================
   APPROACH
========================= */
.approach {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 70px;
    position: relative;
}

.approach::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: linear-gradient(90deg, rgba(59, 130, 246, .35), rgba(255, 255, 255, .08));
    z-index: 0;
}

.approach-step {
    position: relative;
    min-width: 0;
    z-index: 1;
}

.approach-top {
    display: flex;
    align-items: center;
    height: 28px;
}

.approach-number {
    width: 28px;
    height: 28px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: #78a7ff;

    font-size: 9px;
    font-weight: 600;

    background: #0d131d;
    border: 1px solid rgba(59, 130, 246, .35);

    box-shadow: 0 0 25px rgba(59, 130, 246, .08);
    z-index: 2;
}

.approach-line { display: none; }

.approach-content {
    padding-top: 30px;
    padding-right: 45px;
}

.approach-content h3 {
    font-size: 17px;
    margin-bottom: 11px;
    letter-spacing: -.02em;
}

.approach-content p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
    max-width: 230px;
}

/* =========================
   TECH
========================= */
.tech {
    text-align: center;
    background: #0a0e16;
}

.tech-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech .section-label { text-align: center; }

.tech .section-title {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tech .section-title span {
    color: var(--text);
}

.tech .section-description {
    max-width: 560px;
    margin: 25px auto 0;
    text-align: center;
}

.tech-list {
    max-width: 850px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 55px auto 0;
}

.tech-item {
    padding: 12px 17px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: #8993a4;
    font-size: 10px;
    background: rgba(255, 255, 255, .015);
    transition: .2s ease;
}

.tech-item:hover {
    color: white;
    border-color: rgba(59, 130, 246, .35);
    background: rgba(59, 130, 246, .08);
    transform: translateY(-2px);
}

/* =========================
   FINAL CTA
========================= */
.final {
    min-height: 650px;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 500px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(59, 130, 246, .11), transparent 65%);
}

.final-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.final h2 {
    max-width: 850px;
    margin: auto;
    font-size: clamp(48px, 7vw, 82px);
    line-height: .94;
    letter-spacing: -.06em;
}

.final p {
    max-width: 480px;
    margin: 27px auto 35px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}