/* ===== Social Media Management Page - Premium Design ===== */
:root {
    --sm-dark: #0a0f1e;
    --sm-brand: #2f5aae;
    --sm-green: #25d366;
    --sm-green-dark: #1da851;
    --sm-light: #f4f8fb;
    --sm-text: #333;
    --sm-text-light: #3d4654;
}

/* ===== COMMON ===== */
.sm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.sm-btn--green {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
    box-shadow: 0 8px 30px rgba(39,174,96,0.3);
}
.sm-btn--green:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(39,174,96,0.4);
    color: #fff;
}
.sm-btn--outline {
    background: transparent;
    color: var(--sm-brand);
    border: 2px solid var(--sm-brand);
    padding: 10px 24px;
    font-size: 14px;
}
.sm-btn--outline:hover {
    background: var(--sm-brand);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(47,90,174,0.3);
}

/* ===== 1: HERO ===== */
.sm-hero {
    position: relative;
    min-height: 85vh;
    display: flex; align-items: center;
    background-size: cover; background-position: center;
    overflow: hidden;
}
.sm-hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    z-index: 1; pointer-events: none;
}
.sm-hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    z-index: 1; pointer-events: none;
    animation: orbFloat1 10s ease-in-out infinite;
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.08); }
}
.sm-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(12,26,42,0.7) 0%, rgba(47,90,174,0.5) 50%, rgba(12,26,42,0.65) 100%);
    z-index: 1;
}
.sm-hero__overlay::before {
    content: '';
    position: absolute;
    top: 15%; left: 8%;
    width: 200px; height: 200px;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    animation: orbFloat1 8s ease-in-out infinite;
    pointer-events: none;
}
.sm-hero__overlay::after {
    content: '';
    position: absolute;
    bottom: 20%; right: 10%;
    width: 120px; height: 120px;
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    transform: rotate(45deg);
    animation: orbFloat1 12s ease-in-out infinite reverse;
    pointer-events: none;
}
.sm-hero__content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 800px; margin: 0 auto;
    padding: 100px 20px 80px;
}
.sm-hero__badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff; font-size: 15px; font-weight: 700;
    padding: 10px 32px; border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.sm-hero__title {
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 900; color: #fff;
    line-height: 1.35; margin-bottom: 16px;
    text-shadow: 0 3px 24px rgba(0,0,0,0.25);
}
.sm-hero__subtitle {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 900; color: #fde047;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.sm-hero__desc {
    font-size: 16px; color: rgba(255,255,255,0.9);
    line-height: 1.8; margin-bottom: 28px;
    max-width: 600px; margin-inline: auto;
}

/* ===== 2/5/9: BANNER IMAGES ===== */
.sm-banner {
    width: 100%;
    line-height: 0;
}
.sm-banner__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ===== 3: FEATURES ===== */
.sm-features {
    padding: 60px 0;
    background: linear-gradient(160deg, #f8fbff 0%, #eaf1fd 30%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}
.sm-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #338eaa, #2f5aae);
}
.sm-features__title {
    text-align: center;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--sm-dark);
    margin-bottom: 40px;
    line-height: 1.4;
}
.sm-features__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}
.sm-features__stat {
    text-align: center;
    position: relative;
    background: rgba(255,255,255,0.7);
    border-radius: 16px;
    padding: 18px 28px;
    backdrop-filter: blur(6px);
}
.sm-features__stat-number {
    display: block;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    color: var(--sm-brand);
    line-height: 1.2;
}
.sm-features__stat-label {
    display: block;
    font-size: 16px;
    color: var(--sm-text-light);
    font-weight: 600;
    margin-top: 4px;
}
/* stat separator removed */
.sm-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Feature Cards */
.sm-features__card {
    background: #fff;
    border-radius: 24px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e8ecf1;
    position: relative;
    overflow: hidden;
}
.sm-features__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--sm-brand), #27ae60);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sm-features__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: var(--sm-brand);
}
.sm-features__card:hover::after {
    opacity: 1;
}
.sm-features__card:nth-child(3n+1) {
    background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
}
.sm-features__card:nth-child(3n+2) {
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
}
.sm-features__card:nth-child(3n+3) {
    background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
}

/* Feature Icon */
.sm-features__card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sm-features__card:nth-child(4n+1) .sm-features__card-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.sm-features__card:nth-child(4n+2) .sm-features__card-icon {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.sm-features__card:nth-child(4n+3) .sm-features__card-icon {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.sm-features__card:nth-child(4n+4) .sm-features__card-icon {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}
.sm-features__card:hover .sm-features__card-icon {
    transform: scale(1.08);
}
.sm-features__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sm-features__card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--sm-dark);
    margin-bottom: 10px;
}
.sm-features__card p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--sm-text-light);
}

/* ===== 4: WORKFLOW ===== */
.sm-workflow {
    padding: 60px 0;
    background: linear-gradient(135deg, #0c1a2a 0%, #1a3a5c 50%, #0c1a2a 100%);
    position: relative;
    overflow: hidden;
}
.sm-workflow::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: rgba(47,90,174,0.12);
    border-radius: 50%;
    pointer-events: none;
}
.sm-workflow .container::before {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 200px; height: 200px;
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
}
.sm-workflow .container { position: relative; }
.sm-workflow__title {
    text-align: center;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.4;
}
.sm-workflow__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sm-workflow__step {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sm-workflow__step:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}
.sm-workflow__number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--sm-brand), #1e3f7a);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(47,90,174,0.3);
}
.sm-workflow__step p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
    padding-top: 6px;
}

/* ===== 6: EXTRA SERVICES ===== */
.sm-extra {
    padding: 60px 0;
    background: linear-gradient(160deg, #f8fbff 0%, #eaf1fd 30%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}
.sm-extra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #338eaa, #2f5aae);
}
.sm-extra__title {
    text-align: center;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--sm-dark);
    margin-bottom: 40px;
    line-height: 1.4;
}
.sm-extra__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Extra Cards */
.sm-extra__card {
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e8ecf1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}
.sm-extra__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--sm-brand), #27ae60);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sm-extra__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: var(--sm-brand);
}
.sm-extra__card:hover::after {
    opacity: 1;
}
.sm-extra__card:nth-child(4n+1) {
    background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
}
.sm-extra__card:nth-child(4n+2) {
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
}
.sm-extra__card:nth-child(4n+3) {
    background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
}
.sm-extra__card:nth-child(4n+4) {
    background: linear-gradient(180deg, #fdf2f8 0%, #fff 100%);
}

/* Extra Icon */
.sm-extra__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sm-extra__card:nth-child(4n+1) .sm-extra__icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.sm-extra__card:nth-child(4n+2) .sm-extra__icon {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.sm-extra__card:nth-child(4n+3) .sm-extra__icon {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.sm-extra__card:nth-child(4n+4) .sm-extra__icon {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}
.sm-extra__card:hover .sm-extra__icon {
    transform: scale(1.08);
}
.sm-extra__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sm-extra__card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--sm-dark);
    line-height: 1.6;
}

/* ===== 7: PRICING ===== */
.sm-pricing {
    padding: 60px 0;
    background: linear-gradient(160deg, #f8fbff 0%, #eaf1fd 30%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}
.sm-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #338eaa, #2f5aae);
}
.sm-pricing__header {
    text-align: center;
    margin-bottom: 40px;
}
.sm-pricing__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}
.sm-pricing__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sm-pricing__title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--sm-dark);
    line-height: 1.4;
}
.sm-pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

/* Pricing Cards */
.sm-pricing__card {
    background: #fff;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid #e8ecf1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.sm-pricing__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--sm-brand), #27ae60);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sm-pricing__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: var(--sm-brand);
}
.sm-pricing__card:hover::after {
    opacity: 1;
}
.sm-pricing__card:nth-child(4n+1) {
    background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
}
.sm-pricing__card:nth-child(4n+2) {
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
}
.sm-pricing__card:nth-child(4n+3) {
    background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
}
.sm-pricing__card:nth-child(4n+4) {
    background: linear-gradient(180deg, #fdf2f8 0%, #fff 100%);
}

/* Featured pricing card */
.sm-pricing__card--featured {
    background: linear-gradient(160deg, #2f5aae, #1e3f7a) !important;
    color: #fff;
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(47,90,174,0.25);
    border-color: transparent;
}
.sm-pricing__card--featured::after {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    opacity: 1;
}
.sm-pricing__card--featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 25px 60px rgba(47,90,174,0.35);
}
.sm-pricing__card--featured .sm-pricing__amount {
    color: #fff;
}
.sm-pricing__card--featured .sm-pricing__currency {
    color: rgba(255,255,255,0.7);
}
.sm-pricing__card--featured .sm-pricing__label {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.2);
}
.sm-pricing__card--featured .sm-btn--outline {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.sm-pricing__card--featured .sm-btn--outline:hover {
    background: #fff;
    color: var(--sm-brand);
    border-color: #fff;
}
.sm-pricing__card:last-child {
    background: linear-gradient(160deg, #2f5aae, #1e3f7a);
    color: #fff;
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(47,90,174,0.25);
    border-color: transparent;
}
.sm-pricing__card:last-child::after {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    opacity: 1;
}
.sm-pricing__card:last-child:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 25px 60px rgba(47,90,174,0.35);
}
.sm-pricing__card:last-child .sm-pricing__amount {
    color: #fff;
}
.sm-pricing__card:last-child .sm-pricing__currency {
    color: rgba(255,255,255,0.7);
}
.sm-pricing__card:last-child .sm-pricing__label {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.2);
}
.sm-pricing__card:last-child .sm-btn--outline {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.sm-pricing__card:last-child .sm-btn--outline:hover {
    background: #fff;
    color: var(--sm-brand);
    border-color: #fff;
}

.sm-pricing__amount {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 900;
    color: var(--sm-brand);
    line-height: 1.2;
}
.sm-pricing__currency {
    font-size: 14px;
    color: var(--sm-text-light);
    margin-bottom: 12px;
    display: block;
}
.sm-pricing__label {
    font-size: 16px;
    font-weight: 700;
    color: var(--sm-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8ecf1;
}
.sm-pricing__card .sm-btn--outline {
    width: 100%;
    justify-content: center;
}

/* ===== 8: PARTNERS ===== */
.sm-partners {
    padding: 60px 0;
    background: linear-gradient(160deg, #f8fbff 0%, #eaf1fd 30%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}
.sm-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #338eaa, #2f5aae);
}
.sm-partners__title {
    text-align: center;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--sm-dark);
    margin-bottom: 40px;
    line-height: 1.4;
}
.sm-partners__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.sm-partners__item {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    border: 1px solid #e8ecf1;
}
.sm-partners__item:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.sm-partners__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== 10: STRATEGY ===== */
.sm-strategy {
    padding: 60px 0;
    background: linear-gradient(160deg, #f8fbff 0%, #eaf1fd 30%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}
.sm-strategy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #338eaa, #2f5aae);
}
.sm-strategy__title {
    text-align: center;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--sm-dark);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}
.sm-strategy__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Strategy Cards */
.sm-strategy__card {
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 2px solid #e8ecf1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.sm-strategy__card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--sm-brand), #27ae60);
}
.sm-strategy__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--sm-brand), #27ae60);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sm-strategy__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: var(--sm-brand);
}
.sm-strategy__card:hover::after {
    opacity: 1;
}
.sm-strategy__card:nth-child(3n+1) {
    background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
}
.sm-strategy__card:nth-child(3n+2) {
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
}
.sm-strategy__card:nth-child(3n+3) {
    background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
}
/* Strategy Icon */
.sm-strategy__icon {
    width: 60px; height: 60px;
    margin: 0 auto 16px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    padding: 14px;
}
.sm-strategy__icon svg {
    width: 100%; height: 100%;
    stroke: var(--sm-brand);
}
.sm-strategy__card:nth-child(1) .sm-strategy__icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.sm-strategy__card:nth-child(2) .sm-strategy__icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.sm-strategy__card:nth-child(3) .sm-strategy__icon { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.sm-strategy__card:nth-child(4) .sm-strategy__icon { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.sm-strategy__card:nth-child(5) .sm-strategy__icon { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.sm-strategy__card:nth-child(6) .sm-strategy__icon { background: linear-gradient(135deg, #ecfeff, #cffafe); }
.sm-strategy__num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--sm-brand), #1e3f7a);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 14px;
    box-shadow: 0 4px 15px rgba(47,90,174,0.3);
}
.sm-strategy__card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--sm-dark);
    margin-bottom: 10px;
    line-height: 1.5;
}
.sm-strategy__card p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.9;
    color: var(--sm-text-light);
}

/* ===== 11: CTA BANNER ===== */
.sm-cta {
    width: 100%;
    line-height: 0;
}
.sm-cta__link {
    display: block;
    width: 100%;
}
.sm-cta__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: opacity 0.3s;
}
.sm-cta__link:hover .sm-cta__img {
    opacity: 0.9;
}

/* ===== RESPONSIVE: 992px ===== */
@media (max-width: 992px) {
    .sm-features__grid { grid-template-columns: 1fr 1fr; }
    .sm-workflow__grid { grid-template-columns: 1fr 1fr; }
    .sm-extra__grid { grid-template-columns: 1fr 1fr; }
    .sm-pricing__grid { grid-template-columns: 1fr 1fr; }
    .sm-strategy__grid { grid-template-columns: 1fr 1fr; }
    .sm-pricing__card:last-child,
    .sm-pricing__card--featured { transform: scale(1); }
    .sm-pricing__card:last-child:hover,
    .sm-pricing__card--featured:hover { transform: translateY(-8px); }
}

/* ===== RESPONSIVE: 768px ===== */
@media (max-width: 768px) {
    .sm-hero { min-height: 650px; padding-top: 70px; }
    .sm-hero__content { padding: 60px 20px; }
    .sm-features__stats { gap: 30px; }
    .sm-features__grid { grid-template-columns: 1fr; }
    .sm-workflow__grid { grid-template-columns: 1fr; }
    .sm-extra__grid { grid-template-columns: 1fr 1fr; }
    .sm-pricing__grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .sm-strategy__grid { grid-template-columns: 1fr; }
    .sm-partners__grid { gap: 20px; }
    .sm-partners__item { width: 90px; height: 60px; }
    .sm-features__stat { padding: 12px 16px; }
}
