/* ===== Web Development Page — Premium Modern Design ===== */
:root {
    --wd-dark: #1a3a6b;
    --wd-brand: #2f5aae;
    --wd-green: #25d366;
    --wd-green-dark: #1da851;
    --wd-light: #f4f8fb;
    --wd-text: #333;
    --wd-text-light: #3d4654;
}

/* ===== KEYFRAMES ===== */
@keyframes wd-blink { 0%,100%{opacity:1;} 50%{opacity:0;} }
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-30px,30px) scale(1.1)} }

/* ===== 1: HERO ===== */
.wd-hero {
    background-color: #0c2233;
    background-size: cover;
    background-position: center;
    padding: 160px 0 100px;
    overflow: hidden;
    position: relative;
}

/* Overlay */
.wd-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,34,51,0.92) 0%, rgba(13,58,58,0.85) 50%, rgba(47,90,174,0.8) 100%);
    z-index: 1;
}

/* Decorative shapes */
.wd-hero__shapes {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.wd-hero__shape {
    position: absolute;
    border-radius: 50%;
}

.wd-hero__shape--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37,211,102,0.12), transparent 70%);
    top: -100px;
    right: -100px;
    animation: orbFloat1 18s ease-in-out infinite;
}

.wd-hero__shape--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(47,90,174,0.1), transparent 70%);
    bottom: -80px;
    left: -80px;
    animation: orbFloat1 22s ease-in-out infinite reverse;
}

.wd-hero__shape--3 {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255,255,255,0.06);
    top: 30%;
    left: 10%;
    animation: orbFloat1 15s ease-in-out infinite 3s;
}

.wd-hero .container { position: relative; z-index: 3; }

.wd-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.wd-hero__images {
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.12);
    min-width: 0;
}

.wd-hero__slider {
    width: 100%;
}

.wd-hero__slider .swiper-wrapper {
    display: flex;
}

.wd-hero__slider .swiper-slide {
    flex-shrink: 0;
    width: 100%;
}

.wd-hero__slider .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.wd-hero__slider .swiper-pagination { bottom: 12px !important; }
.wd-hero__slider .swiper-pagination-bullet { background: #fff; opacity: 0.5; }
.wd-hero__slider .swiper-pagination-bullet-active { opacity: 1; background: #27ae60; }

.wd-hero__content { color: #fff; }

/* Badge */
.wd-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.wd-hero__badge svg { color: var(--wd-green); }

.wd-hero__title {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    font-family: var(--font-heading);
}

/* Typewriter */
.wd-typewriter {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 700;
    color: var(--wd-green);
    margin-bottom: 32px;
    min-height: 1.5em;
}

.wd-typewriter__cursor {
    color: var(--wd-green);
    animation: wd-blink 0.7s infinite;
    margin-right: 2px;
}

/* Hero buttons */
.wd-hero__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.wd-hero__phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wd-hero__phone-btn:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    transform: translateY(-2px);
}

/* Intro section (description moved from hero) */
.wd-intro {
    padding: 50px 0;
    background: linear-gradient(160deg, #f8fbff, #eaf1fd 30%, #f0f4f8);
}

.wd-intro__content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 24px;
    padding: 40px 44px;
    border: 2px solid #e0e8f5;
    box-shadow: 0 10px 40px rgba(47,90,174,0.06);
    position: relative;
    overflow: hidden;
}

.wd-intro__content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 5px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, var(--wd-green), var(--wd-brand));
}

.wd-intro__content p {
    font-size: 17px;
    color: #3d4654;
    line-height: 2.1;
    font-weight: 500;
}

@media (max-width: 768px) {
    .wd-intro__content { padding: 28px 20px; }
}

/* Lightbox (removed - using slider now) */
.wd-lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(8px);
}
.wd-lightbox-overlay.active { display: flex; }
.wd-lightbox-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 100000;
    transition: transform 0.3s;
}
.wd-lightbox-close:hover { transform: rotate(90deg); }
.wd-lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ===== 2: SERVICES ===== */
.wd-services {
    padding: 80px 0;
    background: linear-gradient(160deg, #f8fbff 0%, #eaf1fd 30%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}
.wd-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1;
    background: linear-gradient(90deg, #25d366, #338eaa, #2f5aae);
}
.wd-services__heading {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 700;
    color: var(--wd-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}
.wd-services__sub {
    text-align: center;
    color: var(--wd-text-light);
    margin-bottom: 50px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
}
.wd-services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* --- Services Card Base --- */
.wd-services__card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 30px;
    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;
}
.wd-services__card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 6px;
    border-radius: 24px 24px 0 0;
}
.wd-services__card:nth-child(1)::before { background: linear-gradient(90deg, #25d366, #2ecc71); }
.wd-services__card:nth-child(2)::before { background: linear-gradient(90deg, #2f5aae, #4175fc); }
.wd-services__card:nth-child(3)::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }

.wd-services__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}
.wd-services__card:nth-child(1):hover { border-color: #25d366; }
.wd-services__card:nth-child(2):hover { border-color: #2f5aae; }
.wd-services__card:nth-child(3):hover { border-color: #f59e0b; }

/* nth-child gradient backgrounds */
.wd-services__card:nth-child(1) { background: linear-gradient(180deg, #ecfdf5 0%, #fff 100%); }
.wd-services__card:nth-child(2) { background: linear-gradient(180deg, #eff6ff 0%, #fff 100%); }
.wd-services__card:nth-child(3) { background: linear-gradient(180deg, #fffbeb 0%, #fff 100%); }

.wd-services__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* nth-child icon gradient backgrounds */
.wd-services__card:nth-child(1) .wd-services__icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.wd-services__card:nth-child(2) .wd-services__icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.wd-services__card:nth-child(3) .wd-services__icon { background: linear-gradient(135deg, #fef3c7, #fde68a); }

.wd-services__icon img { width: 55%; height: 55%; object-fit: contain; }
.wd-services__card h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--wd-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}
.wd-services__card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wd-services__card li {
    background: rgba(255,255,255,0.7);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    color: var(--wd-text);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.8;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(232,236,241,0.6);
    transition: background 0.3s;
}
.wd-services__card li:hover {
    background: rgba(255,255,255,0.95);
}
.wd-services__card li::before {
    content: '\2713';
    font-weight: 900;
    font-size: 16px;
    flex-shrink: 0;
}
.wd-services__card:nth-child(1) li::before { color: #25d366; }
.wd-services__card:nth-child(2) li::before { color: #2f5aae; }
.wd-services__card:nth-child(3) li::before { color: #f59e0b; }
.wd-services__wa {
    text-align: center;
    margin-top: 40px;
}

/* ===== BANNER ===== */
.wd-banner {
    padding: 40px 0;
    background: #fff;
}

.wd-banner img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* ===== BUTTONS ===== */
.wd-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    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);
    position: relative;
    overflow: hidden;
}
.wd-btn--green {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
    box-shadow: 0 8px 30px rgba(39,174,96,0.3);
}
.wd-btn--green:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(39,174,96,0.4);
}

/* ===== 3: CTA ===== */
.wd-cta {
    background: linear-gradient(160deg, #0c1a2a 0%, #132d4a 50%, #0c1a2a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.wd-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1;
    background: linear-gradient(90deg, #25d366, #338eaa, #2f5aae);
}
.wd-cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.wd-cta__content { color: #fff; }
.wd-cta__label {
    color: var(--wd-green);
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-bottom: 12px;
}
.wd-cta__content h2 {
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}
.wd-cta__content p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.8;
}
.wd-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: 900;
    direction: ltr;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.wd-cta__phone:hover { transform: translateY(-2px); }
.wd-cta__phone-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(39,174,96,0.3);
    transition: box-shadow 0.3s;
}
.wd-cta__phone:hover .wd-cta__phone-icon {
    box-shadow: 0 12px 36px rgba(39,174,96,0.45);
}
.wd-cta__rocket { text-align: center; }
.wd-cta__rocket img {
    max-width: 200px;
    filter: drop-shadow(0 10px 30px rgba(37,211,102,0.2));
}

/* ===== 4: PRICING ===== */
.wd-pricing {
    padding: 80px 0;
    background: linear-gradient(160deg, #f8fbff 0%, #eaf1fd 30%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}
.wd-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1;
    background: linear-gradient(90deg, #25d366, #338eaa, #2f5aae);
}
.wd-pricing__title {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 700;
    color: var(--wd-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}
.wd-pricing__sub {
    text-align: center;
    color: var(--wd-text-light);
    margin-bottom: 50px;
    font-weight: 500;
    line-height: 1.8;
}
.wd-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    direction: ltr;
}

/* --- Pricing Card Base --- */
.wd-pricing__card {
    background: #fff;
    border: 2px solid #e8ecf1;
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    direction: rtl;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.wd-pricing__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #25d366, #338eaa, #2f5aae);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.wd-pricing__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: var(--wd-brand);
}
.wd-pricing__card:hover::before { opacity: 1; }

/* nth-child gradient backgrounds for non-featured */
.wd-pricing__card:nth-child(1) { background: linear-gradient(180deg, #eff6ff 0%, #fff 100%); }
.wd-pricing__card:nth-child(2) { background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%); }
.wd-pricing__card:nth-child(3) { background: linear-gradient(180deg, #fffbeb 0%, #fff 100%); }
.wd-pricing__card:nth-child(4) { background: linear-gradient(180deg, #fdf2f8 0%, #fff 100%); }

/* Featured card override */
.wd-pricing__card--featured {
    background: linear-gradient(160deg, #2f5aae, #1e3f7a) !important;
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(47,90,174,0.3);
    transform: scale(1.03);
    color: #fff;
}
.wd-pricing__card--featured::before { opacity: 1; }
.wd-pricing__card--featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 30px 80px rgba(47,90,174,0.35);
}
.wd-pricing__card.wd-pricing__card--featured h3 { color: #fff; }
.wd-pricing__card.wd-pricing__card--featured .wd-pricing__amount { color: #fff; }
.wd-pricing__card.wd-pricing__card--featured .wd-pricing__currency { color: rgba(255,255,255,0.7); }
.wd-pricing__card.wd-pricing__card--featured h4 {
    color: rgba(255,255,255,0.9);
    border-bottom-color: rgba(255,255,255,0.2);
}
.wd-pricing__card.wd-pricing__card--featured li { color: rgba(255,255,255,0.9); }
.wd-pricing__card.wd-pricing__card--featured li::before { color: var(--wd-green); }

.wd-pricing__badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
    padding: 6px 24px;
    border-radius: 0 0 14px 14px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(39,174,96,0.3);
    z-index: 2;
}
.wd-pricing__card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* nth-child icon backgrounds */
.wd-pricing__card:nth-child(1) .wd-pricing__card-icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.wd-pricing__card:nth-child(2) .wd-pricing__card-icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.wd-pricing__card:nth-child(3) .wd-pricing__card-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.wd-pricing__card:nth-child(4) .wd-pricing__card-icon { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.wd-pricing__card--featured .wd-pricing__card-icon { background: rgba(255,255,255,0.15); }

.wd-pricing__card-icon img { width: 50%; }
.wd-pricing__card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--wd-dark);
    margin-bottom: 12px;
}
.wd-pricing__price { margin-bottom: 20px; }
.wd-pricing__amount {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 900;
    color: var(--wd-dark);
}
.wd-pricing__currency {
    font-size: 14px;
    color: var(--wd-text-light);
    display: block;
    margin-top: 4px;
}
.wd-pricing__card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--wd-dark);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8ecf1;
}
.wd-pricing__card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}
.wd-pricing__card li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--wd-text);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.8;
}
.wd-pricing__card li::before {
    content: '\2713';
    color: var(--wd-green);
    font-weight: 900;
    flex-shrink: 0;
}
.wd-pricing__wa {
    text-align: center;
    margin-top: 40px;
}

/* ===== 5: TESTIMONIALS ===== */
.wd-testimonials {
    padding: 80px 0;
    background: linear-gradient(160deg, #f8fbff 0%, #eaf1fd 30%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}
.wd-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1;
    background: linear-gradient(90deg, #25d366, #338eaa, #2f5aae);
}
.wd-testimonials__label {
    display: block;
    text-align: center;
    color: var(--wd-brand);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}
.wd-testimonials__title {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 700;
    color: var(--wd-dark);
    margin-bottom: 50px;
    line-height: 1.4;
}
.wd-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* --- Testimonials Card Base --- */
.wd-testimonials__card {
    background: #fff;
    border-radius: 24px;
    padding: 32px 28px;
    border: 2px solid #e8ecf1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.wd-testimonials__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #25d366, #338eaa, #2f5aae);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.wd-testimonials__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    border-color: var(--wd-brand);
}
.wd-testimonials__card:hover::before { opacity: 1; }

/* nth-child gradient backgrounds */
.wd-testimonials__card:nth-child(1) { background: linear-gradient(180deg, #eff6ff 0%, #fff 100%); }
.wd-testimonials__card:nth-child(2) { background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%); }
.wd-testimonials__card:nth-child(3) { background: linear-gradient(180deg, #fffbeb 0%, #fff 100%); }
.wd-testimonials__card:nth-child(4) { background: linear-gradient(180deg, #fdf2f8 0%, #fff 100%); }

.wd-testimonials__logo {
    width: 80px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wd-testimonials__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.wd-testimonials__card blockquote {
    font-size: 15px;
    font-weight: 500;
    color: var(--wd-text);
    line-height: 2;
    margin: 0 0 16px;
    font-style: normal;
}
.wd-testimonials__name {
    font-weight: 700;
    color: var(--wd-dark);
    font-size: 14px;
    margin-bottom: 4px;
}
.wd-testimonials__company {
    font-size: 13px;
    color: var(--wd-text-light);
}

/* ===== 6: NEWS ===== */
.wd-news {
    padding: 80px 0;
    background: linear-gradient(160deg, #f8fbff 0%, #eaf1fd 30%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}
.wd-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1;
    background: linear-gradient(90deg, #25d366, #338eaa, #2f5aae);
}
.wd-news__label {
    display: block;
    text-align: center;
    color: var(--wd-brand);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}
.wd-news__title {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 700;
    color: var(--wd-dark);
    margin-bottom: 40px;
    line-height: 1.4;
}
.wd-news__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}
.wd-news__images {
    border-radius: 20px;
    overflow: hidden;
}
.wd-news__images img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 16/10;
    display: block;
}
.wd-news__images .swiper-pagination-bullet { width: 10px; height: 10px; background: #ccc; opacity: 1; }
.wd-news__images .swiper-pagination-bullet-active { background: var(--wd-brand); width: 26px; border-radius: 5px; }
.wd-news__text {
    font-size: 16px;
    line-height: 2.1;
    color: var(--wd-text);
}

/* ===== WHY CHOOSE US ===== */
.wd-whyus {
    padding: 80px 0;
    background: linear-gradient(160deg, #f8fbff, #eaf1fd 30%, #f0f4f8);
    position: relative;
    overflow: hidden;
}

.wd-whyus__title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: #1a3a6b;
    text-align: center;
    margin-bottom: 50px;
    font-family: var(--font-heading);
}

.wd-whyus__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wd-whyus__card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    border: 2px solid #e8ecf1;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.wd-whyus__card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 5px;
    border-radius: 20px 20px 0 0;
}

.wd-whyus__card { position: relative; }

.wd-whyus__card:nth-child(5n+1)::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.wd-whyus__card:nth-child(5n+2)::before { background: linear-gradient(90deg, #27ae60, #2ecc71); }
.wd-whyus__card:nth-child(5n+3)::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.wd-whyus__card:nth-child(5n+4)::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.wd-whyus__card:nth-child(5n+5)::before { background: linear-gradient(90deg, #ec4899, #f472b6); }

.wd-whyus__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.wd-whyus__card-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.wd-whyus__card:nth-child(5n+1) .wd-whyus__card-icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.wd-whyus__card:nth-child(5n+2) .wd-whyus__card-icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.wd-whyus__card:nth-child(5n+3) .wd-whyus__card-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.wd-whyus__card:nth-child(5n+4) .wd-whyus__card-icon { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.wd-whyus__card:nth-child(5n+5) .wd-whyus__card-icon { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }

.wd-whyus__card-icon img { width: 36px; height: 36px; object-fit: contain; }
.wd-whyus__card-icon svg { width: 32px; height: 32px; stroke: var(--wd-brand); }

.wd-whyus__card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a3a6b;
    line-height: 1.6;
}

/* Cairo font for all webdev headings */
.wd-hero__title, .wd-services__title, .wd-cta h2,
.wd-pricing__title, .wd-testimonials h2, .wd-news__title,
.wd-whyus__title {
    font-family: var(--font-heading);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .wd-hero__inner { grid-template-columns: 1fr; text-align: center; }
    .wd-hero__images { justify-content: center; }
    .wd-cta__inner { grid-template-columns: 1fr; text-align: center; }
    .wd-cta__rocket { display: none; }
    .wd-pricing__grid { grid-template-columns: 1fr 1fr; }
    .wd-testimonials__grid { grid-template-columns: 1fr 1fr; }
    .wd-whyus__grid { grid-template-columns: 1fr 1fr; }
    .wd-news__content { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .wd-hero { padding: 110px 0 50px; }
    .wd-hero__slider { border-radius: 16px; border-width: 2px; }
    .wd-hero__slider .swiper-slide img { aspect-ratio: 3/2; }
    .wd-services__grid { grid-template-columns: 1fr; }
    .wd-pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .wd-pricing__card--featured { transform: none; }
    .wd-pricing__card--featured:hover { transform: translateY(-8px); }
    .wd-testimonials__grid { grid-template-columns: 1fr; }
    .wd-whyus__grid { grid-template-columns: 1fr; }
    .wd-hero__badge { font-size: 12px; padding: 6px 16px; }
    .wd-services__card:hover,
    .wd-pricing__card:hover,
    .wd-testimonials__card:hover {
        transform: translateY(-4px);
    }
}

/* ============ P3 client edits: colored packages + darker text + 4-col services ============ */

/* Services: 2 columns on desktop (client feedback) so each card has breathing room */
.wd-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px;
}
@media (max-width: 768px) {
    .wd-services__grid { grid-template-columns: 1fr !important; }
}
.wd-services__card {
    padding: 28px 22px;
    border-top: 4px solid transparent;
}
.wd-services__card ul li,
.wd-services__card p {
    color: #0c1a2a !important;
    font-weight: 600;
    font-size: 14.5px;
    line-height: 1.7;
}
.wd-services__card:nth-child(1) { border-top-color: #2f5aae; background: linear-gradient(180deg, #eff6ff 0%, #fff 100%); }
.wd-services__card:nth-child(2) { border-top-color: #27ae60; background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%); }
.wd-services__card:nth-child(3) { border-top-color: #f59e0b; background: linear-gradient(180deg, #fffbeb 0%, #fff 100%); }
.wd-services__card:nth-child(4) { border-top-color: #ec4899; background: linear-gradient(180deg, #fdf2f8 0%, #fff 100%); }

/* Pricing: one color per package + black/bold text */
.wd-pricing__card {
    border-top: 5px solid transparent;
}
.wd-pricing__card:nth-child(1) {
    border-top-color: #2f5aae;
    background: linear-gradient(180deg, #eff6ff 0%, #fff 60%);
}
.wd-pricing__card:nth-child(2) {
    border-top-color: #f59e0b;
    background: linear-gradient(180deg, #fffbeb 0%, #fff 60%);
}
.wd-pricing__card:nth-child(2).wd-pricing__card--featured {
    background: linear-gradient(160deg, #2f5aae 0%, #1e3f7a 100%);
    border-top-color: #fde047;
}
.wd-pricing__card:nth-child(3) {
    border-top-color: #27ae60;
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 60%);
}

/* darken package text — remove "faded" look */
.wd-pricing__card h3,
.wd-pricing__card h4,
.wd-pricing__card ul li,
.wd-pricing__card .wd-pricing__amount,
.wd-pricing__card .wd-pricing__currency {
    color: #0c1a2a !important;
    font-weight: 700;
}
.wd-pricing__card ul li {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
    color: #0c1a2a !important;
}
.wd-pricing__card .wd-pricing__amount {
    font-size: 44px;
    font-weight: 900;
}

/* Featured card keeps white text (contrast on dark bg) */
.wd-pricing__card--featured h3,
.wd-pricing__card--featured h4,
.wd-pricing__card--featured ul li,
.wd-pricing__card--featured .wd-pricing__amount,
.wd-pricing__card--featured .wd-pricing__currency {
    color: #fff !important;
}

/* ============================================================
   WEBDEV v2 — inline SVG icons + 4-service themes + package polish
   Added: 2026-04-19 (Phase 2 client feedback)
   ============================================================ */

/* ---------- Services section: SVG icon styling (now colorful app-icons) ---------- */
.wd-services__icon {
    background: transparent !important; /* icon itself carries the color */
}
.wd-services__icon svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.wd-services__card:hover .wd-services__icon svg {
    transform: scale(1.08) rotate(-3deg);
}

/* 4th service theme (ecommerce) — missing in original nth-child(1-3) */
.wd-services__card--3 {
    background: linear-gradient(180deg, #faf5ff 0%, #fff 100%) !important;
}
.wd-services__card--3::before {
    background: linear-gradient(90deg, #a855f7, #c084fc) !important;
}
.wd-services__card--3:hover { border-color: #a855f7 !important; }
.wd-services__card--3 .wd-services__icon {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe) !important;
}
.wd-services__card--3 li::before { display: none; }  /* hide old ✓, use SVG below */

/* Replace old ::before ✓ with SVG checkmark for ALL services */
.wd-services__card li::before { display: none !important; }
.wd-services__card li .wd-check {
    flex-shrink: 0;
    margin-top: 2px;
}
.wd-services__card--0 .wd-check { color: #16a34a; }
.wd-services__card--1 .wd-check { color: #2f5aae; }
.wd-services__card--2 .wd-check { color: #d97706; }
.wd-services__card--3 .wd-check { color: #a855f7; }

/* Darker, bolder text across services card list */
.wd-services__card li {
    color: #0c1a2a !important;
    font-weight: 600;
    font-size: 15px;
}

/* ---------- Pricing packages: theme-colored (3 distinct) ---------- */

/* Basic = blue theme (full-card bg, not just border) */
.wd-pricing__card--blue:not(.wd-pricing__card--featured) {
    background: linear-gradient(165deg, #eff6ff 0%, #dbeafe 55%, #f0f9ff 100%) !important;
    border: 2px solid #bfdbfe !important;
}
.wd-pricing__card--blue .wd-pricing__card-icon {
    background: transparent !important;
}
.wd-pricing__card--blue .wd-pricing__card-icon svg { color: #fff; }

/* Advanced = teal/featured (already styled via --featured, just rename gradient) */
.wd-pricing__card--teal:not(.wd-pricing__card--featured) {
    background: linear-gradient(165deg, #f0fdfa 0%, #ccfbf1 55%, #f0fdf4 100%) !important;
    border: 2px solid #99f6e4 !important;
}
.wd-pricing__card--teal .wd-pricing__card-icon {
    background: transparent !important;
}
.wd-pricing__card--teal .wd-pricing__card-icon svg { color: #fff; }

/* Complete = gold theme */
.wd-pricing__card--gold:not(.wd-pricing__card--featured) {
    background: linear-gradient(165deg, #fffbeb 0%, #fef3c7 55%, #fff8e1 100%) !important;
    border: 2px solid #fde68a !important;
}
.wd-pricing__card--gold .wd-pricing__card-icon {
    background: transparent !important;
}
.wd-pricing__card--gold .wd-pricing__card-icon svg { color: #fff; }

/* Pricing icon size (colored app-icon SVG) */
.wd-pricing__card-icon {
    background: transparent !important;
    width: auto !important;
    height: auto !important;
}
.wd-pricing__card-icon svg {
    width: 90px;
    height: 90px;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.wd-pricing__card:hover .wd-pricing__card-icon svg {
    transform: scale(1.08) translateY(-4px);
}

/* BIG BOLD BLACK TEXT — fix "faded thin text" client complaint */
.wd-pricing__card:not(.wd-pricing__card--featured) .wd-pricing__name {
    color: #0c1a2a !important;
    font-size: 26px !important;
    font-weight: 900 !important;
    letter-spacing: -0.3px;
}
.wd-pricing__card:not(.wd-pricing__card--featured) .wd-pricing__amount {
    font-size: clamp(56px, 7vw, 72px) !important;
    font-weight: 900 !important;
    letter-spacing: -2px;
    line-height: 1;
}
.wd-pricing__card--blue .wd-pricing__amount {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.wd-pricing__card--gold .wd-pricing__amount {
    background: linear-gradient(135deg, #b45309, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.wd-pricing__card:not(.wd-pricing__card--featured) .wd-pricing__currency {
    color: #334155 !important;
    font-size: 16px !important;
    font-weight: 700;
    margin-top: 8px;
}

/* Features list: darker + SVG checks */
.wd-pricing__card:not(.wd-pricing__card--featured) .wd-pricing__features li {
    color: #0c1a2a !important;
    font-weight: 600 !important;
    font-size: 15px;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: right;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}
.wd-pricing__card:not(.wd-pricing__card--featured) .wd-pricing__features li:last-child { border-bottom: none; }
.wd-pricing__card .wd-pricing__features li::before { display: none !important; content: none !important; }
.wd-pricing__card .wd-check { flex-shrink: 0; margin-top: 3px; }
.wd-pricing__card--blue .wd-check { color: #2563eb; }
.wd-pricing__card--teal .wd-check { color: #0d9488; }
.wd-pricing__card--gold .wd-check { color: #d97706; }
.wd-pricing__card--featured .wd-check { color: #2ecc71 !important; }

/* Divider between price and features */
.wd-pricing__divider {
    width: 60%;
    height: 1px;
    margin: 24px auto;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}
.wd-pricing__card--featured .wd-pricing__divider {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}

.wd-pricing__features-head {
    font-size: 15px !important;
    font-weight: 700;
    color: #475569 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}
.wd-pricing__card--featured .wd-pricing__features-head {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Featured ribbon — centered horizontal pill at top (fully visible) */
.wd-pricing__ribbon {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 26px;
    border-radius: 50px;
    box-shadow: 0 8px 22px rgba(249, 115, 22, 0.45);
    z-index: 10;
    letter-spacing: 0.3px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.wd-pricing__ribbon::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    animation: wdCtaDot 1.4s ease-in-out infinite;
}

/* Featured card needs extra top padding to make room for the ribbon */
.wd-pricing__card--featured {
    padding-top: 54px !important;
}

/* Mobile: no scale on featured, tighter padding */
@media (max-width: 768px) {
    .wd-pricing__card--featured {
        transform: none !important;
    }
    .wd-pricing__card--featured:hover {
        transform: translateY(-4px) !important;
    }
    .wd-pricing__card:not(.wd-pricing__card--featured) .wd-pricing__amount {
        font-size: 54px !important;
    }
    .wd-pricing__ribbon { right: -46px; font-size: 12px; padding: 5px 48px; }
}

/* ============================================================
   WEBDEV v3 — intro animated icon + banner slider + CTA redesign + package shapes
   ============================================================ */

/* ---------- INTRO: animated icon inside the box ---------- */
.wd-intro__content {
    position: relative;
}
.wd-intro__icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 24px;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(47, 90, 174, 0.2));
}
.wd-intro__icon svg { width: 100%; height: 100%; }

/* Rotating dashed ring */
.wd-intro__ring {
    transform-origin: center;
    animation: wdRingRotate 14s linear infinite;
}
@keyframes wdRingRotate {
    to { transform: rotate(360deg); }
}

/* Pulsing inner glow */
.wd-intro__pulse {
    transform-origin: center;
    animation: wdPulse 2.4s ease-in-out infinite;
}
@keyframes wdPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50%      { transform: scale(1.15); opacity: 1; }
}

/* Animated bar chart inside the monitor (staggered bounce) */
.wd-intro__bar {
    transform-origin: bottom center;
    transform-box: fill-box;
    animation: wdBar 1.6s ease-in-out infinite;
}
.wd-intro__bar--1 { animation-delay: 0s; }
.wd-intro__bar--2 { animation-delay: 0.2s; }
.wd-intro__bar--3 { animation-delay: 0.4s; }
.wd-intro__bar--4 { animation-delay: 0.6s; }
@keyframes wdBar {
    0%, 100% { transform: scaleY(0.6); }
    50%      { transform: scaleY(1.15); }
}

/* ---------- BANNER SLIDER ---------- */
.wd-banner-swiper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    position: relative;
}
.wd-banner-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.wd-banner__next,
.wd-banner__prev {
    --swiper-navigation-color: #fff;
    --swiper-navigation-size: 22px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #2f5aae, #338eaa);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(47, 90, 174, 0.35);
}
.wd-banner__pagination { bottom: 14px !important; }
.wd-banner__pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}
.wd-banner__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #27ae60;
    width: 28px;
    border-radius: 5px;
}

/* ---------- "إبدأ رحلتك الآن" CTA redesign ---------- */
.wd-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
/* Floating decorative circles behind the CTA */
.wd-cta::before,
.wd-cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}
.wd-cta::before {
    width: 380px;
    height: 380px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.18) 0%, transparent 70%);
    animation: wdCtaOrb 10s ease-in-out infinite;
}
.wd-cta::after {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -60px;
    background: radial-gradient(circle, rgba(47, 90, 174, 0.22) 0%, transparent 70%);
    animation: wdCtaOrb 12s ease-in-out infinite reverse;
}
@keyframes wdCtaOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(30px, -20px) scale(1.1); }
}

/* Label gets a fancier pill */
.wd-cta__label {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 24px !important;
    background: linear-gradient(135deg, #27ae60, #2ecc71) !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.4px;
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.4);
    margin-bottom: 16px;
    position: relative;
}
.wd-cta__label::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: wdCtaDot 1.4s ease-in-out infinite;
}
@keyframes wdCtaDot {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50%      { opacity: 1; transform: scale(1.3); }
}

/* Phone line becomes more prominent */
.wd-cta__phone {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px);
    padding: 16px 28px !important;
    border-radius: 60px !important;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.wd-cta__phone:hover {
    border-color: rgba(39, 174, 96, 0.5);
    background: rgba(255, 255, 255, 0.12) !important;
    transform: translateY(-2px);
}
.wd-cta__phone-icon {
    width: 48px !important;
    height: 48px !important;
    background: linear-gradient(135deg, #27ae60, #2ecc71) !important;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.4);
    animation: wdPhoneShake 2s ease-in-out infinite;
}
@keyframes wdPhoneShake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-8deg); }
    20%, 40% { transform: rotate(8deg); }
}

/* Rocket floats */
.wd-cta__rocket {
    animation: wdRocketFloat 3s ease-in-out infinite;
}
.wd-cta__rocket img { filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35)); }
@keyframes wdRocketFloat {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50%      { transform: translateY(-12px) rotate(4deg); }
}

/* ---------- PACKAGES: animated decorative shapes ---------- */
.wd-pricing {
    position: relative;
    overflow: hidden;
}
.wd-pricing::before,
.wd-pricing::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.wd-pricing::before {
    width: 300px;
    height: 300px;
    top: 5%;
    right: -80px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.10) 0%, transparent 70%);
    animation: wdCtaOrb 14s ease-in-out infinite;
}
.wd-pricing::after {
    width: 260px;
    height: 260px;
    bottom: 10%;
    left: -80px;
    background: radial-gradient(circle, rgba(47, 90, 174, 0.10) 0%, transparent 70%);
    animation: wdCtaOrb 11s ease-in-out infinite reverse;
}
.wd-pricing > .container { position: relative; z-index: 2; }

/* Each package card gets a floating corner shape */
.wd-pricing__card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    animation: wdCardShape 6s ease-in-out infinite;
}
.wd-pricing__card--blue::after { background: radial-gradient(circle, #2563eb 0%, transparent 70%); }
.wd-pricing__card--teal::after { background: radial-gradient(circle, #14b8a6 0%, transparent 70%); animation-delay: -2s; }
.wd-pricing__card--gold::after { background: radial-gradient(circle, #f59e0b 0%, transparent 70%); animation-delay: -4s; }
@keyframes wdCardShape {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50%      { transform: scale(1.2) translate(15px, -10px); }
}
.wd-pricing__card > * { position: relative; z-index: 1; }
