a/* =========================================================
   01. HOME SERVICES SECTION
========================================================= */

.services-section {
    position: relative;
    padding: 34px 0 10px;
}

.services-separator {
    width: 100%;
    height: 1px;
    margin: 0 0 34px;
    background: linear-gradient(
        90deg,
        rgba(95, 168, 255, 0),
        rgba(95, 168, 255, 0.24) 16%,
        rgba(193, 255, 114, 0.22) 50%,
        rgba(95, 168, 255, 0.24) 84%,
        rgba(95, 168, 255, 0)
    );
    opacity: 0.72;
}

.services-section .section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

/* =========================================================
   02. GRID
========================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* =========================================================
   03. CARD
========================================================= */

.service-card {
    position: relative;
    min-height: 320px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(193, 255, 114, 0.07), transparent 26%),
        radial-gradient(circle at bottom left, rgba(95, 168, 255, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(95, 168, 255, 0.16) 0%,
        rgba(255, 255, 255, 0.03) 34%,
        rgba(193, 255, 114, 0.16) 100%
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.95;
}

.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 64%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 34%,
        rgba(255, 255, 255, 0.1) 49%,
        rgba(255, 255, 255, 0.03) 64%,
        transparent 100%
    );
    transition: left 0.8s ease;
    pointer-events: none;
}

.service-card-link:hover .service-card {
    transform: translateY(-5px);
    border-color: rgba(193, 255, 114, 0.18);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.42),
        0 8px 26px rgba(193, 255, 114, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card-link:hover .service-card::after {
    left: 130%;
}

/* =========================================================
   04. GRID FADE
========================================================= */

.service-card-grid-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 52%;
    height: 42%;
    pointer-events: none;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(circle at top left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.78) 42%, rgba(0, 0, 0, 0.18) 76%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: radial-gradient(circle at top left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.78) 42%, rgba(0, 0, 0, 0.18) 76%, rgba(0, 0, 0, 0) 100%);
}

.service-card-grid-fade::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(193, 255, 114, 0.08), transparent 62%);
    mix-blend-mode: screen;
}

/* =========================================================
   05. INNER CONTENT
========================================================= */

.service-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    padding: 28px 28px 24px;
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.service-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(95, 168, 255, 0.08);
    border: 1px solid rgba(95, 168, 255, 0.16);
    color: #8bc3ff;
    font-family: "Sora", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.service-card h3 {
    margin: 0 0 14px;
    max-width: 85%;
    font-family: "Sora", Arial, Helvetica, sans-serif;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 600;
    color: #f4f7fb;
}

.service-card p {
    margin: 0;
    max-width: 92%;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.78;
    color: rgba(244, 247, 251, 0.72);
}

/* =========================================================
   06. FOOTER CTA
========================================================= */

.service-card-footer {
    margin-top: auto;
    padding-top: 26px;
}

.service-card-line {
    width: 112px;
    height: 1px;
    margin-bottom: 14px;
    background: linear-gradient(
        90deg,
        rgba(95, 168, 255, 0.92) 0%,
        rgba(139, 195, 255, 0.86) 38%,
        rgba(193, 255, 114, 0.8) 74%,
        rgba(193, 255, 114, 0) 100%
    );
    opacity: 0.92;
}

.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(216, 255, 172, 0.92);
    transition: color 0.24s ease, transform 0.24s ease;
}

.service-card-cta::after {
    content: "→";
    font-size: 15px;
    line-height: 1;
    transition: transform 0.24s ease;
}

.service-card-link:hover .service-card-cta {
    color: #c1ff72;
    transform: translateX(1px);
}

.service-card-link:hover .service-card-cta::after {
    transform: translateX(3px);
}

/* =========================================================
   07. RESPONSIVE
========================================================= */

@media (max-width: 980px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card-inner {
        min-height: 290px;
    }

    .service-card h3 {
        max-width: 100%;
    }

    .service-card p {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 20px 0 4px;
    }

    .services-separator {
        margin-bottom: 26px;
    }

    .services-section .section-heading {
        margin-bottom: 22px;
    }

    .services-grid {
        gap: 16px;
    }

    .service-card {
        border-radius: 22px;
    }

    .service-card-inner {
        min-height: 260px;
        padding: 22px 20px 20px;
    }

    .service-card-grid-fade {
        width: 64%;
        height: 34%;
        background-size: 20px 20px;
        opacity: 0.42;
    }

    .service-index {
        min-width: 48px;
        height: 30px;
        font-size: 11px;
    }

    .service-card h3 {
        margin-bottom: 12px;
        font-size: 24px;
        line-height: 1.1;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .service-card-footer {
        padding-top: 22px;
    }

    .service-card-line {
        width: 92px;
        margin-bottom: 12px;
    }

    .service-card-cta {
        font-size: 12px;
        letter-spacing: 0.05em;
    }
}

/* =========================================================
   08. SERVICES PAGE HERO
========================================================= */

.services-page {
    padding-top: 112px;
    padding-bottom: 100px;
}

.services-page-hero {
    position: relative;
    margin-bottom: 30px;
    padding: 34px 34px 36px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(193, 255, 114, 0.08), transparent 24%),
        radial-gradient(circle at bottom left, rgba(95, 168, 255, 0.09), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.services-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(95, 168, 255, 0.16) 0%,
        rgba(255, 255, 255, 0.03) 34%,
        rgba(193, 255, 114, 0.16) 100%
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.95;
}

.services-page-topline {
    width: 100%;
    height: 1px;
    margin-bottom: 22px;
    background: linear-gradient(
        90deg,
        rgba(193, 255, 114, 0.42),
        rgba(139, 195, 255, 0.18) 44%,
        rgba(193, 255, 114, 0) 100%
    );
    opacity: 0.78;
}

.services-page-hero-grid-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 46%;
    height: 34%;
    pointer-events: none;
    opacity: 0.48;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(circle at top left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 42%, rgba(0, 0, 0, 0.18) 76%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: radial-gradient(circle at top left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 42%, rgba(0, 0, 0, 0.18) 76%, rgba(0, 0, 0, 0) 100%);
}

.services-page-hero-grid-fade::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(193, 255, 114, 0.08), transparent 62%);
    mix-blend-mode: screen;
}

.services-page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.services-page .section-kicker {
    margin-bottom: 16px;
}

.services-page h1 {
    margin: 0 0 16px;
    font-family: "Sora", Arial, Helvetica, sans-serif;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.96;
    letter-spacing: -0.065em;
    font-weight: 500;
    background: linear-gradient(90deg, #c1ff72 0%, #e9ffd0 46%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-page-lead {
    margin: 0;
    max-width: 760px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.78;
    color: rgba(244, 247, 251, 0.78);
}

.services-page-sublead {
    margin: 14px 0 0;
    max-width: 700px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.74;
    color: rgba(244, 247, 251, 0.56);
}

.services-page-grid-wrap {
    margin-top: 0;
}

@media (max-width: 767px) {
    .services-page {
        padding-top: 84px;
        padding-bottom: 74px;
    }

    .services-page-hero {
        margin-bottom: 22px;
        padding: 24px 20px 24px;
        border-radius: 22px;
    }

    .services-page-topline {
        margin-bottom: 18px;
    }

    .services-page-hero-grid-fade {
        width: 64%;
        height: 26%;
        background-size: 20px 20px;
        opacity: 0.42;
    }

    .services-page h1 {
        font-size: 32px;
        line-height: 1.02;
        margin-bottom: 14px;
    }

    .services-page-lead {
        font-size: 15px;
        line-height: 1.72;
    }

    .services-page-sublead {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.68;
    }
}

/* ===== FIX: KICKER OVERRIDE ===== */

.services-page .section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase !important;
    color: #8bc3ff;
    font-weight: 600;
}

/* ===== HERO SPACING FIX ===== */

.services-page-hero-inner {
    max-width: 780px;
}

.services-page h1 {
    margin-bottom: 14px;
}

/* ===== SAFETY RESET (çok kritik) ===== */

.services-page .section-kicker::before,
.services-page .section-kicker::after {
    content: none !important;
}

/* =========================================
   SERVICE INDEX DOT (HERO STYLE UPGRADED)
========================================= */

.service-card-top {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

/* DOT CONTAINER */
.service-index-dot {
    width: 46px;
    height: 46px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    /* glass + dark base */
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 0 0 1px rgba(0,0,0,0.2),
        0 6px 18px rgba(0, 0, 0, 0.4),
        inset 0 0 12px rgba(0,0,0,0.6);

    transition: all 0.35s ease;
}

/* INNER GLOW RING */
.service-index-dot::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;

    background: linear-gradient(
        135deg,
        rgba(193,255,114,0.5),
        rgba(0,49,114,0.5),
        rgba(193,255,114,0.3)
    );

    opacity: 0.6;
    filter: blur(6px);
    z-index: 0;
}

/* NUMBER */
.service-index-dot span {
    position: relative;
    z-index: 1;

    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;

    color: #C1FF72;
}

/* HOVER EFFECT (premium) */
.service-card:hover .service-index-dot {
    transform: scale(1.08);
    box-shadow:
        0 0 0 1px rgba(193,255,114,0.15),
        0 8px 28px rgba(0,0,0,0.5),
        inset 0 0 16px rgba(0,0,0,0.8);
}

.service-card:hover .service-index-dot::before {
    opacity: 0.9;
    filter: blur(10px);
}