/* Watily Frontend Redesign Styles */

:root {
    --wt-font-ltr: 'Inter', sans-serif;
    --wt-font-rtl: 'Tajawal', sans-serif;
    --wt-yellow: #ffb703;
    --wt-dark: #0b0d11;
    --wt-muted: #6b7280;
    --wt-surface: #ffffff;
    --wt-background: #f8fafc;
    --wt-border: rgba(15, 23, 42, 0.08);
    --wt-shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--wt-font-ltr);
    background: #f8f9fb;
    color: var(--wt-dark);
}

[dir="rtl"] body {
    font-family: var(--wt-font-rtl);
}

main {
    padding-top: clamp(32px, 10vw, 80px);
}

.wt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.wt-btn--primary {
    background: var(--wt-yellow);
    color: #191919;
    box-shadow: 0 18px 40px rgba(255, 183, 3, 0.35);
}

.wt-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 60px rgba(255, 183, 3, 0.4);
}

.wt-btn--ghost {
    background: transparent;
    color: var(--wt-dark);
    border: 1px solid rgba(15, 23, 42, 0.12);
}

.wt-btn--ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 23, 42, 0.25);
}

/* Hero ------------------------------------------------------------------ */
.wt-hero {
    padding: clamp(24px, 5vw, 60px) 0 clamp(40px, 8vw, 88px);
}

.wt-hero .container {
    display: grid;
    gap: clamp(48px, 7vw, 72px);
}

.wt-hero__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    display: grid;
    gap: 20px;
}

.wt-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    font-weight: 600;
    color: rgba(15, 23, 42, 0.7);
    margin: 0 auto;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.wt-hero__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 12px 28px rgba(147, 197, 253, 0.45);
}

.wt-hero__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.wt-hero__inner h1 {
    font-size: clamp(2.8rem, 6vw, 4.1rem);
    line-height: 1.05;
    margin: 0;
    color: var(--wt-dark);
}

.wt-hero__lead {
    margin: 0 auto;
    max-width: 620px;
    color: var(--wt-muted);
    font-size: clamp(1.05rem, 2.4vw, 1.22rem);
}

.wt-hero__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Sitebuilder Templates Showcase Hero -------------------------------------- */
.sb-hero {
    position: relative;
    padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 10vw, 112px);
    overflow: hidden;
}

.sb-hero::before,
.sb-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.sb-hero::before {
    width: 520px;
    height: 520px;
    left: -140px;
    top: -120px;
    background: radial-gradient(circle, rgba(180, 148, 255, 0.18) 0, transparent 60%);
}

.sb-hero::after {
    width: 520px;
    height: 520px;
    right: -180px;
    top: -80px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.16) 0, transparent 60%);
}

.sb-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.4fr) minmax(0, 0.9fr);
    gap: clamp(32px, 4vw, 52px);
    align-items: center;
}

@media (max-width: 1023px) {
    .sb-hero__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.sb-hero__left {
    display: grid;
    gap: 24px;
}

.sb-hero__left-card {
    padding: 20px 18px 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 40px rgba(148, 163, 184, 0.3);
    position: relative;
}

.sb-hero__corner-icon {
    width: 26px;
    height: 26px;
    border-radius: 12px;
    background: linear-gradient(135deg, #a855f7, #60a5fa);
    position: absolute;
    left: 16px;
    top: 14px;
}

.sb-hero__left-text {
    margin: 0;
    padding-left: 44px;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #6b7280;
}

.sb-hero__product-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 18px 40px rgba(148, 163, 184, 0.35);
}

.sb-hero__product-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #facc15;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.sb-hero__product-label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
}

.sb-hero__product-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #111827;
}

.sb-hero__trusted {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sb-hero__avatars {
    display: flex;
}

.sb-hero__avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316, #fb7185);
    border: 2px solid #ffffff;
    box-shadow: 0 10px 20px rgba(148, 163, 184, 0.5);
}

.sb-hero__avatar--offset {
    margin-left: -10px;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
}

.sb-hero__avatar--offset2 {
    margin-left: -10px;
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.sb-hero__trusted-text {
    margin: 0;
    font-size: 0.86rem;
    color: #111827;
    max-width: 220px;
}

.sb-hero__center {
    display: grid;
    justify-items: center;
    gap: 28px;
}

.sb-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 40px rgba(148, 163, 184, 0.35);
}

.sb-hero__label-icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #111827;
    box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.15);
}

.sb-hero__label-text {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #4b5563;
}

.sb-hero__orb {
    width: clamp(340px, 46vw, 460px);
    height: clamp(340px, 46vw, 460px);
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0.65) 38%, transparent 68%),
        radial-gradient(circle at 50% 100%, rgba(244, 114, 182, 0.48) 0, rgba(129, 140, 248, 0.58) 48%, transparent 72%);
    box-shadow: 
        0 32px 85px rgba(148, 163, 184, 0.6),
        inset 0 0 80px rgba(255, 255, 255, 0.4);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 36px 28px;
    position: relative;
    overflow: visible;
}

.sb-hero__titles {
    display: grid;
    gap: 8px;
}

.sb-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 0;
    color: #2f164d;
    font-weight: 700;
}

.sb-hero-subtitle {
    font-family: 'Playfair Display', serif;
    margin: 0;
    font-size: clamp(1.9rem, 3.6vw, 2.4rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
    color: #2f164d;
    font-weight: 600;
}

.sb-hero-cta {
    margin: 24px auto 0;
    padding-inline: 28px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899, #60a5fa);
    box-shadow: 0 18px 40px rgba(129, 140, 248, 0.55);
    color: #ffffff;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sb-hero-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #ffffff;
    color: #7c3aed;
    font-size: 0.8rem;
}

.sb-hero-cta::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-120%);
}

.sb-templates {
    position: relative;
    margin-top: 28px;
}

.sb-templates__glass {
    width: clamp(280px, 34vw, 380px);
    height: clamp(170px, 21vw, 220px);
    border-radius: 36px;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.78)),
        linear-gradient(135deg, rgba(129, 140, 248, 0.82), rgba(244, 114, 182, 0.92));
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(36px);
    -webkit-backdrop-filter: blur(36px);
    box-shadow: 
        0 42px 95px rgba(15, 23, 42, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    transform: rotateY(-2deg) rotateX(4deg);
}

.sb-templates__inner {
    position: absolute;
    inset: 16px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.sb-templates-strip {
    display: flex;
    height: 100%;
    width: max-content;
}

.sb-template-thumb {
    width: 10rem;
    min-width: 10rem;
    height: 100%;
    padding: 10px;
    display: grid;
    grid-template-rows: 1.2fr 1fr;
    gap: 8px;
    background: linear-gradient(135deg, #e5e7eb, #f9fafb);
    border-right: 1px solid rgba(255, 255, 255, 0.42);
}

.sb-template-thumb__header {
    border-radius: 12px;
    background: linear-gradient(135deg, #c7d2fe, #f9a8d4);
}

.sb-template-thumb__body {
    border-radius: 10px;
    background: linear-gradient(135deg, #f9fafb, #e5e7eb);
}

.sb-template-thumb--accent {
    background: linear-gradient(135deg, #e0f2fe, #ede9fe);
}

.sb-template-thumb--pink {
    background: linear-gradient(135deg, #fee2e2, #f9a8d4);
}

.sb-sparkle {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0) 70%);
    opacity: 0.8;
}

.sb-sparkle--1 {
    top: -6px;
    left: 32px;
}

.sb-sparkle--2 {
    bottom: -10px;
    right: 42px;
}

.sb-hero__right {
    display: grid;
    gap: 20px;
    justify-items: flex-start;
}

.sb-hero__avatar-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 40px rgba(148, 163, 184, 0.35);
}

.sb-hero__avatar-photo {
    width: 52px;
    height: 52px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fecaca, #fed7aa);
}

.sb-hero__avatar-meta {
    text-align: right;
}

.sb-hero__avatar-metric {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2933;
}

.sb-hero__avatar-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9ca3af;
}

.sb-hero__how {
    position: relative;
    width: 128px;
    height: 128px;
}

.sb-hero__how-ring {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    border: 1px solid rgba(209, 213, 219, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b7280;
}

.sb-hero__how-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: #111827;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.5);
}

.sb-hero__stats {
    display: grid;
    gap: 10px;
    width: 100%;
    max-width: 230px;
}

.sb-stat {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.8rem;
    color: #111827;
    border: 1px solid rgba(229, 231, 235, 0.9);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(148, 163, 184, 0.35);
}

@media (max-width: 1023px) {
    .sb-hero__right {
        justify-items: center;
        text-align: center;
    }

    .sb-hero__stats {
        max-width: none;
    }
}

/* Animations */
@keyframes sbFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -8px, 0); }
}

@keyframes sbShimmer {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

@keyframes sbSparkleFloat {
    0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.9; }
    50% { transform: translate3d(0, -6px, 0); opacity: 0.6; }
}

.sb-templates__glass {
    animation: sbFloat 4.5s ease-in-out infinite;
}

.sb-hero-cta::before {
    animation: sbShimmer 2.3s linear infinite;
}

.sb-sparkle {
    animation: sbSparkleFloat 3.6s ease-in-out infinite;
}

.wt-btn--dark {
    background: #111827;
    color: #ffffff;
    box-shadow: 0 24px 48px rgba(17, 24, 39, 0.25);
}

.wt-btn--dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 60px rgba(17, 24, 39, 0.32);
}

.wt-btn--outline {
    background: transparent;
    color: #0f172a;
    border: 2px solid rgba(15, 23, 42, 0.2);
    box-shadow: none;
}

.wt-btn--outline:hover {
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

/* ============================================
   FRIDAY-STYLE HERO SECTION (EXACT MATCH)
   ============================================ */

.friday-hero {
    padding: clamp(64px, 10vw, 140px) 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.friday-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 25% 30%, rgba(20, 184, 166, 0.08), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(99, 63, 248, 0.08), transparent 50%);
    background-size: 36px 36px, 100% 100%, 100% 100%;
    pointer-events: none;
}

.friday-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(40px, 5vw, 96px);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 1023px) {
    .friday-hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.friday-hero__left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.friday-hero__headline {
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.025em;
    display: block;
    min-height: 1.1em;
}

.friday-hero__normal-text {
    color: #0f172a;
    font-weight: inherit;
}

.friday-hero__typing-block {
    color: #ff6b35;
    font-weight: 700;
    position: relative;
    display: block;
    white-space: nowrap;
    min-height: 1.1em;
    line-height: 1.1;
}

.friday-hero__typing-block::after {
    content: '|';
    color: #ff6b35;
    animation: blink 1s infinite;
    margin-left: 2px;
}

.friday-hero__static-text-block {
    display: block;
    white-space: normal;
    line-height: 1.1;
    margin-top: 0;
}

.friday-hero__typing {
    color: #ff6b35;
    font-weight: 700;
    position: relative;
    display: inline-block;
    vertical-align: baseline;
    white-space: nowrap;
    min-width: 0;
}

.friday-hero__typing::after {
    content: '|';
    color: #ff6b35;
    animation: blink 1s infinite;
    margin-left: 2px;
}

.friday-hero__static-text {
    display: inline;
    white-space: normal;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.friday-hero__subheadline {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    line-height: 1.7;
    color: #575c66;
    margin: 0;
}

.friday-hero__subheadline strong {
    color: #0f172a;
    font-weight: 600;
}

.friday-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #101828;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.25);
}

.friday-hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 56px rgba(17, 24, 39, 0.35);
}

.friday-hero__cta-arrow {
    font-size: 1.2rem;
    display: inline-block;
}

.friday-hero__stats-row {
    display: flex;
    align-items: center;
    gap: clamp(32px, 8vw, 120px);
    margin-top: clamp(32px, 6vw, 72px);
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.friday-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 200px;
}

.friday-stat__number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0ea5e9;
    letter-spacing: -0.02em;
}

.friday-stat__label {
    font-size: 0.95rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.friday-hero__features {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: space-between;
    border-top: 1px solid #e5e7eb;
    padding-top: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.friday-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.friday-feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.friday-feature__icon--menu {
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.friday-feature__icon--menu::before {
    content: '';
    width: 20px;
    height: 2px;
    background: #6b7280;
    box-shadow: 0 6px 0 #6b7280, 0 12px 0 #6b7280;
    border-radius: 1px;
}

.friday-feature__icon--upload::before {
    content: '⇅';
    font-size: 1.2rem;
    color: #6b7280;
}

.friday-feature__icon--rocket i {
    color: #6b7280;
    font-size: 1.2rem;
}

.friday-feature__text {
    font-size: 1rem;
    color: #111827;
    font-weight: 500;
}

/* Right Side - UI Components */
.friday-hero__right {
    position: relative;
    min-height: 620px;
}

.friday-ui-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 620px;
}

.friday-ui-card {
    position: absolute;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 18px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(6px);
}

.friday-ui-card--image-editor {
    width: 280px;
    top: 0;
    left: 40px;
    z-index: 3;
}

.friday-image-preview {
    width: 100%;
    height: 220px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.friday-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.friday-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.35));
}

.friday-image-icons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.friday-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 0.85rem;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.15);
}

.friday-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.92);
    padding: 8px 14px;
    border-radius: 999px;
}

.friday-progress-bar {
    flex: 1;
    height: 6px;
    background: linear-gradient(90deg, #06b6d4, #14b8a6);
    border-radius: 999px;
}

.friday-progress-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0f172a;
}

.friday-side-icons {
    position: absolute;
    top: 32px;
    right: -72px;
    background: #ffffff;
    border-radius: 24px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 24px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.friday-side-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f3f4f6;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.friday-ui-card--device {
    width: 240px;
    top: 240px;
    left: -10px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    z-index: 2;
}

.friday-device-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.friday-device-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 0.85rem;
}

.friday-device-icon.is-active {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.35);
}

.friday-device-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.08em;
}

.friday-ui-card--url {
    width: 180px;
    top: 130px;
    left: 300px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #eef2ff;
    box-shadow: 0 20px 30px rgba(99, 102, 241, 0.25);
}

.friday-url-icon {
    color: #6366f1;
    font-size: 0.85rem;
}

.friday-url-text {
    font-size: 0.85rem;
    color: #475569;
    letter-spacing: 0.05em;
}

.friday-url-placeholder {
    font-weight: 600;
    color: #1e293b;
}

.friday-ui-card--typography {
    width: 240px;
    top: 320px;
    left: 150px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: #ffffff;
    box-shadow: 0 30px 55px rgba(6, 182, 212, 0.35);
}

.friday-typography-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.friday-typography-pill {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.friday-typography-controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.friday-align-buttons {
    display: flex;
    gap: 8px;
}

.friday-align-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    cursor: pointer;
    font-size: 0.9rem;
}

.friday-font-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.friday-select-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 90px;
}

.friday-select-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.friday-select {
    border: none;
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 0.85rem;
    color: #0f172a;
}

.friday-font-size {
    font-size: 1.25rem;
    font-weight: 700;
}

.friday-ui-card--color-picker {
    width: 300px;
    top: 20px;
    right: 0;
    color: #e2e8f0;
    background: #111827;
    border: none;
    box-shadow: 0 35px 60px rgba(15, 23, 42, 0.45);
}

.friday-color-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.friday-color-actions {
    display: flex;
    gap: 8px;
}

.friday-color-actions button {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    cursor: pointer;
}

.friday-color-gradient {
    width: 100%;
    height: 140px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0ea5e9, #6366f1, #ec4899, #f97316);
    margin-bottom: 12px;
    position: relative;
}

.friday-color-slider {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(to right, #14b8a6, #6366f1, #ec4899, #f59e0b);
    margin-bottom: 16px;
    position: relative;
}

.friday-color-thumb {
    position: absolute;
    top: 50%;
    left: 60%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #6366f1;
    transform: translate(-50%, -50%);
}

.friday-color-inputs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}

.friday-color-input {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.friday-color-input label {
    font-size: 0.75rem;
    color: rgba(226, 232, 240, 0.7);
}

.friday-input {
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(226, 232, 240, 0.3);
    background: rgba(15, 23, 42, 0.4);
    color: #f8fafc;
}

.friday-color-swatches {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.friday-swatch {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(248, 250, 252, 0.2);
    background: linear-gradient(135deg, #a855f7, #ec4899, #14b8a6);
}

.friday-opacity-slider {
    display: flex;
    align-items: center;
    gap: 10px;
}

.friday-opacity-bar {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(to right, rgba(248, 250, 252, 0.1), #f8fafc);
}

.friday-opacity-text {
    font-size: 0.85rem;
    color: #cbd5f5;
    font-weight: 600;
}

.friday-ui-card--spacing {
    width: 200px;
    top: 360px;
    right: 30px;
    background: #f8fafc;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.friday-spacing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.friday-spacing-pill {
    padding: 4px 12px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.75rem;
    font-weight: 600;
}

.friday-spacing-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.friday-spacing-box {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: #ffffff;
    border: 2px dashed #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.friday-spacing-box::before,
.friday-spacing-box::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 2px;
    background: rgba(14, 165, 233, 0.4);
}

.friday-spacing-box::before {
    transform: rotate(90deg);
}

.friday-spacing-value {
    font-weight: 700;
    color: #0f172a;
}

.friday-connectors {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.friday-connectors path {
    stroke: #2ed1c3;
    stroke-width: 2;
    fill: none;
    opacity: 0.35;
    filter: drop-shadow(0 8px 12px rgba(45, 212, 191, 0.25));
}

@media (max-width: 1023px) {
    .friday-hero__right {
        min-height: auto;
    }

    .friday-ui-container {
        min-height: auto;
    }

    .friday-ui-card {
        position: relative;
        margin-bottom: 20px;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
    }

    .friday-side-icons,
    .friday-connectors {
        display: none;
    }
}

.wt-hero__marquee {
    position: relative;
    overflow: hidden;
    padding: 6px 0;
}

.wt-hero__marquee::before,
.wt-hero__marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.wt-hero__marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--wt-background), rgba(248, 249, 251, 0));
}

.wt-hero__marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--wt-background), rgba(248, 249, 251, 0));
}

[dir="rtl"] .wt-hero__marquee::before {
    left: auto;
    right: 0;
    background: linear-gradient(270deg, var(--wt-background), rgba(248, 249, 251, 0));
}

[dir="rtl"] .wt-hero__marquee::after {
    right: auto;
    left: 0;
    background: linear-gradient(90deg, var(--wt-background), rgba(248, 249, 251, 0));
}

.wt-hero__track {
    display: flex;
    gap: clamp(20px, 3vw, 32px);
    width: max-content;
    animation: wtMarquee 28s linear infinite;
    direction: ltr;
}

[dir="rtl"] .wt-hero__track {
    direction: ltr;
}

.wt-marquee-card {
    flex: 0 0 clamp(220px, 22vw, 260px);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 26px;
    padding: clamp(18px, 3vw, 24px);
    box-shadow: 0 26px 46px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(4px);
}

.wt-marquee-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.65);
}

.wt-marquee-card__badge {
    font-weight: 600;
}

.wt-marquee-card__status {
    font-weight: 600;
    color: #0ea5e9;
}

.wt-marquee-card__status--positive {
    color: #10b981;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.wt-marquee-card__metric {
    display: grid;
    gap: 4px;
}

.wt-marquee-card__metric strong {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
}

.wt-marquee-card__metric span {
    color: var(--wt-muted);
    font-size: 0.95rem;
}

.wt-marquee-card__metric--compact strong {
    font-size: clamp(1.2rem, 2.6vw, 1.4rem);
    word-break: break-all;
}

.wt-marquee-card__bars {
    display: grid;
    grid-auto-flow: column;
    gap: 12px;
    align-items: end;
    height: 96px;
}

.wt-marquee-card__bars span {
    width: 14px;
    background: linear-gradient(180deg, #facc15, #f97316);
    border-radius: 999px;
    height: calc(40px + (80px * var(--value)));
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.wt-marquee-card__ring {
    width: 124px;
    height: 124px;
    margin: 0 auto;
    border-radius: 50%;
    background: conic-gradient(from 270deg, #22c55e 0deg 240deg, rgba(34, 197, 94, 0.15) 240deg 360deg);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #065f46;
    font-size: 1.4rem;
    position: relative;
}

.wt-marquee-card__ring::before {
    content: '';
    position: absolute;
    inset: 18px;
    background: #ffffff;
    border-radius: 50%;
}

.wt-marquee-card__ring span {
    position: relative;
}

.wt-marquee-card__time {
    display: grid;
    gap: 6px;
}

.wt-marquee-card__time strong {
    font-size: 2.2rem;
}

.wt-marquee-card__time span {
    color: rgba(15, 23, 42, 0.6);
    font-size: 0.95rem;
}

.wt-marquee-card__avatars {
    display: flex;
    align-items: center;
}

.wt-marquee-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
    background-size: cover;
    background-position: center;
}

.wt-marquee-card__avatar + .wt-marquee-card__avatar {
    margin-inline-start: -14px;
}

[dir="rtl"] .wt-marquee-card__avatar + .wt-marquee-card__avatar {
    margin-inline-start: 0;
    margin-inline-end: -14px;
}

.wt-marquee-card__avatar--one {
    background-image: linear-gradient(135deg, #facc15, #f97316);
}

.wt-marquee-card__avatar--two {
    background-image: linear-gradient(135deg, #c084fc, #a855f7);
}

.wt-marquee-card__avatar--three {
    background-image: linear-gradient(135deg, #bae6fd, #38bdf8);
}

.wt-marquee-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    font-size: 0.95rem;
}

.wt-marquee-card__list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.wt-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(22, 163, 74, 0.18);
    color: #166534;
}

.wt-tag--progress {
    background: rgba(14, 165, 233, 0.18);
    color: #0e7490;
}

.wt-tag--draft {
    background: rgba(148, 163, 184, 0.18);
    color: #475569;
}

.wt-marquee-card__progress {
    width: 100%;
    height: 12px;
    background: rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    overflow: hidden;
}

.wt-marquee-card__progress span {
    display: block;
    height: 100%;
    width: var(--progress, 50%);
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
}

.wt-marquee-card--analytics p,
.wt-marquee-card--whatsapp p,
.wt-marquee-card--unified-chat p {
    margin: 0;
    color: var(--wt-muted);
    font-size: 0.95rem;
}

.wt-marquee-card__channels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 8px 0;
}

.wt-channel-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wt-channel-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.wt-channel-icon--whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.wt-channel-icon--instagram {
    background: linear-gradient(135deg, #E4405F, #833AB4, #FCAF45);
}

.wt-channel-icon--messenger {
    background: linear-gradient(135deg, #0084FF, #0066CC);
}

.wt-marquee-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin: 12px 0;
}

.wt-marquee-card__price strong {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--wt-dark);
}

.wt-marquee-card__price span {
    font-size: 0.9rem;
    color: var(--wt-muted);
    font-weight: 500;
}

.wt-marquee-card__footer {
    font-size: 0.85rem;
    color: rgba(15, 23, 42, 0.6);
}

@keyframes wtMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Services ---------------------------------------------------------------- */
.wt-services {
    padding: clamp(48px, 8vw, 120px) 0;
}

.wt-section-heading {
    max-width: 720px;
    margin-bottom: clamp(28px, 5vw, 48px);
}

.wt-section-heading span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 183, 3, 0.16);
    color: #b45309;
    font-weight: 600;
}

.wt-section-heading h2 {
    margin: 16px 0 12px;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
}

.wt-section-heading p {
    color: var(--wt-muted);
    margin: 0;
}

.wt-section-heading--center {
    text-align: center;
    margin-inline: auto;
}

.wt-service-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-areas:
        "card1 card1 card1 card1 card2 card2 card2 card2 card3 card3 card3 card3"
        "card4 card4 card4 card4 card4 card4 card5 card5 card5 card5 card5 card5";
    gap: clamp(24px, 4vw, 32px);
}

.wt-service-grid article:nth-child(1) { grid-area: card1; }
.wt-service-grid article:nth-child(2) { grid-area: card2; }
.wt-service-grid article:nth-child(3) { grid-area: card3; }
.wt-service-grid article:nth-child(4) { grid-area: card4; }
.wt-service-grid article:nth-child(5) { grid-area: card5; }

.wt-service-card {
    position: relative;
    border-radius: 24px;
    padding: clamp(24px, 4vw, 36px);
    background: var(--wt-surface);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04), 0 10px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.12);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.wt-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.wt-service-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.wt-service-card__index {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.35);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wt-service-card__metric {
    font-size: clamp(1.8rem, 4.8vw, 2.3rem);
    font-weight: 700;
    color: var(--wt-dark);
}

.wt-service-card__content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: flex-start;
}

.wt-service-card__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(15, 23, 42, 0.08);
}

.wt-service-card__icon-wrap i {
    font-size: 1.4rem;
    color: #fff;
}

.wt-service-card h3 {
    font-size: clamp(1.25rem, 2.6vw, 1.6rem);
    margin: 0 0 10px;
    line-height: 1.25;
    font-weight: 700;
}

.wt-service-card p {
    margin: 0;
    color: var(--wt-muted);
    line-height: 1.55;
    font-size: 1rem;
}

.wt-service-card__cta {
    margin-top: auto;
    font-weight: 600;
    color: var(--wt-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.98rem;
}

.wt-service-card__cta::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
}

.tone-mint .wt-service-card__icon-wrap { background: #16a34a; }
.tone-aqua .wt-service-card__icon-wrap { background: #0ea5e9; }
.tone-violet .wt-service-card__icon-wrap { background: #8b5cf6; }
.tone-amber .wt-service-card__icon-wrap { background: #f59e0b; }
.tone-slate .wt-service-card__icon-wrap { background: #6b7280; }

/* Mosaic ------------------------------------------------------------------ */
.wt-mosaic {
    padding: clamp(32px, 6vw, 90px) 0;
}

.wt-mosaic__intro {
    max-width: 640px;
    margin-bottom: clamp(28px, 4vw, 48px);
}

.wt-mosaic__intro h2 {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    margin-bottom: 12px;
}

.wt-mosaic__intro p {
    margin: 0;
    color: var(--wt-muted);
}

.wt-mosaic__list {
    border-radius: clamp(26px, 4vw, 42px);
    padding: clamp(18px, 4vw, 38px);
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 3vw, 28px);
    align-items: center;
}

.wt-mosaic-row {
    display: flex;
    gap: clamp(20px, 4vw, 48px);
    align-items: center;
    padding: clamp(20px, 3.6vw, 32px) clamp(12px, 3vw, 24px);
    position: relative;
    justify-content: center;
    width: 100%;
    max-width: clamp(320px, 68vw, 960px);
}

.wt-mosaic-row + .wt-mosaic-row {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.wt-mosaic-row__media {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: clamp(180px, 22vw, 240px);
}

.wt-mosaic-row__content {
    display: grid;
    gap: 12px;
    text-align: start;
    justify-items: start;
}

.wt-mosaic-row__index {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(100, 116, 139, 0.9);
}

.wt-mosaic-row__content h3 {
    margin: 0;
    font-size: clamp(1.65rem, 3.4vw, 2.4rem);
    font-weight: 600;
}

.wt-mosaic-row__content p {
    margin: 0;
    color: var(--wt-muted);
    max-width: 520px;
}

.wt-bubble-stack {
    display: flex;
    align-items: center;
}

.wt-bubble {
    width: var(--diameter, 92px);
    height: var(--diameter, 92px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #0f172a;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
    position: relative;
}

.wt-bubble + .wt-bubble {
    margin-inline-start: -22px;
    transform: translateY(calc((var(--diameter, 92px) - 92px) / 12));
}

[dir="rtl"] .wt-bubble + .wt-bubble {
    margin-inline-start: 0;
    margin-inline-end: -22px;
}

.wt-bubble--sun { background: #fde047; }
.wt-bubble--sky { background: #60a5fa; color: #ffffff; }
.wt-bubble--mint { background: #34d399; }
.wt-bubble--tangerine { background: #fb923c; }

.wt-logistics-card {
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.2), rgba(56, 189, 248, 0.35));
    border-radius: 28px;
    padding: 20px;
    border: none;
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.25);
    display: grid;
    gap: 18px;
    min-width: clamp(200px, 20vw, 240px);
}

.wt-logistics-card__badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wt-logistics-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: radial-gradient(circle at 30% 30%, #e0f2fe, #38bdf8);
}

.wt-logistics-card__badge strong {
    display: block;
    font-size: 1.05rem;
}

.wt-logistics-card__badge span {
    font-size: 0.9rem;
    color: var(--wt-muted);
}

.wt-logistics-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(71, 85, 105, 0.95);
}

.wt-logistics-card__trend {
    background: rgba(34, 197, 94, 0.18);
    color: #059669;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
}

.wt-meeting-card {
    background: linear-gradient(145deg, rgba(196, 181, 253, 0.22), rgba(168, 85, 247, 0.28));
    border-radius: 28px;
    padding: 22px;
    border: none;
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.25);
    display: grid;
    gap: 18px;
    min-width: clamp(200px, 20vw, 240px);
}

.wt-meeting-card__header {
    display: grid;
    gap: 6px;
    color: rgba(15, 23, 42, 0.88);
}

.wt-meeting-card__header strong {
    font-size: 1.05rem;
}

.wt-meeting-card__caption {
    font-size: 0.85rem;
    color: var(--wt-muted);
}

.wt-meeting-card__avatars {
    display: flex;
    align-items: center;
}

.wt-meeting-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--wt-surface);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
    background-size: cover;
    background-position: center;
}

.wt-meeting-card__avatar + .wt-meeting-card__avatar {
    margin-inline-start: -14px;
}

[dir="rtl"] .wt-meeting-card__avatar + .wt-meeting-card__avatar {
    margin-inline-start: 0;
    margin-inline-end: -14px;
}

.wt-meeting-card__avatar--one {
    background-image: linear-gradient(135deg, #fde68a, #f97316);
}

.wt-meeting-card__avatar--two {
    background-image: linear-gradient(135deg, #ddd6fe, #8b5cf6);
}

.wt-meeting-card__avatar--three {
    background-image: linear-gradient(135deg, #bae6fd, #38bdf8);
}

@media (max-width: 960px) {
    .wt-mosaic-row {
        flex-direction: column;
        align-items: center;
    }

    [dir="rtl"] .wt-mosaic-row {
        align-items: center;
    }

    .wt-mosaic-row__media {
        width: 100%;
        justify-content: center;
    }

    [dir="rtl"] .wt-mosaic-row__media {
        justify-content: center;
    }

    .wt-mosaic-row__content {
        text-align: center;
        justify-items: center;
    }

    [dir="rtl"] .wt-mosaic-row__content {
        text-align: center;
    }
}

/* FAQ --------------------------------------------------------------------- */
/* Portfolio Section - Continuous Slider */
.wt-portfolio {
    padding: clamp(110px, 16vw, 190px) 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.wt-portfolio::before {
    display: none;
}

.wt-portfolio__header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto clamp(40px, 5vw, 60px);
    position: relative;
    z-index: 1;
}

.wt-portfolio__title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2.25rem, 4.3vw, 3.2rem);
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

[dir="ltr"] .wt-portfolio__title {
    font-family: 'Nunito Sans', sans-serif;
}

.wt-portfolio__description {
    font-family: 'Cairo', sans-serif;
    font-size: 1.125rem;
    color: #475569;
    margin: 0;
    line-height: 1.7;
}

[dir="ltr"] .wt-portfolio__description {
    font-family: 'Nunito Sans', sans-serif;
}

.wt-portfolio__board {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.wt-portfolio__gallery {
    overflow: hidden;
}

.wt-portfolio__rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wt-portfolio__row {
    --wt-portfolio-gap: 10px;
    display: flex;
    gap: 10px;
    will-change: transform;
    transform: translateZ(0);
}

.wt-portfolio__row--alt {
    padding-left: clamp(32px, 6vw, 120px);
    opacity: 0.9;
}

[dir="rtl"] .wt-portfolio__row--alt {
    padding-left: 0;
    padding-right: clamp(32px, 6vw, 120px);
}

.wt-portfolio__row--placeholder {
    opacity: 0.85;
}

.wt-portfolio__item {
    flex: 0 0 auto;
    width: clamp(180px, 18vw, 300px);
    background: transparent;
    border-radius: 0;
    border: none;
    padding: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.wt-portfolio__item::after {
    display: none;
}

.wt-portfolio__item-category {
    position: absolute;
    top: 14px;
    left: 18px;
    z-index: 2;
    font-family: 'Cairo', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.92);
    padding: 6px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    pointer-events: none;
}

[dir="ltr"] .wt-portfolio__item-category {
    font-family: 'Nunito Sans', sans-serif;
}

[dir="rtl"] .wt-portfolio__item-category {
    left: auto;
    right: 18px;
}

.wt-portfolio__item-image {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    display: block;
}

.wt-portfolio__item-image img,
.wt-portfolio__item-image video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.wt-portfolio__item--with-square {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wt-portfolio__item-square {
    width: 100%;
    flex-shrink: 0;
}

.wt-portfolio__item-square .wt-portfolio__item-image {
    width: 100%;
}

.wt-portfolio__item-square .wt-portfolio__item-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
}

.wt-portfolio__placeholder {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(15, 23, 42, 0.25);
    font-size: 2.5rem;
}

.wt-portfolio__rows[data-static] .wt-portfolio__row {
    transform: none;
}

@media (max-width: 1023px) {
    .wt-portfolio {
        padding: clamp(80px, 12vw, 140px) 0;
    }

    .wt-portfolio__board {
        padding: 0;
    }

    .wt-portfolio__row--alt {
        padding-left: clamp(18px, 3vw, 32px);
    }

    [dir="rtl"] .wt-portfolio__row--alt {
        padding-right: clamp(18px, 3vw, 32px);
    }

    .wt-portfolio__item {
        width: clamp(160px, 38vw, 260px);
    }
}

@media (max-width: 767px) {
    .wt-portfolio__rows {
        gap: 10px;
    }

    .wt-portfolio__row {
        --wt-portfolio-gap: 10px;
    }

    .wt-portfolio__row--alt {
        padding-left: 0;
    }

    [dir="rtl"] .wt-portfolio__row--alt {
        padding-right: 0;
    }

    .wt-portfolio__item {
        width: clamp(150px, 70vw, 220px);
    }
}

.wt-faq {
    padding: clamp(48px, 8vw, 120px) 0;
}

.wt-faq__list {
    display: grid;
    gap: 16px;
    max-width: 840px;
    margin: 0 auto;
}

.wt-faq__item {
    background: var(--wt-surface);
    border-radius: 24px;
    padding: 18px 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.wt-faq__item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
}

.wt-faq__item summary::-webkit-details-marker {
    display: none;
}

.wt-faq__item i {
    transition: transform 0.3s ease;
}

.wt-faq__item[open] i {
    transform: rotate(45deg);
}

.wt-faq__item p {
    margin: 14px 0 8px;
    color: var(--wt-muted);
    line-height: 1.7;
}

/* CTA --------------------------------------------------------------------- */
.wt-cta {
    padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 9vw, 120px);
}

.wt-cta__card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(24px, 5vw, 48px);
    align-items: center;
    background: var(--wt-surface);
    border-radius: 28px;
    padding: clamp(36px, 6vw, 56px);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.wt-cta__card h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    margin: 0 0 14px;
    font-weight: 700;
    line-height: 1.2;
}

.wt-cta__card p {
    margin: 0;
    color: var(--wt-muted);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.65;
    max-width: 640px;
}

/* Responsive adjustments -------------------------------------------------- */
@media (max-width: 960px) {
    .wt-hero__track {
        animation-duration: 32s;
    }

    .wt-marquee-card {
        flex-basis: clamp(200px, 42vw, 240px);
    }

    .wt-cta__card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 720px) {
    .wt-hero__tag {
        font-size: 0.9rem;
    }

    .wt-hero__track {
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .wt-hero__inner h1 {
        font-size: 2.3rem;
    }

    .wt-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .wt-hero__actions .wt-btn {
        width: 100%;
    }

    .wt-cta__card {
        padding: 28px;
    }
}

@media (max-width: 1100px) {
    .wt-service-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        grid-template-areas:
            "card1 card1 card2 card2 card3 card3 card3 card3"
            "card4 card4 card4 card4 card5 card5 card5 card5";
    }
}

@media (max-width: 820px) {
    .wt-service-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-template-areas:
            "card1 card1 card2 card2"
            "card3 card3 card3 card3"
            "card4 card4 card5 card5";
    }
}

@media (max-width: 600px) {
    .wt-service-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "card1"
            "card2"
            "card3"
            "card4"
            "card5";
    }

    .wt-service-card__content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wt-service-card__icon-wrap {
        width: 48px;
        height: 48px;
    }
}

/* Service Request Modal --------------------------------------------------- */
.wt-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.wt-modal[aria-hidden="false"] {
    pointer-events: auto;
}

.wt-modal.is-open {
    opacity: 1;
}

.wt-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
}

.wt-modal__content {
    position: relative;
    background: var(--wt-surface);
    border-radius: 28px;
    padding: clamp(28px, 5vw, 42px);
    max-width: min(680px, 92vw);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.wt-modal.is-open .wt-modal__content {
    transform: scale(1);
}

.wt-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(15, 23, 42, 0.08);
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    color: var(--wt-dark);
    transition: background 0.2s ease;
}

[dir="rtl"] .wt-modal__close {
    right: auto;
    left: 18px;
}

.wt-modal__close:hover {
    background: rgba(15, 23, 42, 0.14);
}

.wt-modal__content h2 {
    margin: 0 0 8px;
    font-size: clamp(1.6rem, 4vw, 2rem);
}

.wt-modal__content > p {
    margin: 0 0 24px;
    color: var(--wt-muted);
}

.wt-stepper {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.wt-stepper__item {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(148, 163, 184, 0.1);
    color: rgba(15, 23, 42, 0.7);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.wt-stepper__item span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
    font-weight: 600;
}

.wt-stepper__item small {
    font-size: 0.85rem;
    font-weight: 600;
    color: inherit;
}

.wt-stepper__item.is-active {
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
}

.wt-stepper__item.is-active span {
    background: #f97316;
    color: #ffffff;
}

.wt-stepper__item.is-current {
    box-shadow: 0 16px 30px rgba(249, 115, 22, 0.18);
}

.wt-modal-step {
    display: grid;
    gap: 22px;
}

.wt-modal-step[hidden] {
    display: none !important;
}

.wt-step-heading {
    display: grid;
    gap: 6px;
}

.wt-step-heading strong {
    font-size: 1.1rem;
    color: var(--wt-dark);
}

.wt-step-heading p {
    margin: 0;
    color: var(--wt-muted);
    font-size: 0.95rem;
}

.wt-step-actions {
    display: flex;
    justify-content: flex-end;
}

.wt-step-actions--dual {
    justify-content: space-between;
    gap: 12px;
}

.wt-step-actions .wt-btn {
    min-width: 140px;
}

@media (max-width: 640px) {
    .wt-stepper {
        flex-direction: column;
    }

    .wt-step-actions,
    .wt-step-actions--dual {
        flex-direction: column;
        align-items: stretch;
    }

    .wt-step-actions .wt-btn {
        min-width: 0;
        width: 100%;
    }
}

.wt-service-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .wt-service-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .wt-service-options {
        grid-template-columns: 1fr;
    }
}

.wt-service-option {
    cursor: pointer;
}

.wt-service-option.is-selected .wt-service-option__box {
    background: rgba(79, 70, 229, 0.06);
    border-color: #4f46ef;
}

.wt-service-option.is-selected .wt-service-option__check {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
}

.wt-service-option__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 22px;
    padding: 24px 16px;
    min-height: 150px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.wt-service-option input:checked + .wt-service-option__box {
    background: #fff;
    border-color: #f97316;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.1);
}

.wt-service-option__icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: #fff;
    display: grid;
    place-items: center;
    color: #f97316;
    font-size: 2rem;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wt-service-option__icon i {
    filter: drop-shadow(0 1px 2px rgba(249, 115, 22, 0.2));
}

.wt-service-option input:checked + .wt-service-option__box .wt-service-option__icon {
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.25), 0 0 0 3px #f97316, 0 2px 6px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.wt-service-option__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.wt-service-option__info strong {
    font-weight: 600;
    color: #111827;
    font-size: 0.98rem;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: -0.01em;
}

[dir="rtl"] .wt-service-option__info strong {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

[dir="ltr"] .wt-service-option__info strong {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.wt-service-option__info span {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 400;
}

.wt-service-option__check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: #fff;
    display: grid;
    place-items: center;
    color: transparent;
    font-size: 0.75rem;
    transition: all 0.25s ease;
}

[dir="rtl"] .wt-service-option__check {
    right: auto;
    left: 10px;
}

.wt-form-group {
    margin-bottom: 18px;
}

.wt-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--wt-dark);
}

.wt-form-group input,
.wt-form-group textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.wt-form-group input:focus,
.wt-form-group textarea:focus {
    outline: none;
    border-color: #4f46ef;
}

.wt-form-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 18px;
}

.wt-form-total strong {
    font-size: 1.4rem;
    color: var(--wt-dark);
}

.wt-modal-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 32px 0;
}

.wt-modal-success.is-visible {
    display: flex;
}

.wt-modal-success__icon {
    width: 88px;
    height: 88px;
    border-radius: 28px;
    background: rgba(22, 163, 74, 0.16);
    display: grid;
    place-items: center;
    color: #16a34a;
    font-size: 2.6rem;
    box-shadow: 0 18px 36px rgba(22, 163, 74, 0.25);
}

.wt-modal-success h3 {
    margin: 0;
    font-size: 1.6rem;
}

.wt-modal-success p {
    margin: 0;
    color: var(--wt-muted);
}

/* Special Service Badge */
.wt-service-option--special .wt-service-option__box {
    background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
    border: 2px solid #fed7aa;
}

.wt-service-badge {
    position: absolute;
    top: 8px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[dir="rtl"] .wt-service-badge {
    right: 8px;
    font-family: 'Cairo', sans-serif;
}

[dir="ltr"] .wt-service-badge {
    left: 8px;
}

.wt-service-option--special .wt-service-option__info span {
    color: #f97316;
    font-weight: 600;
}

.wt-service-platforms {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.wt-service-platform-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid !important;
    place-items: center;
    font-size: 0.9rem;
    color: #fff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
    visibility: visible;
    opacity: 1;
    flex-shrink: 0;
}

.wt-service-platform-icon i {
    color: #fff !important;
    display: block !important;
    visibility: visible;
}

.wt-service-platform-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.wt-service-platform-icon--whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.wt-service-platform-icon--instagram {
    background: linear-gradient(135deg, #E4405F, #833AB4, #FCAF45);
}

.wt-service-platform-icon--messenger {
    background: linear-gradient(135deg, #0084FF, #0066CC);
}

/* Redirect Modal */
.wt-redirect-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.wt-redirect-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.wt-redirect-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(6px);
}

.wt-redirect-modal__content {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    animation: redirectModalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes redirectModalIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.wt-redirect-modal__icon {
    margin-bottom: 20px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.wt-redirect-modal__content h3 {
    margin: 0 0 12px;
    font-size: 1.5rem;
    color: #111827;
}

.wt-redirect-modal__content p {
    margin: 0 0 28px;
    color: #6b7280;
    line-height: 1.6;
}

.wt-redirect-modal__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* Creative Services Section */
.wt-creative-services {
    padding: clamp(80px, 12vw, 140px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.wt-creative-services__accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.wt-creative-accordion-item {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.wt-creative-accordion-item:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.wt-creative-accordion-item.is-active {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.05), rgba(255, 143, 0, 0.02));
    box-shadow: 0 12px 32px rgba(255, 111, 0, 0.15), 0 0 0 1px rgba(255, 111, 0, 0.2);
    border-color: rgba(255, 111, 0, 0.25);
}

.wt-creative-accordion-item__header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

[dir="rtl"] .wt-creative-accordion-item__header {
    text-align: right;
    flex-direction: row-reverse;
}

.wt-creative-accordion-item__header:hover {
    background: rgba(255, 111, 0, 0.03);
}

.wt-creative-accordion-item.is-active .wt-creative-accordion-item__header {
    background: transparent;
}

.wt-creative-accordion-item__number {
    font-family: 'Cairo', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: #FF6F00;
    min-width: 56px;
    flex-shrink: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.15), rgba(255, 143, 0, 0.1));
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[dir="ltr"] .wt-creative-accordion-item__number {
    font-family: 'Nunito Sans', sans-serif;
}

.wt-creative-accordion-item.is-active .wt-creative-accordion-item__number {
    background: linear-gradient(135deg, #FF6F00, #FF8F00);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.3);
}

.wt-creative-accordion-item__title-group {
    flex: 1;
    pointer-events: none;
}

.wt-creative-accordion-item__title {
    font-family: 'Cairo', sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

[dir="ltr"] .wt-creative-accordion-item__title {
    font-family: 'Nunito Sans', sans-serif;
}

.wt-creative-accordion-item.is-active .wt-creative-accordion-item__title {
    color: #FF6F00;
}

.wt-creative-accordion-item__icon {
    font-size: 1.125rem;
    color: #64748b;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    pointer-events: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.05);
}

.wt-creative-accordion-item.is-active .wt-creative-accordion-item__icon {
    transform: rotate(180deg);
    color: #FF6F00;
    background: rgba(255, 111, 0, 0.1);
}

.wt-creative-accordion-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, padding 0.4s ease;
    opacity: 0;
    padding: 0 32px;
}

.wt-creative-accordion-item.is-active .wt-creative-accordion-item__content {
    max-height: 1000px;
    opacity: 1;
    padding: 0 32px 32px;
}

.wt-creative-accordion-item__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding-top: 24px;
}

@media (min-width: 768px) {
    .wt-creative-accordion-item__features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wt-creative-feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

[dir="rtl"] .wt-creative-feature-card {
    flex-direction: row-reverse;
}

.wt-creative-accordion-item.is-active .wt-creative-feature-card {
    opacity: 1;
}

.wt-creative-accordion-item.is-active .wt-creative-feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.wt-creative-accordion-item.is-active .wt-creative-feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.wt-creative-accordion-item.is-active .wt-creative-feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.wt-creative-accordion-item.is-active .wt-creative-feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.wt-creative-feature-card:hover {
    background: linear-gradient(135deg, #ffffff, rgba(255, 111, 0, 0.03));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.15);
    border-color: rgba(255, 111, 0, 0.2);
}

.wt-creative-feature-card i {
    font-size: 1.5rem;
    color: #FF6F00;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.15), rgba(255, 143, 0, 0.1));
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wt-creative-feature-card:hover i {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.25), rgba(255, 143, 0, 0.15));
    transform: scale(1.1) rotate(5deg);
}

.wt-creative-feature-card span {
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    color: #1e293b;
    line-height: 1.5;
    font-weight: 600;
    transition: color 0.3s ease;
}

[dir="ltr"] .wt-creative-feature-card span {
    font-family: 'Nunito Sans', sans-serif;
}

.wt-creative-feature-card:hover span {
    color: #0f172a;
}

@media (max-width: 767px) {
    .wt-creative-services {
        padding: clamp(60px, 8vw, 100px) 0;
    }

    .wt-creative-accordion-item__header {
        padding: 24px 20px;
        gap: 16px;
    }

    .wt-creative-accordion-item__number {
        font-size: 1.5rem;
        min-width: 48px;
        width: 48px;
        height: 48px;
    }

    .wt-creative-accordion-item__title {
        font-size: 1.125rem;
    }

    .wt-creative-accordion-item__content {
        padding: 0 20px;
    }

    .wt-creative-accordion-item.is-active .wt-creative-accordion-item__content {
        padding: 0 20px 24px;
    }

    .wt-creative-accordion-item__features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .wt-creative-feature-card {
        padding: 16px 18px;
    }
}

.wt-creative-services__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto clamp(48px, 6vw, 72px);
}

.wt-creative-services__header h2 {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin: 0 0 16px;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.2;
}

[dir="ltr"] .wt-creative-services__header h2 {
    font-family: 'Nunito Sans', sans-serif;
}

.wt-creative-services__header p {
    font-family: 'Cairo', sans-serif;
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

[dir="ltr"] .wt-creative-services__header p {
    font-family: 'Nunito Sans', sans-serif;
}


/* Smart Systems - Orbital Design with Rotating Icons */
.wt-smart-systems {
    padding: clamp(80px, 12vw, 140px) 0 clamp(140px, 16vw, 240px);
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.wt-smart-systems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.1), transparent);
}

.wt-smart-systems__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.wt-smart-systems__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

[dir="rtl"] .wt-smart-systems__layout {
    direction: rtl;
}

.wt-smart-systems__title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

[dir="ltr"] .wt-smart-systems__title {
    font-family: 'Nunito Sans', sans-serif;
}

.wt-smart-systems__description {
    font-family: 'Cairo', sans-serif;
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

[dir="ltr"] .wt-smart-systems__description {
    font-family: 'Nunito Sans', sans-serif;
}

.wt-smart-systems__hub {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.wt-smart-systems__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

.wt-center-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.wt-center-text__line {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #FF6F00;
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(255, 111, 0, 0.2);
}

[dir="ltr"] .wt-center-text__line {
    font-family: 'Nunito Sans', sans-serif;
}

.wt-smart-systems__orbit {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.wt-sub-icon-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: orbitRotate 30s linear infinite;
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wt-smart-systems__orbit.has-active-icon .wt-sub-icon-item {
    animation-play-state: paused !important;
}

.wt-sub-icon-item.is-active {
    animation-play-state: paused !important;
    z-index: 15;
    transform: translate(-50%, -50%) translateY(140px) !important;
}

.wt-sub-icon-item[data-index="0"] {
    animation-delay: 0s;
    --orbit-radius: 240px;
    --orbit-angle: 0deg;
}

.wt-sub-icon-item[data-index="1"] {
    animation-delay: -6s;
    --orbit-radius: 240px;
    --orbit-angle: 72deg;
}

.wt-sub-icon-item[data-index="2"] {
    animation-delay: -12s;
    --orbit-radius: 240px;
    --orbit-angle: 144deg;
}

.wt-sub-icon-item[data-index="3"] {
    animation-delay: -18s;
    --orbit-radius: 240px;
    --orbit-angle: 216deg;
}

.wt-sub-icon-item[data-index="4"] {
    animation-delay: -24s;
    --orbit-radius: 240px;
    --orbit-angle: 288deg;
}

@keyframes orbitRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg);
    }
}

.wt-connection-line {
    display: none;
}

.wt-sub-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.wt-sub-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: #ffffff;
    transform: translateZ(10px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15),
                0 0 0 1px rgba(15, 23, 42, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.wt-sub-icon-label {
    font-family: 'Cairo', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
    margin-top: 4px;
}

[dir="ltr"] .wt-sub-icon-label {
    font-family: 'Nunito Sans', sans-serif;
}

.wt-sub-icon-item--crm .wt-sub-icon-bg {
    background: rgba(34, 211, 153, 0.1);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2),
                0 0 0 1px rgba(16, 185, 129, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.wt-sub-icon-item--coupons .wt-sub-icon-bg {
    background: rgba(251, 191, 36, 0.1);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2),
                0 0 0 1px rgba(245, 158, 11, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.wt-sub-icon-item--chat .wt-sub-icon-bg {
    background: rgba(99, 102, 241, 0.1);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2),
                0 0 0 1px rgba(99, 102, 241, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.wt-sub-icon-item--invoice .wt-sub-icon-bg {
    background: rgba(236, 72, 153, 0.1);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.2),
                0 0 0 1px rgba(236, 72, 153, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.wt-sub-icon-item--meetings .wt-sub-icon-bg {
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2),
                0 0 0 1px rgba(59, 130, 246, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.wt-sub-icon-wrapper i {
    font-size: 3rem;
    color: #FF6F00;
    position: relative;
    z-index: 2;
    transform: translateZ(15px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wt-sub-icon-item--crm .wt-sub-icon-wrapper i {
    color: #10b981;
}

.wt-sub-icon-item--coupons .wt-sub-icon-wrapper i {
    color: #f59e0b;
}

.wt-sub-icon-item--chat .wt-sub-icon-wrapper i {
    color: #6366f1;
}

.wt-sub-icon-item--invoice .wt-sub-icon-wrapper i {
    color: #ec4899;
}

.wt-sub-icon-item--meetings .wt-sub-icon-wrapper i {
    color: #3b82f6;
}

.wt-sub-icon-item:active .wt-sub-icon-wrapper {
    transform: scale(0.95);
}

.wt-sub-icon-details {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    max-width: calc(100vw - 40px);
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15),
                0 0 0 1px rgba(15, 23, 42, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 20;
    transform: translateX(-50%) translateY(-10px);
}

.wt-sub-icon-item.is-active .wt-sub-icon-details {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.wt-sub-icon-details h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
    line-height: 1.3;
}

[dir="ltr"] .wt-sub-icon-details h3 {
    font-family: 'Nunito Sans', sans-serif;
}

.wt-sub-icon-details p {
    font-family: 'Cairo', sans-serif;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 14px;
}

[dir="ltr"] .wt-sub-icon-details p {
    font-family: 'Nunito Sans', sans-serif;
}

.wt-details-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 16px 0;
    padding: 12px;
    background: rgba(15, 23, 42, 0.03);
    border-radius: 12px;
}

.wt-platform-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.wt-platform-icon i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wt-platform-icon:hover i {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.wt-platform-icon--whatsapp i {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.wt-platform-icon--instagram i {
    background: linear-gradient(135deg, #E4405F, #833AB4, #FCAF45);
}

.wt-platform-icon--messenger i {
    background: linear-gradient(135deg, #0084FF, #0066CC);
}

.wt-platform-icon span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
}

.wt-details-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wt-details-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.8125rem;
    color: #1e293b;
    font-weight: 500;
}

[dir="ltr"] .wt-details-features span {
    font-family: 'Nunito Sans', sans-serif;
}

[dir="rtl"] .wt-details-features span {
    flex-direction: row-reverse;
}

.wt-details-features i {
    color: #FF6F00;
    font-size: 0.875rem;
}

@keyframes float3D {
    0%, 100% {
        transform: translateZ(20px) translateY(0px);
    }
    50% {
        transform: translateZ(20px) translateY(-12px);
    }
}

@media (max-width: 1023px) {
    .wt-smart-systems__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wt-smart-systems__header {
        text-align: center;
    }

    .wt-smart-systems__hub {
        min-height: 500px;
    }

    .wt-smart-systems__orbit {
        min-height: 500px;
    }

    .wt-sub-icon-item {
        --orbit-radius: 180px;
    }

    .wt-sub-icon-item.is-active {
        transform: translate(-50%, -50%) translateY(110px) !important;
    }

    .wt-center-text__line {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .wt-sub-icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .wt-sub-icon-wrapper i {
        font-size: 2.5rem;
    }

    .wt-sub-icon-label {
        font-size: 0.8125rem;
    }

    .wt-sub-icon-details {
        width: 280px;
        padding: 18px;
    }
}

@media (max-width: 767px) {
    .wt-smart-systems {
        padding: clamp(60px, 8vw, 100px) 0 clamp(110px, 20vw, 200px);
    }

    .wt-smart-systems__layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .wt-smart-systems__header {
        text-align: center;
    }

    .wt-smart-systems__title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .wt-smart-systems__description {
        font-size: 1rem;
    }

    .wt-smart-systems__hub {
        min-height: 420px;
        padding-bottom: 0;
    }

    .wt-smart-systems__hub.has-active-icon {
        min-height: 380px;
        padding-bottom: 0;
    }

    .wt-smart-systems__orbit {
        min-height: 280px;
        width: 280px;
        height: 280px;
        max-width: 280px;
        max-height: 280px;
        margin: 0 auto;
    }

    .wt-smart-systems__orbit.has-active-icon {
        min-height: 280px;
        width: 280px;
        height: 280px;
        max-width: 280px;
        max-height: 280px;
    }

    .wt-smart-systems__orbit.has-active-icon .wt-sub-icon-item:not(.is-active) {
        opacity: 0.3;
        pointer-events: none;
    }

    .wt-sub-icon-item {
        --orbit-radius: 80px;
        animation-duration: 25s;
    }

    .wt-sub-icon-item.is-active {
        transform: translate(-50%, -50%) translateY(45px) !important;
        z-index: 25;
    }

    .wt-center-text__line {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .wt-smart-systems__center {
        width: 120px;
        height: 120px;
    }

    .wt-sub-icon-wrapper {
        width: 78px;
        height: 78px;
    }

    .wt-sub-icon-wrapper i {
        font-size: 2.35rem;
    }

    .wt-sub-icon-label {
        font-size: 0.8rem;
        margin-top: 6px;
    }

    .wt-sub-icon-item {
        gap: 6px;
    }

    .wt-sub-icon-details {
        width: calc(100vw - 24px);
        max-width: 320px;
        padding: 20px;
        top: auto;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        position: fixed;
        max-height: calc(100vh - 180px);
        overflow-y: auto;
        z-index: 100;
        box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
        border-radius: 20px;
    }

    .wt-sub-icon-item.is-active .wt-sub-icon-details {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    /* Add overlay background on mobile when details are shown */
    .wt-smart-systems.has-active-icon::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 23, 42, 0.18);
        z-index: 5;
        pointer-events: none;
    }

    .wt-sub-icon-details h3 {
        font-size: 1rem;
    }

    .wt-sub-icon-details p {
        font-size: 0.8125rem;
    }

    .wt-details-platforms {
        gap: 8px;
        padding: 10px;
    }

    .wt-platform-icon i {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .wt-platform-icon span {
        font-size: 0.7rem;
    }

    .wt-details-features span {
        font-size: 0.75rem;
    }
}

.wt-accordion-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.wt-accordion-item.is-active {
    background: #FFF3E0;
    box-shadow: 0 8px 24px rgba(255, 111, 0, 0.15);
    border-color: rgba(255, 111, 0, 0.2);
}

.wt-accordion-item__header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

[dir="rtl"] .wt-accordion-item__header {
    text-align: right;
    flex-direction: row-reverse;
}

.wt-accordion-item__header:hover {
    background: rgba(255, 111, 0, 0.03);
}

.wt-accordion-item.is-active .wt-accordion-item__header {
    background: transparent;
}

.wt-accordion-item__number {
    font-family: var(--wt-font-en);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6F00;
    min-width: 50px;
    flex-shrink: 0;
    pointer-events: none;
}

.wt-accordion-item__title-group {
    flex: 1;
    pointer-events: none;
}

.wt-accordion-item__title {
    font-family: 'Cairo', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    line-height: 1.4;
}

[dir="ltr"] .wt-accordion-item__title {
    font-family: 'Poppins', sans-serif;
}

.wt-accordion-item__icon {
    font-size: 1rem;
    color: #212529;
    transition: transform 0.4s ease;
    flex-shrink: 0;
    pointer-events: none;
}

.wt-accordion-item.is-active .wt-accordion-item__icon {
    transform: rotate(180deg);
}

.wt-accordion-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    opacity: 0;
    padding: 0 28px;
}

.wt-accordion-item.is-active .wt-accordion-item__content {
    max-height: 1000px;
    opacity: 1;
    padding: 0 28px 28px;
}

.wt-accordion-item__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding-top: 20px;
}

@media (min-width: 768px) {
    .wt-accordion-item__features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wt-feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

[dir="rtl"] .wt-feature-card {
    flex-direction: row-reverse;
}

.wt-accordion-item.is-active .wt-feature-card {
    opacity: 1;
}

.wt-accordion-item.is-active .wt-feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.wt-accordion-item.is-active .wt-feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.wt-accordion-item.is-active .wt-feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.wt-accordion-item.is-active .wt-feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.wt-accordion-item.is-active .wt-feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.wt-feature-card:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.wt-feature-card i {
    font-size: 1.5rem;
    color: #FF6F00;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}

.wt-feature-card span {
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    color: #212529;
    line-height: 1.5;
    font-weight: 500;
}

[dir="ltr"] .wt-feature-card span {
    font-family: 'Poppins', sans-serif;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .wt-accordion-item__header {
        padding: 20px;
        gap: 16px;
    }

    .wt-accordion-item__number {
        font-size: 1.25rem;
        min-width: 40px;
    }

    .wt-accordion-item__title {
        font-size: 1.1rem;
    }

    .wt-accordion-item__content {
        padding: 0 20px;
    }

    .wt-accordion-item.is-active .wt-accordion-item__content {
        padding: 0 20px 20px;
    }

    .wt-accordion-item__features {
        grid-template-columns: 1fr;
    }
}
