/* ============================================================
   Snapchat Ads Page — Premium Modern Design
   ============================================================ */
:root {
    --sc-brand: #2f5aae;
    --sc-yellow: #FFFC00;
    --sc-dark: #0a0f1e;
    --sc-light: #f4f5f7;
    --sc-green: #27ae60;
    --sc-green2: #2ecc71;
    --sc-teal: #338eaa;
    --sc-text: #272626;
    --sc-text-light: #3d4654;
    --sc-white: #fff;
}

/* ── Button ── */
.sc-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; font-family: 'Tajawal', sans-serif;
    font-size: 15px; font-weight: 700;
    padding: 14px 40px; border-radius: 50px; border: none;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: var(--sc-white);
    text-decoration: none; cursor: pointer;
    box-shadow: 0 8px 30px rgba(39,174,96,0.3);
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; overflow: hidden;
}
.sc-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(39,174,96,0.4);
    color: var(--sc-white);
}

/* ============================================================
   1. HERO
   ============================================================ */
.sc-hero {
    position: relative;
    min-height: 85vh;
    display: flex; align-items: center;
    background-color: #0c1a2a;
    background-size: cover; background-position: center;
    overflow: hidden;
}
/* Decorative shapes */
.sc-hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: 1; pointer-events: none;
    animation: scOrbFloat1 10s ease-in-out infinite;
}
.sc-hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    z-index: 1; pointer-events: none;
    animation: scOrbFloat2 12s ease-in-out infinite;
}
@keyframes scOrbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.08); }
}
@keyframes scOrbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 20px) scale(1.05); }
}
.sc-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(12,26,42,.7) 0%, rgba(0,0,0,.3) 40%, rgba(26,45,74,.6) 100%);
    z-index: 1;
}
/* Border circle */
.sc-hero__overlay::before {
    content: '';
    position: absolute;
    top: 15%; left: 8%;
    width: 200px; height: 200px;
    border: 2px solid rgba(255,255,255,0.07);
    border-radius: 50%;
    animation: scOrbFloat2 8s ease-in-out infinite;
    pointer-events: none;
}
/* Rotated square */
.sc-hero__overlay::after {
    content: '';
    position: absolute;
    bottom: 20%; right: 10%;
    width: 120px; height: 120px;
    border: 2px solid rgba(255,252,0,0.08);
    border-radius: 24px;
    transform: rotate(45deg);
    animation: scOrbFloat1 12s ease-in-out infinite;
    pointer-events: none;
}
.sc-hero__content {
    position: relative; z-index: 2;
    text-align: center; padding: 100px 20px 80px;
    max-width: 800px; margin: 0 auto;
}
.sc-hero__badge {
    display: inline-block;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.25);
    color: var(--sc-white); font-size: 15px; font-weight: 700;
    padding: 10px 32px; border-radius: 50px;
    margin-bottom: 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    letter-spacing: 0.5px;
}
.sc-hero__title {
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 900; color: var(--sc-white);
    line-height: 1.35; margin-bottom: 20px;
    text-shadow: 0 3px 24px rgba(0,0,0,.3);
}
/* Typewriter */
.sc-hero__typewriter {
    display: flex; align-items: center; justify-content: center;
    gap: 2px; margin-bottom: 20px;
    min-height: 48px;
}
.sc-hero__tw-text {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 900; color: var(--sc-yellow);
    text-shadow: 0 2px 12px rgba(255,252,0,.25);
}
.sc-hero__tw-cursor {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 300; color: var(--sc-yellow);
    animation: scBlink .7s step-end infinite;
}
@keyframes scBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.sc-hero__desc {
    font-size: 17px; color: rgba(255,255,255,.9);
    margin-bottom: 32px; max-width: 520px; margin-inline: auto;
    line-height: 1.8;
}
.sc-btn--hero {
    padding: 16px 48px; font-size: 16px;
    background: var(--sc-yellow); color: var(--sc-dark);
    font-weight: 800;
    box-shadow: 0 8px 30px rgba(255,252,0,0.25);
}
.sc-btn--hero:hover {
    background: #e6e300;
    color: var(--sc-dark);
    box-shadow: 0 12px 40px rgba(255,252,0,0.35);
    transform: translateY(-3px);
}

/* ============================================================
   2. MARQUEE
   ============================================================ */
.sc-marquee {
    background: var(--sc-yellow); padding: 14px 0;
    overflow: hidden; white-space: nowrap;
    direction: ltr;
}
.sc-marquee__track {
    display: inline-flex;
    animation: scScroll 40s linear infinite;
}
.sc-marquee__item {
    display: inline-flex; align-items: center;
    padding: 0 40px;
    font-size: 16px; font-weight: 700;
    color: var(--sc-dark); white-space: nowrap;
}
.sc-marquee__item::before {
    content: '\2605';
    margin-left: 12px;
    font-size: 14px;
    color: var(--sc-dark);
    opacity: 0.7;
}
@keyframes scScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

/* ============================================================
   3. ABOUT — 2 columns
   ============================================================ */
.sc-about {
    padding: 70px 0; background: var(--sc-white);
    position: relative; overflow: hidden;
}
.sc-about__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: center;
}
.sc-about__img-wrap {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}
.sc-about__img-wrap img {
    width: 100%; height: 380px;
    object-fit: cover; display: block; border-radius: 20px;
}
.sc-about__carousel { border-radius: 20px; overflow: hidden; }
.sc-about__carousel img {
    width: 100%; height: 380px;
    object-fit: cover; display: block; border-radius: 20px;
}
.sc-about__logo {
    width: 80px; height: 80px;
    object-fit: contain; margin-bottom: 16px;
}
.sc-about__title {
    font-size: clamp(20px, 2.5vw, 28px); font-weight: 800;
    color: var(--sc-dark); margin-bottom: 12px; line-height: 1.4;
}
.sc-about__desc {
    font-size: 15px; font-weight: 500; color: var(--sc-text-light);
    line-height: 2; margin-bottom: 20px;
}
.sc-about__features {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.sc-about__features li {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(160deg, #f8fbff, #f0f4f8);
    border-radius: 12px;
    border: 1px solid #e8ecf1;
    font-size: 14px; font-weight: 600;
    color: var(--sc-text);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sc-about__features li:hover {
    background: var(--sc-white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transform: translateX(-4px);
}
.sc-about__features li::before {
    content: '\2713';
    display: flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; flex-shrink: 0;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: var(--sc-white); font-size: 13px; font-weight: 900;
    border-radius: 50%;
}
/* swiper dots */
.sc-about .swiper-pagination-bullet { width: 10px; height: 10px; background: #ccc; opacity: 1; }
.sc-about .swiper-pagination-bullet-active { background: var(--sc-yellow); width: 26px; border-radius: 5px; }
.sc-about .swiper-button-next,
.sc-about .swiper-button-prev {
    color: var(--sc-dark); width: 36px; height: 36px;
    background: var(--sc-white); border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.sc-about .swiper-button-next::after,
.sc-about .swiper-button-prev::after { font-size: 14px; font-weight: 700; }

/* ============================================================
   4. PRICING — 2 columns: price list + features card
   ============================================================ */
.sc-pricing {
    padding: 60px 0; text-align: center;
    background: linear-gradient(160deg, #f8fbff 0%, #eaf1fd 30%, #f0f4f8 100%);
    position: relative; overflow: hidden;
}
.sc-pricing::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sc-yellow), #f5a623, var(--sc-brand));
}
.sc-pricing__title {
    font-size: clamp(24px, 3vw, 36px); font-weight: 800;
    color: var(--sc-dark); margin-bottom: 8px; line-height: 1.4;
}
.sc-pricing__subtitle {
    font-size: 18px; font-weight: 700;
    color: var(--sc-text-light); margin-bottom: 40px;
}
.sc-pricing__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 30px; align-items: start;
}

/* ── Price List (left column) ── */
.sc-pricing__list {
    background: var(--sc-white);
    border-radius: 24px; padding: 30px;
    border: 2px solid #e8ecf1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.sc-pricing__list-title {
    font-size: 18px; font-weight: 900;
    color: var(--sc-brand); margin-bottom: 20px;
    text-align: center; line-height: 1.5;
}
.sc-pricing__list-row {
    display: flex; align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 15px; font-weight: 600;
    color: var(--sc-text);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sc-pricing__list-row:nth-child(odd) {
    background: linear-gradient(160deg, #f8fbff, #f0f4f8);
}
.sc-pricing__list-row:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.sc-pricing__list-check {
    width: 24px; height: 24px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--sc-green), #2ecc71);
    color: var(--sc-white); border-radius: 50%;
    font-size: 12px; font-weight: 900;
}
.sc-pricing__list-views {
    flex: 1;
}
.sc-pricing__list-price {
    font-weight: 800; color: var(--sc-brand);
    white-space: nowrap;
}

/* ── Features Card (right column) ── */
.sc-pricing__features-card {
    background: linear-gradient(160deg, var(--sc-brand), #1e3f7a);
    border-radius: 24px; padding: 36px 30px;
    color: var(--sc-white);
    box-shadow: 0 15px 50px rgba(47,90,174,0.3);
    position: relative; overflow: hidden;
    text-align: center;
}
.sc-pricing__features-card::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 180px; height: 180px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
}
.sc-pricing__features-card::after {
    content: '';
    position: absolute; bottom: -40px; left: -40px;
    width: 120px; height: 120px;
    background: rgba(255,252,0,0.05);
    border-radius: 50%;
    pointer-events: none;
}
.sc-pricing__features-logo {
    width: 70px; height: 70px;
    object-fit: contain; margin: 0 auto 16px;
}
.sc-pricing__features-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--sc-yellow), #e6e300);
    color: var(--sc-dark); font-size: 13px; font-weight: 800;
    padding: 6px 20px; border-radius: 50px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(255,252,0,0.2);
}
.sc-pricing__features-title {
    font-size: 22px; font-weight: 900;
    color: var(--sc-white); margin-bottom: 20px;
    line-height: 1.4;
}
.sc-pricing__features {
    list-style: none; padding: 0; margin: 0;
    text-align: right;
}
.sc-pricing__features li {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0; font-size: 14px;
    color: rgba(255,255,255,.9);
    line-height: 1.8;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.sc-pricing__features li:last-child { border-bottom: none; }
.sc-pricing__feat-icon {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    background: rgba(255,252,0,0.15);
    border-radius: 8px; padding: 6px;
}
.sc-pricing__feat-icon svg {
    width: 100%; height: 100%;
    stroke: var(--sc-yellow);
}
.sc-pricing__features li::before {
    content: none;
}

/* ============================================================
   5. WHY CHOOSE US
   ============================================================ */
.sc-why {
    padding: 70px 0;
    background: linear-gradient(160deg, #f8fbff 0%, #eaf1fd 30%, #f0f4f8 100%);
    position: relative; overflow: hidden;
}
.sc-why::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sc-yellow), var(--sc-green), var(--sc-brand));
}
.sc-why__title {
    text-align: center; font-size: clamp(24px, 3vw, 36px);
    font-weight: 800; color: var(--sc-dark);
    margin-bottom: 40px; line-height: 1.4;
}
.sc-why__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sc-why__card {
    border-radius: 24px;
    border: 2px solid #e8ecf1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 30px 24px; text-align: center;
    position: relative; overflow: visible;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sc-why__card::after {
    content: '';
    position: absolute; top: 0; left: 5%; right: 5%;
    width: 90%; margin: auto;
    height: 4px; border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--sc-yellow), var(--sc-green));
    opacity: 1;
}
.sc-why__card:nth-child(1) { background: linear-gradient(180deg, #eff6ff 0%, #fff 100%); }
.sc-why__card:nth-child(2) { background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%); }
.sc-why__card:nth-child(3) { background: linear-gradient(180deg, #fffbeb 0%, #fff 100%); }
.sc-why__card:nth-child(4) { background: linear-gradient(180deg, #eff6ff 0%, #fff 100%); }
.sc-why__card:nth-child(5) { background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%); }
.sc-why__card:nth-child(6) { background: linear-gradient(180deg, #fffbeb 0%, #fff 100%); }
.sc-why__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: var(--sc-green);
}
.sc-why__badge {
    position: absolute; top: -18px; left: 50%;
    transform: translateX(-50%);
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--sc-green), #0EB33D);
    color: var(--sc-white);
    border: 3px solid var(--sc-white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 900;
    box-shadow: 0 4px 15px rgba(39,174,96,0.3);
    z-index: 5;
}
.sc-why__icon {
    width: 80px; height: 80px;
    margin: 20px auto 16px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 20px;
    padding: 14px;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sc-why__card:hover .sc-why__icon {
    transform: scale(1.05);
}
.sc-why__card:nth-child(1) .sc-why__icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.sc-why__card:nth-child(2) .sc-why__icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.sc-why__card:nth-child(3) .sc-why__icon { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.sc-why__card:nth-child(4) .sc-why__icon { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.sc-why__card:nth-child(5) .sc-why__icon { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.sc-why__card:nth-child(6) .sc-why__icon { background: linear-gradient(135deg, #ecfeff, #cffafe); }
.sc-why__icon img { width: 100%; height: 100%; object-fit: contain; }
.sc-why__card h3 {
    font-size: 18px; font-weight: 700;
    color: var(--sc-dark); margin-bottom: 10px;
}
.sc-why__card p {
    font-size: 15px; font-weight: 500; color: var(--sc-text-light); line-height: 1.8;
}

/* ============================================================
   6. CONTACT
   ============================================================ */
.sc-contact {
    padding: 60px 0;
    background: linear-gradient(160deg, #f8fbff 0%, #eaf1fd 30%, #f0f4f8 100%);
    position: relative; overflow: hidden;
}
.sc-contact::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sc-yellow), var(--sc-green), var(--sc-brand));
}
.sc-contact__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: stretch;
}

/* ── Snapchat Image Card (Right) ── */
.sc-contact__promo {
    border: 3px solid var(--sc-yellow);
    border-radius: 24px; padding: 40px 30px;
    text-align: center;
    background: linear-gradient(145deg, #fffef0, #fffde6);
    box-shadow: 0 10px 40px rgba(255,252,0,0.1);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.sc-contact__promo::before {
    content: '';
    position: absolute; top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: rgba(255,252,0,0.1);
    border-radius: 50%;
    pointer-events: none;
}
.sc-contact__promo:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255,252,0,0.18);
}
.sc-contact__promo-icon {
    width: 100%; max-width: 280px; height: auto;
    object-fit: contain;
}
.sc-contact__cta {
    margin-top: 20px; width: 100%;
    justify-content: center;
}

/* ── Contact Info Side (Right) ── */
.sc-contact__info {
    background: var(--sc-white);
    border-radius: 24px; padding: 36px;
    border: 2px solid #e8ecf1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.sc-contact__service-title {
    font-size: 22px; font-weight: 800;
    color: var(--sc-dark); margin-bottom: 8px;
}
.sc-contact__service-desc {
    font-size: 15px; font-weight: 500; color: var(--sc-text-light);
    line-height: 1.8; margin-bottom: 24px;
}
.sc-contact__title {
    font-size: clamp(20px, 2.5vw, 24px); font-weight: 800;
    color: var(--sc-dark); margin-bottom: 20px; text-align: center;
    line-height: 1.4;
    position: relative; display: inline-block; width: 100%;
}
.sc-contact__title::after {
    content: '';
    display: block; width: 60px; height: 3px; margin: 10px auto 0;
    background: linear-gradient(90deg, var(--sc-yellow), var(--sc-green));
    border-radius: 2px;
}
.sc-contact__items {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.sc-contact__item {
    display: flex; align-items: center; gap: 14px;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(160deg, #f8fbff, #f0f4f8);
    border: 1px solid #e8ecf1;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sc-contact__item:hover {
    background: var(--sc-white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: var(--sc-yellow);
}
.sc-contact__item svg,
.sc-contact__item i {
    width: 28px; height: 28px; flex-shrink: 0;
    color: var(--sc-brand);
    font-size: 22px;
}
.sc-contact__item strong {
    display: block; font-size: 13px;
    color: var(--sc-text); margin-bottom: 2px; font-weight: 700;
}
.sc-contact__item a,
.sc-contact__item span {
    font-size: 13px; color: var(--sc-text-light);
    text-decoration: none; direction: ltr; display: inline-block;
    transition: color .2s;
}
.sc-contact__item a:hover { color: var(--sc-brand); }

/* ============================================================
   7. BENEFITS
   ============================================================ */
.sc-benefits {
    padding: 70px 0;
    background: linear-gradient(160deg, #f8fbff 0%, #eaf1fd 30%, #f0f4f8 100%);
    position: relative; overflow: hidden;
}
.sc-benefits::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sc-yellow), var(--sc-green), var(--sc-brand));
}
.sc-benefits__title {
    text-align: center; font-size: clamp(24px, 3vw, 36px);
    font-weight: 800; color: var(--sc-dark);
    margin-bottom: 40px; line-height: 1.4;
}
.sc-benefits__grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.sc-benefits__card {
    background: var(--sc-white);
    border-radius: 24px;
    border: 2px solid #e8ecf1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 30px 24px;
    display: flex; align-items: flex-start; gap: 20px;
    position: relative; overflow: hidden;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sc-benefits__card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sc-yellow), var(--sc-green));
    opacity: 1;
}
.sc-benefits__card:nth-child(1) { background: linear-gradient(180deg, #eff6ff 0%, #fff 100%); }
.sc-benefits__card:nth-child(2) { background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%); }
.sc-benefits__card:nth-child(3) { background: linear-gradient(180deg, #fffbeb 0%, #fff 100%); }
.sc-benefits__card:nth-child(4) { background: linear-gradient(180deg, #eff6ff 0%, #fff 100%); }
.sc-benefits__card:nth-child(5) { background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%); }
.sc-benefits__card:nth-child(6) { background: linear-gradient(180deg, #fffbeb 0%, #fff 100%); }
.sc-benefits__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: var(--sc-green);
}
.sc-benefits__card-icon {
    width: 60px; height: 60px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 20px;
    padding: 14px;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sc-benefits__card:hover .sc-benefits__card-icon {
    transform: scale(1.05);
}
.sc-benefits__card:nth-child(1) .sc-benefits__card-icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.sc-benefits__card:nth-child(2) .sc-benefits__card-icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.sc-benefits__card:nth-child(3) .sc-benefits__card-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.sc-benefits__card:nth-child(4) .sc-benefits__card-icon { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.sc-benefits__card:nth-child(5) .sc-benefits__card-icon { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.sc-benefits__card:nth-child(6) .sc-benefits__card-icon { background: linear-gradient(135deg, #ecfeff, #cffafe); }
.sc-benefits__card-icon img { width: 100%; height: 100%; object-fit: contain; }
.sc-benefits__text h3 {
    font-size: 18px; font-weight: 700;
    color: var(--sc-dark); margin-bottom: 8px; margin-top: 10px;
}
.sc-benefits__text p {
    font-size: 15px; font-weight: 500; color: var(--sc-text-light); line-height: 1.8;
}

/* ============================================================
   8. CTA
   ============================================================ */
.sc-cta {
    padding: 80px 0;
    background: linear-gradient(160deg, #0c1a2a 0%, #1a2d4a 50%, #0f2035 100%);
    text-align: center;
    position: relative; overflow: hidden;
}
/* Decorative shapes */
.sc-cta::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: rgba(255,252,0,0.04);
    border-radius: 50%;
    pointer-events: none;
    animation: scOrbFloat1 10s ease-in-out infinite;
}
.sc-cta::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 250px; height: 250px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    pointer-events: none;
    animation: scOrbFloat2 12s ease-in-out infinite;
}
.sc-cta__content {
    position: relative; z-index: 2;
    max-width: 600px; margin: 0 auto;
}
.sc-cta__icon {
    width: 80px; height: 80px;
    object-fit: contain; margin: 0 auto 24px;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(255,252,0,0.3));
}
.sc-cta__title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900; color: var(--sc-white);
    margin-bottom: 16px; line-height: 1.3;
    text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.sc-cta__desc {
    font-size: 16px; color: rgba(255,255,255,.8);
    margin-bottom: 32px; line-height: 1.8;
    max-width: 480px; margin-inline: auto;
}
.sc-btn--cta {
    padding: 16px 48px; font-size: 16px;
    background: var(--sc-yellow); color: var(--sc-dark);
    font-weight: 800;
    box-shadow: 0 8px 30px rgba(255,252,0,0.25);
}
.sc-btn--cta:hover {
    background: #e6e300;
    color: var(--sc-dark);
    box-shadow: 0 12px 40px rgba(255,252,0,0.35);
    transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .sc-why__grid { grid-template-columns: repeat(2, 1fr); }
    .sc-benefits__grid { grid-template-columns: repeat(2, 1fr); }
    .sc-pricing__grid { grid-template-columns: 1fr; }
    .sc-contact__items { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .sc-hero { min-height: 650px; padding-top: 70px; }
    .sc-hero__content { padding: 60px 20px; }
    .sc-about__grid { grid-template-columns: 1fr; }
    .sc-about__img-wrap img,
    .sc-about__carousel img { height: 260px; }
    .sc-pricing__grid { grid-template-columns: 1fr; }
    .sc-why__grid { grid-template-columns: 1fr; }
    .sc-contact__grid { grid-template-columns: 1fr; }
    .sc-contact__items { grid-template-columns: 1fr; }
    .sc-contact__info { padding: 24px; }
    .sc-benefits__grid { grid-template-columns: 1fr; }
    .sc-benefits__card { flex-direction: column; align-items: center; text-align: center; }
    .sc-cta { padding: 60px 0; }
}
