:root {
    --orange: #ff9f1a;
    --orange-dark: #f08300;
    --orange-soft: #fff4df;
    --ink: #202338;
    --navy: #1f2232;
    --muted: #6f7488;
    --line: #eceefa;
    --page: #f5f3fc;
    --white: #ffffff;
    --shadow: 0 22px 60px rgba(32, 35, 56, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    background: var(--page);
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    width: 100%;
    height: 90px;
    padding: 0 max(32px, calc((100% - 1180px) / 2));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    background: var(--white);
}

.brand,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.brand {
    flex: 0 0 auto;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--ink);
}

.brand-text {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
}

.brand-text strong {
    color: #3a3d4d;
}

.brand-text b {
    color: var(--orange);
}

.brand-mark {
    width: 44px;
    height: 44px;
    position: relative;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), #ff9a3c);
    box-shadow: 0 10px 24px rgba(255, 159, 26, 0.28);
}

.brand-mark::after {
    content: "";
    position: absolute;
    right: -5px;
    top: -5px;
    width: 16px;
    height: 16px;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--navy);
}

.brand-mark i {
    position: relative;
    z-index: 1;
}

main {
    width: min(1180px, calc(100% - 32px));
    margin: 38px auto 70px;
}

.primary-button {
    min-height: 48px;
    padding: 0 26px;
    border-radius: 10px;
    color: var(--white);
    background: var(--navy);
    font-weight: 900;
    box-shadow: 0 16px 30px rgba(32, 35, 56, 0.2);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover {
    transform: translateY(-3px);
}

.services {
    padding: 24px 0 18px;
    text-align: center;
}

.section-label {
    width: min(360px, 100%);
    min-height: 34px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--orange-dark);
    background: var(--white);
    border: 1px solid var(--line);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.services h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.08;
}

.services > p {
    margin: 12px 0 44px;
    color: var(--muted);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    gap: 22px;
}

.service-card {
    --card-accent: var(--orange);
    --card-soft: #fff8eb;
    --card-ring: rgba(255, 159, 26, 0.16);
    min-height: 200px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px solid rgba(32, 35, 56, 0.08);
    color: var(--card-accent);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
        var(--card-soft);
    box-shadow: 0 14px 32px rgba(32, 35, 56, 0.08);
    font-weight: 900;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: -1;
    border-radius: 12px;
    border: 1px dashed var(--card-ring);
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 220ms ease, transform 220ms ease;
}

.service-card::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 40%;
    z-index: -2;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--card-ring);
    filter: blur(6px);
    transform: translate(-50%, -50%) scale(0.45);
    opacity: 0;
    transition: opacity 220ms ease, transform 220ms ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--card-ring);
    box-shadow:
        0 22px 44px rgba(32, 35, 56, 0.14),
        0 0 0 4px var(--card-ring);
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.service-card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.25);
}

.service-card i {
    font-size: 44px;
    transition: transform 220ms ease;
}

.service-card:hover i {
    transform: scale(1.08);
}

.service-card span {
    color: var(--ink);
    font-size: 16px;
}

.card-cta {
    margin-top: 4px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border-radius: 999px;
    color: var(--white);
    background: var(--card-accent);
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 10px 22px var(--card-ring);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.card-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 14px 28px var(--card-ring);
}

.card-cta i {
    font-size: 12px;
}

.instagram { --card-accent: #e72b83; --card-soft: #ffe9f4; --card-ring: rgba(231, 43, 131, 0.18); }
.tiktok { --card-accent: #111111; --card-soft: #f4f2f7; --card-ring: rgba(17, 17, 17, 0.14); }
.twitter { --card-accent: #101010; --card-soft: #e9f6ff; --card-ring: rgba(16, 16, 16, 0.14); }
.youtube { --card-accent: #ff1010; --card-soft: #fff0ef; --card-ring: rgba(255, 16, 16, 0.18); }
.facebook { --card-accent: #1877f2; --card-soft: #e9f5ff; --card-ring: rgba(24, 119, 242, 0.18); }
.discord { --card-accent: #5865f2; --card-soft: #eeeeff; --card-ring: rgba(88, 101, 242, 0.2); }
.google { --card-accent: #ea4335; --card-soft: #fff0ef; --card-ring: rgba(234, 67, 53, 0.18); }
.snapchat { --card-accent: #ffb703; --card-soft: #fffab0; --card-ring: rgba(255, 183, 3, 0.24); }
.linkedin { --card-accent: #0a66c2; --card-soft: #eaf4ff; --card-ring: rgba(10, 102, 194, 0.18); }
.threads { --card-accent: #191919; --card-soft: #f5f5f5; --card-ring: rgba(25, 25, 25, 0.14); }
.twitch { --card-accent: #9146ff; --card-soft: #f3eaff; --card-ring: rgba(145, 70, 255, 0.2); }
.spotify { --card-accent: #1db954; --card-soft: #e7fbe9; --card-ring: rgba(29, 185, 84, 0.18); }
.telegram { --card-accent: #229ed9; --card-soft: #e8f7ff; --card-ring: rgba(34, 158, 217, 0.18); }
.whatsapp { --card-accent: #25d366; --card-soft: #e9fff3; --card-ring: rgba(37, 211, 102, 0.18); }
.kick { --card-accent: #20d319; --card-soft: #edffe8; --card-ring: rgba(32, 211, 25, 0.18); }
.deezer { --card-accent: #8a4dff; --card-soft: #f2ecff; --card-ring: rgba(138, 77, 255, 0.2); }

.testimonials {
    padding: 74px 0 26px;
}

.testimonials-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 34px;
}

.testimonials-head h2 {
    margin: 0;
    color: #05070d;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
}

.testimonials-head p {
    margin: 10px 0 0;
    color: #5d6582;
    font-weight: 700;
}

.review-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 0 24px;
    color: var(--white);
    background: #0f6cff;
    font-weight: 900;
    box-shadow: 0 18px 34px rgba(15, 108, 255, 0.24);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(15, 108, 255, 0.3);
}

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

.testimonial-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #dfe4ee;
    border-radius: 28px;
    padding: 28px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(32, 35, 56, 0.05);
}

.testimonial-card > p {
    margin: 0;
    color: #1f2435;
    font-size: 18px;
    line-height: 1.55;
}

.testimonial-author {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    align-items: center;
    border-top: 1px solid #eef1f6;
    padding-top: 24px;
}

.avatar {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 4px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, #263247, var(--orange));
    box-shadow: 0 8px 22px rgba(32, 35, 56, 0.18);
    font-weight: 900;
}

.testimonial-author h3 {
    margin: 0 0 4px;
    color: #05070d;
    font-size: 20px;
}

.testimonial-author span {
    color: #242b3c;
    font-weight: 800;
}

.stars {
    margin-top: 6px;
    color: #ffb400;
    letter-spacing: 0.08em;
}

@media (max-width: 820px) {
    .site-header {
        height: auto;
        padding: 18px 0;
        gap: 14px;
        width: min(100% - 32px, 1180px);
        flex-wrap: wrap;
        background: transparent;
    }

    .brand {
        font-size: 22px;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .service-card {
        min-height: 180px;
    }

    .testimonials-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    main,
    .site-header {
        width: min(100% - 20px, 1180px);
    }
}
