/* ============================================================
   Sosyal Medya Yönetimi Sayfası — smm- scope
   Light theme | #E91E63 accent | Nunito font
   2026 SEO + GEO optimized layout
   ============================================================ */

:root {
    --smm-accent:  #E91E63;
    --smm-dk:      #C2185B;
    --smm-soft:    rgba(233,30,99,.08);
    --smm-soft2:   rgba(233,30,99,.14);
    --smm-t1:      #111827;
    --smm-t2:      #374151;
    --smm-t3:      #6b7280;
    --smm-bg1:     #ffffff;
    --smm-bg2:     #f9fafb;
    --smm-bdr:     #e5e7eb;
    --smm-shadow:  0 2px 14px rgba(0,0,0,.06);
}

/* ── Buttons ──────────────────────────────────────────────── */
.smm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .22s ease;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.smm-btn--pink {
    background: linear-gradient(135deg, var(--smm-accent), var(--smm-dk));
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    box-shadow: 0 4px 16px rgba(233,30,99,.3);
}
.smm-btn--pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233,30,99,.4);
    text-decoration: none; color: #fff !important; -webkit-text-fill-color: #fff !important;
}
.smm-btn--border {
    background: #fff;
    color: var(--smm-t1) !important;
    -webkit-text-fill-color: var(--smm-t1) !important;
    border-color: var(--smm-bdr);
}
.smm-btn--border:hover {
    border-color: var(--smm-accent);
    color: var(--smm-accent) !important;
    -webkit-text-fill-color: var(--smm-accent) !important;
    transform: translateY(-2px);
    text-decoration: none;
}
.smm-btn--ghost {
    background: transparent;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    border-color: rgba(255,255,255,.5);
}
.smm-btn--ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,.1);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ── Section Eyebrow / Label ──────────────────────────────── */
.smm-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--smm-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.smm-h2 {
    font-size: clamp(26px, 3.5vw, 46px);
    font-weight: 800;
    color: var(--smm-t1);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 14px;
}
.smm-h2 .smm-accent { color: var(--smm-accent); }
.smm-lead {
    font-size: 16px;
    color: var(--smm-t3);
    line-height: 1.75;
}

/* ── HERO ─────────────────────────────────────────────────── */
.smm-hero {
    background: var(--smm-bg1);
    padding: 140px 0 88px;
    position: relative;
    overflow: hidden;
}
.smm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(233,30,99,.07) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.smm-hero::after {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(233,30,99,.10) 0%, transparent 70%);
    pointer-events: none;
}
.smm-hero__inner { position: relative; z-index: 1; }

.smm-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--smm-soft);
    border: 1px solid rgba(233,30,99,.2);
    color: var(--smm-accent);
    padding: 6px 14px 6px 8px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 22px;
}
.smm-hero__dot {
    width: 8px; height: 8px;
    background: var(--smm-accent);
    border-radius: 50%;
    animation: smmPulse 2s ease-in-out infinite;
}
@keyframes smmPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(1.4); }
}

.smm-hero__h1 {
    font-size: clamp(38px, 5.5vw, 72px);
    font-weight: 800;
    color: var(--smm-t1);
    letter-spacing: -2.5px;
    line-height: 1.05;
    margin-bottom: 20px;
}
.smm-hero__h1 .smm-accent { color: var(--smm-accent); }
.smm-hero__desc {
    font-size: 17px;
    color: var(--smm-t3);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 34px;
}
.smm-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* Platform grid — right side */
.smm-hero__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-left: 24px;
}
.smm-pcard {
    background: var(--smm-bg1);
    border: 1.5px solid var(--smm-bdr);
    border-radius: 18px;
    padding: 20px 16px;
    text-align: center;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}
.smm-pcard::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .25s ease;
    border-radius: 18px;
}
.smm-pcard:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
}
.smm-pcard:hover::before { opacity: 1; }

.smm-pcard--ig::before  { background: linear-gradient(135deg, rgba(225,48,108,.08), rgba(253,29,29,.05)); }
.smm-pcard--tt::before  { background: linear-gradient(135deg, rgba(0,0,0,.05), rgba(105,201,208,.05)); }
.smm-pcard--yt::before  { background: linear-gradient(135deg, rgba(255,0,0,.06), rgba(255,0,0,.03)); }
.smm-pcard--fb::before  { background: linear-gradient(135deg, rgba(24,119,242,.07), rgba(24,119,242,.04)); }
.smm-pcard--li::before  { background: linear-gradient(135deg, rgba(0,119,181,.07), rgba(0,119,181,.04)); }
.smm-pcard--x::before   { background: linear-gradient(135deg, rgba(0,0,0,.06), rgba(0,0,0,.03)); }

.smm-pcard__icon {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
}
.smm-pcard--ig .smm-pcard__icon { color: #E1306C; }
.smm-pcard--tt .smm-pcard__icon { color: #010101; }
.smm-pcard--yt .smm-pcard__icon { color: #FF0000; }
.smm-pcard--fb .smm-pcard__icon { color: #1877F2; }
.smm-pcard--li .smm-pcard__icon { color: #0077B5; }
.smm-pcard--x  .smm-pcard__icon { color: #000000; }

.smm-pcard__name {
    font-size: 12px;
    font-weight: 800;
    color: var(--smm-t1);
    display: block;
}
.smm-pcard__badge {
    display: inline-block;
    background: var(--smm-soft);
    color: var(--smm-accent);
    font-size: 9px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 100px;
    margin-top: 4px;
    letter-spacing: .5px;
    text-transform: uppercase;
}
/* staggered animation */
.smm-pcard:nth-child(1) { animation: smmFadeIn .5s ease both; }
.smm-pcard:nth-child(2) { animation: smmFadeIn .5s .08s ease both; }
.smm-pcard:nth-child(3) { animation: smmFadeIn .5s .16s ease both; }
.smm-pcard:nth-child(4) { animation: smmFadeIn .5s .24s ease both; }
.smm-pcard:nth-child(5) { animation: smmFadeIn .5s .32s ease both; }
.smm-pcard:nth-child(6) { animation: smmFadeIn .5s .40s ease both; }
@keyframes smmFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── STATS STRIP ──────────────────────────────────────────── */
.smm-stats {
    background: #111827;
    padding: 44px 0;
}
.smm-stats__row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.smm-sstat { text-align: center; flex: 1 1 130px; }
.smm-sstat__icon { font-size: 20px; color: var(--smm-accent); margin-bottom: 6px; }
.smm-sstat__num {
    font-size: 30px; font-weight: 900; line-height: 1;
    letter-spacing: -1px;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}
.smm-sstat__lbl {
    font-size: 12px; font-weight: 600; margin-top: 4px;
    color: rgba(255,255,255,.5) !important;
    -webkit-text-fill-color: rgba(255,255,255,.5) !important;
}
.smm-sstat-sep {
    width: 1px; height: 44px;
    background: rgba(255,255,255,.1);
    flex-shrink: 0;
}

/* ── NEDIR SECTION ────────────────────────────────────────── */
.smm-nedir {
    background: var(--smm-bg2);
    padding: 96px 0;
}
.smm-nedir__text p {
    font-size: 16px;
    color: var(--smm-t2);
    line-height: 1.8;
    margin-bottom: 14px;
}
.smm-nedir__list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}
.smm-nedir__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--smm-t2);
    font-weight: 600;
}
.smm-nedir__list li i {
    color: var(--smm-accent);
    margin-top: 3px;
    flex-shrink: 0;
}
.smm-nedir__cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.smm-nedir-card {
    background: var(--smm-bg1);
    border: 1.5px solid var(--smm-bdr);
    border-left: 3px solid var(--smm-accent);
    border-radius: 16px;
    padding: 22px 20px;
    transition: all .2s ease;
}
.smm-nedir-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transform: translateX(4px);
}
.smm-nedir-card__icon {
    width: 44px; height: 44px;
    background: var(--smm-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--smm-accent);
    font-size: 18px;
    margin-bottom: 12px;
}
.smm-nedir-card__title {
    font-size: 15px;
    font-weight: 800;
    color: var(--smm-t1);
    margin-bottom: 4px;
}
.smm-nedir-card__text {
    font-size: 13px;
    color: var(--smm-t3);
    line-height: 1.6;
    margin: 0;
}

/* ── HİZMETLER ────────────────────────────────────────────── */
.smm-services {
    background: var(--smm-bg1);
    padding: 96px 0;
}
.smm-svc-card {
    background: var(--smm-bg2);
    border: 1.5px solid var(--smm-bdr);
    border-radius: 20px;
    padding: 28px 24px;
    height: 100%;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}
.smm-svc-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--smm-accent);
    transform: scaleY(0);
    transition: transform .25s ease;
    transform-origin: bottom;
}
.smm-svc-card:hover {
    background: var(--smm-bg1);
    box-shadow: 0 12px 32px rgba(0,0,0,.09);
    transform: translateY(-4px);
}
.smm-svc-card:hover::before { transform: scaleY(1); }
.smm-svc-card__icon {
    width: 52px; height: 52px;
    background: var(--smm-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--smm-accent);
    font-size: 22px;
    margin-bottom: 16px;
    transition: background .2s ease;
}
.smm-svc-card:hover .smm-svc-card__icon { background: var(--smm-soft2); }
.smm-svc-card__title {
    font-size: 16px;
    font-weight: 800;
    color: var(--smm-t1);
    margin-bottom: 8px;
}
.smm-svc-card__text {
    font-size: 13px;
    color: var(--smm-t3);
    line-height: 1.65;
    margin: 0;
}

/* ── PLATFORMLAR ──────────────────────────────────────────── */
.smm-platforms {
    background: var(--smm-bg2);
    padding: 96px 0;
}
.smm-plat-card {
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.smm-plat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,.14);
}
.smm-plat-card--ig { background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%); }
.smm-plat-card--tt { background: linear-gradient(135deg, #010101 0%, #69C9D0 100%); }
.smm-plat-card--yt { background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%); }
.smm-plat-card--fb { background: linear-gradient(135deg, #1877F2 0%, #0c5fca 100%); }
.smm-plat-card--li { background: linear-gradient(135deg, #0077B5 0%, #005885 100%); }
.smm-plat-card--x  { background: linear-gradient(135deg, #111111 0%, #333333 100%); }

.smm-plat-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.smm-plat-card__icon {
    font-size: 28px;
    color: rgba(255,255,255,.95) !important;
    -webkit-text-fill-color: rgba(255,255,255,.95) !important;
}
.smm-plat-card__name {
    font-size: 17px;
    font-weight: 800;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}
.smm-plat-card__badge {
    margin-left: auto;
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.9) !important;
    -webkit-text-fill-color: rgba(255,255,255,.9) !important;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
}
.smm-plat-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.smm-plat-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.85) !important;
    -webkit-text-fill-color: rgba(255,255,255,.85) !important;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-weight: 500;
}
.smm-plat-card__list li:last-child { border-bottom: none; }
.smm-plat-card__list li i {
    color: rgba(255,255,255,.7) !important;
    -webkit-text-fill-color: rgba(255,255,255,.7) !important;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── SÜREÇ (TIMELINE) ─────────────────────────────────────── */
.smm-process {
    background: var(--smm-bg1);
    padding: 96px 0;
}
.smm-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 60px;
}
.smm-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(10% + 18px);
    right: calc(10% + 18px);
    height: 2px;
    background: linear-gradient(90deg, var(--smm-accent), rgba(233,30,99,.3));
}
.smm-tl-step {
    text-align: center;
    padding: 0 12px;
    position: relative;
}
.smm-tl-step__circle {
    width: 72px; height: 72px;
    background: var(--smm-bg1);
    border: 2px solid var(--smm-bdr);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
    transition: all .25s ease;
}
.smm-tl-step:hover .smm-tl-step__circle {
    background: var(--smm-accent);
    border-color: var(--smm-accent);
    box-shadow: 0 0 0 6px rgba(233,30,99,.12);
}
.smm-tl-step__num {
    font-size: 10px;
    font-weight: 900;
    color: var(--smm-accent);
    line-height: 1;
    margin-bottom: 1px;
    transition: color .25s ease;
}
.smm-tl-step:hover .smm-tl-step__num {
    color: rgba(255,255,255,.8) !important;
    -webkit-text-fill-color: rgba(255,255,255,.8) !important;
}
.smm-tl-step__icon {
    font-size: 18px;
    color: var(--smm-t1);
    transition: color .25s ease;
}
.smm-tl-step:hover .smm-tl-step__icon {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}
.smm-tl-step__title {
    font-size: 14px;
    font-weight: 800;
    color: var(--smm-t1);
    margin-bottom: 6px;
    line-height: 1.3;
}
.smm-tl-step__text {
    font-size: 12px;
    color: var(--smm-t3);
    line-height: 1.6;
}

/* ── PAKETLER ─────────────────────────────────────────────── */
.smm-packages {
    background: var(--smm-bg2);
    padding: 96px 0;
}
.smm-update-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--smm-bdr);
    color: var(--smm-t3);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 8px;
}
.smm-pkg-card {
    background: var(--smm-bg1);
    border: 2px solid var(--smm-bdr);
    border-radius: 24px;
    padding: 36px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}
.smm-pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,.10);
}
.smm-pkg-card--featured {
    border-color: var(--smm-accent);
    background: var(--smm-bg1);
    box-shadow: 0 8px 32px rgba(233,30,99,.15);
}
.smm-pkg-card--featured:hover {
    box-shadow: 0 20px 56px rgba(233,30,99,.22);
}
.smm-pkg-badge {
    position: absolute;
    top: -1px; right: 28px;
    background: linear-gradient(135deg, var(--smm-accent), var(--smm-dk));
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 14px 7px;
    border-radius: 0 0 12px 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.smm-pkg-card__tier {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--smm-accent);
    margin-bottom: 8px;
}
.smm-pkg-card__name {
    font-size: 24px;
    font-weight: 800;
    color: var(--smm-t1);
    margin-bottom: 6px;
    letter-spacing: -.5px;
}
.smm-pkg-card__desc {
    font-size: 13px;
    color: var(--smm-t3);
    line-height: 1.6;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--smm-bdr);
}
.smm-pkg-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}
.smm-pkg-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 13px;
    color: var(--smm-t2);
    font-weight: 500;
}
.smm-pkg-card__features li i {
    color: var(--smm-accent);
    font-size: 13px;
    margin-top: 1px;
    flex-shrink: 0;
}
.smm-pkg-card__features li.smm-pkg-muted {
    color: var(--smm-t3);
    opacity: .6;
}
.smm-pkg-card__features li.smm-pkg-muted i { color: var(--smm-t3); }
.smm-pkg-cta {
    display: block;
    text-align: center;
    background: var(--smm-soft);
    color: var(--smm-accent) !important;
    -webkit-text-fill-color: var(--smm-accent) !important;
    font-weight: 800;
    font-size: 14px;
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    transition: all .2s ease;
    border: 2px solid rgba(233,30,99,.15);
}
.smm-pkg-cta:hover {
    background: var(--smm-accent);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    border-color: var(--smm-accent);
    text-decoration: none;
}
.smm-pkg-card--featured .smm-pkg-cta {
    background: var(--smm-accent);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    border-color: var(--smm-accent);
}
.smm-pkg-card--featured .smm-pkg-cta:hover {
    background: var(--smm-dk);
    border-color: var(--smm-dk);
}
.smm-pkg-note {
    margin-top: 20px;
    background: #fff;
    border: 1px solid var(--smm-bdr);
    border-left: 3px solid var(--smm-accent);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 12px;
    color: var(--smm-t3);
    line-height: 1.6;
}
.smm-pkg-note i { color: var(--smm-accent); margin-right: 4px; }

/* ── NEDEN BİZ ────────────────────────────────────────────── */
.smm-why {
    background: var(--smm-bg1);
    padding: 96px 0;
}
.smm-why-card {
    background: var(--smm-bg2);
    border: 1.5px solid var(--smm-bdr);
    border-radius: 20px;
    padding: 32px 24px;
    height: 100%;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}
.smm-why-card:hover {
    background: var(--smm-bg1);
    box-shadow: 0 12px 32px rgba(0,0,0,.09);
    transform: translateY(-4px);
    border-color: rgba(233,30,99,.2);
}
.smm-why-card__icon {
    width: 60px; height: 60px;
    background: var(--smm-soft);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--smm-accent);
    font-size: 24px;
    margin-bottom: 20px;
    transition: background .2s ease;
}
.smm-why-card:hover .smm-why-card__icon { background: var(--smm-soft2); }
.smm-why-card__title {
    font-size: 17px;
    font-weight: 800;
    color: var(--smm-t1);
    margin-bottom: 10px;
}
.smm-why-card__text {
    font-size: 14px;
    color: var(--smm-t3);
    line-height: 1.7;
    margin: 0;
}
.smm-metric-card {
    background: linear-gradient(135deg, var(--smm-accent), var(--smm-dk));
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
}
.smm-metric-card__num {
    font-size: 44px;
    font-weight: 900;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px;
}
.smm-metric-card__lbl {
    font-size: 14px;
    color: rgba(255,255,255,.8) !important;
    -webkit-text-fill-color: rgba(255,255,255,.8) !important;
    font-weight: 600;
    line-height: 1.4;
}

/* ── SSS / FAQ ────────────────────────────────────────────── */
.smm-faq {
    background: var(--smm-bg2);
    padding: 96px 0;
}
.smm-accordion .accordion-item {
    background: #fff !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 14px !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.smm-accordion .accordion-button,
.smm-accordion .accordion-button.collapsed {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    -webkit-text-fill-color: #111827 !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    padding: 20px 24px !important;
    border-radius: 14px !important;
    box-shadow: none !important;
    border: none !important;
}
.smm-accordion .accordion-button:not(.collapsed) {
    color: #E91E63 !important;
    -webkit-text-fill-color: #E91E63 !important;
    background: rgba(233,30,99,.06) !important;
    background-color: rgba(233,30,99,.06) !important;
}
.smm-accordion .accordion-button::after {
    filter: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23374151'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.smm-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E91E63'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.smm-accordion .accordion-body {
    font-size: 14px !important;
    color: #374151 !important;
    -webkit-text-fill-color: #374151 !important;
    line-height: 1.75;
    padding: 4px 24px 20px !important;
    background: rgba(233,30,99,.04) !important;
    background-color: rgba(233,30,99,.04) !important;
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.smm-cta {
    background: linear-gradient(135deg, var(--smm-accent) 0%, var(--smm-dk) 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.smm-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.smm-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.smm-cta__eyebrow {
    display: inline-block;
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.9) !important;
    -webkit-text-fill-color: rgba(255,255,255,.9) !important;
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.smm-cta__title {
    font-size: clamp(26px, 4vw, 50px);
    font-weight: 800;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
    line-height: 1.1;
}
.smm-cta__sub {
    font-size: 16px;
    color: rgba(255,255,255,.85) !important;
    -webkit-text-fill-color: rgba(255,255,255,.85) !important;
    line-height: 1.65;
    margin-bottom: 36px;
}
.smm-cta__btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── KEYWORD TAGS ─────────────────────────────────────────── */
.smm-tags {
    background: var(--smm-bg1);
    padding: 56px 0 64px;
    border-top: 1px solid var(--smm-bdr);
}
.smm-tags__head {
    text-align: center;
    margin-bottom: 28px;
}
.smm-tags__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--smm-t3);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.smm-tags__title {
    font-size: 13px;
    color: var(--smm-t3);
    font-weight: 600;
    margin: 0;
}
.smm-tags__cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
}
.smm-tag {
    display: inline-block;
    background: var(--smm-bg2);
    color: var(--smm-t2);
    border: 1px solid var(--smm-bdr);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all .18s ease;
    white-space: nowrap;
    cursor: default;
}
.smm-tag:hover {
    background: var(--smm-soft);
    border-color: rgba(233,30,99,.25);
    color: var(--smm-accent);
}
.smm-tag--hot {
    background: var(--smm-soft);
    border-color: rgba(233,30,99,.2);
    color: var(--smm-accent);
    font-weight: 700;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1199px) {
    .smm-hero__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .smm-hero { padding: 120px 0 64px; }
    .smm-hero__grid { display: none; }
    .smm-hero__desc { max-width: 100%; }
    .smm-nedir, .smm-services, .smm-platforms, .smm-process, .smm-packages, .smm-why, .smm-faq, .smm-cta { padding: 72px 0; }
    .smm-timeline { grid-template-columns: 1fr; gap: 24px; }
    .smm-timeline::before { display: none; }
    .smm-tl-step { display: flex; align-items: flex-start; gap: 16px; text-align: left; padding: 0; }
    .smm-tl-step__circle { width: 56px; height: 56px; flex-shrink: 0; margin: 0; }
    .smm-tl-step__body { flex: 1; padding-top: 4px; }
}
@media (max-width: 767px) {
    .smm-hero { padding: 110px 0 56px; }
    .smm-hero__ctas { flex-direction: column; }
    .smm-hero__ctas a { text-align: center; justify-content: center; }
    .smm-sstat-sep { display: none; }
    .smm-cta__btns { flex-direction: column; align-items: center; }
    .smm-btn { width: 100%; max-width: 320px; justify-content: center; }
}
@media (max-width: 575px) {
    .smm-stats__row { gap: 12px; }
    .smm-sstat { flex: 1 1 calc(50% - 6px); }
}