/* =========================
   SERVICES PAGE FINAL CLEAN VERSION
========================= */

.services-hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding-top: 150px;

    background:
        radial-gradient(circle at top right, rgba(0, 210, 223, .13), transparent 32%),
        radial-gradient(circle at bottom left, rgba(0, 210, 223, .08), transparent 28%);
}

.services-hero-content {
    width: 100%;
    max-width: 980px;
}

.services-hero-content h1 {
    max-width: 950px;
    margin-bottom: 24px;

    color: white;
    font-size: clamp(2.4rem, 6vw, 5.4rem);
    line-height: 1.05;
    letter-spacing: -2px;
}

.services-hero-content p {
    max-width: 760px;

    color: #bdbdbd;
    font-size: 1.05rem;
    line-height: 1.8;
}

.section-head {
    max-width: 850px;
    margin-bottom: 42px;
}

.section-head h1 {
    margin-bottom: 18px;
}

.section-head p {
    max-width: 760px;
    color: #bdbdbd;
}

/* =========================
   SERVICES GRID
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.service-card {
    position: relative;
    overflow: hidden;

    padding: 28px;
    border-radius: 26px;

    background:
        radial-gradient(circle at top right, rgba(0, 210, 223, .08), transparent 34%),
        rgba(255, 255, 255, .035);

    border: 1px solid rgba(255, 255, 255, .07);

    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 210, 223, .34);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
}

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

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

    margin-bottom: 20px;

    border-radius: 20px;

    background:
        linear-gradient(145deg, rgba(0, 210, 223, .95), rgba(0, 145, 160, .95));

    color: black;
    font-size: 1.55rem;
    font-weight: 900;

    box-shadow: 0 16px 36px rgba(0, 210, 223, .16);
}

.service-card h2 {
    margin-bottom: 12px;

    color: white;
    font-size: 1.25rem;
}

.service-card p {
    margin-bottom: 18px;

    color: #bdbdbd;
    line-height: 1.7;
}

.service-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;

    padding: 0;
    margin: 0;

    list-style: none;
}

.service-card li {
    position: relative;

    padding-left: 22px;

    color: #a8a8a8;
    font-size: .94rem;
    line-height: 1.6;
}

.service-card li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: #00d2df;
    font-weight: 900;
}

/* =========================
   FLEXIBLE WORK SECTION
========================= */

.flex-work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.flex-work-card {
    position: relative;
    overflow: hidden;

    padding: 30px;
    border-radius: 26px;

    background:
        radial-gradient(circle at top right, rgba(0, 210, 223, .09), transparent 36%),
        rgba(255, 255, 255, .035);

    border: 1px solid rgba(255, 255, 255, .07);

    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}

.flex-work-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 210, 223, .34);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.flex-work-card span {
    display: inline-flex;

    margin-bottom: 18px;

    color: #00d2df;
    font-size: 1.9rem;
    font-weight: 900;
}

.flex-work-card h2 {
    margin-bottom: 12px;

    color: white;
    font-size: 1.25rem;
}

.flex-work-card p {
    color: #bdbdbd;
    line-height: 1.8;
}

/* =========================
   PROCESS
========================= */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process-card {
    position: relative;
    overflow: hidden;

    padding: 26px;
    border-radius: 24px;

    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .07);

    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 210, 223, .3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .22);
}

.process-card span {
    display: inline-flex;

    margin-bottom: 18px;

    color: #00d2df;
    font-size: 1.8rem;
    font-weight: 900;
}

.process-card h2 {
    margin-bottom: 10px;

    color: white;
    font-size: 1.15rem;
}

.process-card p {
    color: #bdbdbd;
    line-height: 1.7;
}

/* =========================
   FAQ
========================= */

.faq-list {
    width: 100%;
    max-width: 980px;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    overflow: hidden;

    border-radius: 20px;

    background:
        radial-gradient(circle at top right, rgba(0, 210, 223, .05), transparent 35%),
        rgba(255, 255, 255, .035);

    border: 1px solid rgba(255, 255, 255, .07);

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.faq-item.active {
    border-color: rgba(0, 210, 223, .34);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.faq-question {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;

    padding: 22px 24px;

    background: transparent;
    border: none;

    color: white;

    cursor: pointer;

    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    text-align: left;
}

.faq-question span {
    display: block;
    line-height: 1.5;
}

.faq-question strong {
    width: 34px;
    min-width: 34px;
    height: 34px;

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

    border-radius: 50%;

    background: rgba(0, 210, 223, .09);
    border: 1px solid rgba(0, 210, 223, .18);

    color: #00d2df;
    font-size: 1.2rem;
    line-height: 1;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.faq-item.active .faq-question strong {
    transform: rotate(180deg);
    background: rgba(0, 210, 223, .16);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition: max-height .28s ease;
}

.faq-item.active .faq-answer {
    max-height: 520px;
}

.faq-answer p {
    padding: 0 24px 24px;

    color: #bdbdbd;
    line-height: 1.8;
}

