/* === sections.css — Hero, Clients, Marquee, Services, AI Features, Projects, Stats, Process, Pricing, Testimonials, CTA, Team, Contact, Footer === */

      /* ============================================================
       HERO SECTION
       ============================================================ */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        padding-top: var(--nav-height);
      }
      .hero-inner {
        display: flex;
        align-items: center;
        min-height: calc(100vh - var(--nav-height));
        position: relative;
        width: 100%;
      }
      .hero-content {
        flex: 1;
        max-width: 640px;
        position: relative;
        z-index: 2;
      }
      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 18px;
        background: rgba(217, 125, 22, 0.08);
        border: 1px solid rgba(217, 125, 22, 0.2);
        border-radius: 100px;
        font-size: 0.82rem;
        font-weight: 500;
        color: var(--primary);
        margin-bottom: 28px;
        animation: badgeSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
      }
      .pulse-dot {
        width: 8px;
        height: 8px;
        background: #22c55e;
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
      }
      .hero h1 {
        font-family: var(--font-heading);
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 700;
        line-height: 1.1;
        letter-spacing: -0.03em;
        margin-bottom: 24px;
        animation: textReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
      }
      .hero-description {
        font-size: 1.1rem;
        color: var(--text-secondary);
        line-height: 1.8;
        margin-bottom: 36px;
        max-width: 540px;
        animation: textReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
      }
      .hero-buttons {
        display: flex;
        gap: 16px;
        margin-bottom: 48px;
        flex-wrap: wrap;
        animation: blurFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
      }
      .hero-stats {
        display: flex;
        gap: 32px;
        flex-wrap: wrap;
        animation: blurFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.4s both;
      }
      .hero-stat {
        text-align: left;
        transition: transform 0.3s;
      }
      .hero-stat:hover {
        transform: translateY(-2px);
      }
      .stat-value {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--primary);
      }
      .stat-label {
        font-size: 0.82rem;
        color: var(--text-muted);
        margin-top: 2px;
      }
      .hero-canvas {
        flex: 1;
        min-height: 500px;
        position: relative;
        z-index: 1;
      }
      .hero-canvas canvas {
        width: 100% !important;
        height: 100% !important;
      }

      /* ============================================================
       CLIENTS SECTION
       ============================================================ */
      .clients-section {
        padding: 60px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        background: var(--bg-secondary);
      }
      .clients-title {
        text-align: center;
        font-size: 0.82rem;
        font-weight: 500;
        color: var(--text-muted);
        letter-spacing: 0.04em;
        margin-bottom: 28px;
      }
      .clients-section .client-name {
        transition: color 0.3s, transform 0.3s;
      }
      .clients-section .client-name:hover {
        color: var(--primary);
        transform: scale(1.05);
      }
      .clients-track {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
      }
      .client-name {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-muted);
        letter-spacing: 0.02em;
        transition: color var(--transition);
        white-space: nowrap;
      }
      .client-name:hover {
        color: var(--text-secondary);
      }

      /* ============================================================
       TECH MARQUEE
       ============================================================ */
      .marquee-section {
        padding: 24px 0;
        overflow: hidden;
        background: var(--bg-primary);
      }
      .marquee-track {
        display: flex;
        overflow: hidden;
        width: 100%;
      }
      .marquee-content {
        display: flex;
        gap: 24px;
        animation: marquee 35s linear infinite;
        flex-shrink: 0;
        padding-right: 24px;
      }
      .marquee-item {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 18px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 100px;
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--text-secondary);
        white-space: nowrap;
        flex-shrink: 0;
      }

      /* ============================================================
       SERVICES GRID
       ============================================================ */
      .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }
      .service-card {
        background: var(--bg-tertiary);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: var(--radius);
        padding: 32px 24px;
        transition: all var(--transition);
        position: relative;
        overflow: hidden;
      }
      .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(
          90deg,
          var(--primary),
          var(--primary-bright)
        );
        opacity: 0;
        transition: opacity var(--transition);
      }
      .service-card:hover {
        transform: translateY(-6px);
        border-color: rgba(217, 125, 22, 0.25);
        box-shadow: 0 16px 48px rgba(217, 125, 22, 0.1), 0 0 0 1px rgba(217,125,22,0.08);
      }
      .service-card:hover::before {
        opacity: 1;
      }
      .service-card.revealed .service-icon {
        animation: iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
      }
      .service-icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-sm);
        background: linear-gradient(
          135deg,
          rgba(217, 125, 22, 0.15),
          rgba(255, 151, 0, 0.08)
        );
        margin-bottom: 20px;
        transition: transform 0.4s, box-shadow 0.4s;
      }
      .service-card:hover .service-icon {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(217,125,22,0.2);
      }
      .service-icon svg {
        width: 24px;
        height: 24px;
        color: var(--primary);
        transition: transform 0.3s;
      }
      .service-card:hover .service-icon svg {
        transform: rotate(5deg) scale(1.1);
      }
      .service-card h3 {
        font-family: var(--font-heading);
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 10px;
      }
      .service-card p {
        font-size: 0.9rem;
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 16px;
      }
      .tech-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 16px;
      }
      .tech-tag {
        padding: 4px 10px;
        background: rgba(217, 125, 22, 0.08);
        border: 1px solid rgba(217, 125, 22, 0.15);
        border-radius: 100px;
        font-size: 0.72rem;
        font-weight: 500;
        color: var(--primary);
        transition: all 0.3s;
      }
      .tech-tag:hover {
        background: rgba(217, 125, 22, 0.15);
        border-color: rgba(217, 125, 22, 0.3);
        transform: translateY(-1px);
      }
      .feature-list {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
      .feature-list-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.82rem;
        color: var(--text-secondary);
      }
      .feature-list-item svg {
        width: 14px;
        height: 14px;
        color: #22c55e;
        flex-shrink: 0;
      }

      /* ============================================================
       AI FEATURES GRID
       ============================================================ */
      .ai-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
      .ai-feature-card {
        background: rgba(22, 22, 26, 0.6);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-lg);
        padding: 40px;
        position: relative;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .ai-feature-card::after {
        content: '';
        position: absolute;
        inset: -1px;
        border-radius: var(--radius-lg);
        background: linear-gradient(135deg, rgba(217,125,22,0.3), transparent, rgba(255,151,0,0.2));
        opacity: 0;
        transition: opacity 0.5s;
        z-index: -1;
        filter: blur(1px);
      }
      .ai-feature-card:hover {
        transform: translateY(-6px);
        border-color: rgba(217, 125, 22, 0.3);
        box-shadow: 0 20px 50px rgba(217, 125, 22, 0.1);
      }
      .ai-feature-card:hover::after {
        opacity: 1;
      }
      .ai-feature-card.revealed .ai-feature-icon {
        animation: iconBounce 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
      }
      .ai-feature-icon {
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius);
        background: linear-gradient(
          135deg,
          rgba(217, 125, 22, 0.15),
          rgba(255, 151, 0, 0.08)
        );
        margin-bottom: 20px;
        transition: transform 0.4s, box-shadow 0.4s;
      }
      .ai-feature-card:hover .ai-feature-icon {
        transform: scale(1.1) rotate(3deg);
        box-shadow: 0 0 24px rgba(217,125,22,0.2);
      }
      .ai-feature-icon svg {
        width: 28px;
        height: 28px;
        color: var(--primary);
      }
      .ai-feature-card h3 {
        font-family: var(--font-heading);
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 12px;
      }
      .ai-feature-card p {
        font-size: 0.95rem;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 20px;
      }
      .ai-metric-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: rgba(217, 125, 22, 0.1);
        border: 1px solid rgba(217, 125, 22, 0.2);
        border-radius: 100px;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--primary);
        transition: all 0.3s;
      }
      .ai-feature-card:hover .ai-metric-badge {
        background: rgba(217, 125, 22, 0.18);
        border-color: rgba(217, 125, 22, 0.35);
        box-shadow: 0 0 16px rgba(217,125,22,0.15);
      }

      /* ============================================================
       PROJECTS GRID
       ============================================================ */
      .projects-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        min-height: 200px;
      }
      .projects-grid.is-loading {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
      }

      /* --- Loading Skeleton --- */
      .skeleton-card {
        background: var(--bg-tertiary);
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: var(--radius-lg);
        overflow: hidden;
        animation: skeletonPulse 1.5s ease-in-out infinite;
      }
      .skeleton-card .skeleton-img {
        height: 200px;
        background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
        background-size: 200% 100%;
        animation: skeletonShimmer 1.8s ease-in-out infinite;
      }
      .skeleton-card .skeleton-body {
        padding: 24px;
      }
      .skeleton-card .skeleton-line {
        height: 14px;
        border-radius: 6px;
        background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
        background-size: 200% 100%;
        animation: skeletonShimmer 1.8s ease-in-out infinite;
        margin-bottom: 12px;
      }
      .skeleton-card .skeleton-line:nth-child(1) { width: 70%; height: 18px; }
      .skeleton-card .skeleton-line:nth-child(2) { width: 100%; }
      .skeleton-card .skeleton-line:nth-child(3) { width: 85%; }
      .skeleton-card .skeleton-line:last-child { width: 50%; margin-bottom: 0; }

      @keyframes skeletonPulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.7; }
      }
      @keyframes skeletonShimmer {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
      }

      /* --- Card Entrance Animation --- */
      @keyframes cardFadeUp {
        from { opacity: 0; transform: translateY(40px) scale(0.97); }
        to { opacity: 1; transform: translateY(0) scale(1); }
      }
      .project-card {
        background: var(--bg-tertiary);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: var(--radius-lg);
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: cardFadeUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
        position: relative;
      }
      .project-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: var(--radius-lg);
        padding: 1px;
        background: linear-gradient(135deg, transparent, rgba(217,125,22,0.3), transparent);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.4s;
        pointer-events: none;
      }
      .project-card:hover::before { opacity: 1; }
      .project-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 60px rgba(217, 125, 22, 0.12), 0 0 0 1px rgba(217,125,22,0.1);
      }

      /* --- Tech Card Cover Image --- */
      .project-card--tech .project-card__cover {
        width: 100%;
        height: 140px;
        overflow: hidden;
        border-radius: 16px 16px 0 0;
      }
      .project-card--tech .project-card__cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
      }
      .project-card--tech:hover .project-card__cover img {
        transform: scale(1.05);
      }

      /* --- Tech Card (Web/Mobile/Consultations) --- */
      .project-card--tech .project-card__icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(217,125,22,0.15), rgba(217,125,22,0.05));
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        color: var(--primary-bright);
      }
      .project-card--tech .project-card__body {
        padding: 28px;
      }
      .project-card--tech .project-card__body h3 {
        font-family: var(--font-heading);
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 1.3;
      }
      .project-card--tech .project-card__body p {
        font-size: 0.88rem;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 20px;
      }
      .project-card__tech-stack {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 20px;
      }
      .project-card__tech-tag {
        padding: 4px 10px;
        border-radius: 6px;
        font-size: 0.72rem;
        font-weight: 600;
        color: var(--primary-bright);
        background: rgba(217,125,22,0.1);
        border: 1px solid rgba(217,125,22,0.15);
        letter-spacing: 0.02em;
      }
      .project-card__links {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 4px;
      }
      .project-card__link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        border-radius: 100px;
        font-size: 0.82rem;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(135deg, var(--primary), var(--primary-bright));
        transition: all var(--transition);
        text-decoration: none;
      }
      .project-card__link:hover {
        transform: translateX(4px);
        box-shadow: 0 4px 20px rgba(217,125,22,0.3);
      }
      .project-card__link svg {
        transition: transform 0.3s;
      }
      .project-card__link:hover svg {
        transform: translateX(3px);
      }
      [dir="rtl"] .project-card__link:hover {
        transform: translateX(-4px);
      }
      [dir="rtl"] .project-card__link:hover svg {
        transform: translateX(-3px) scaleX(-1);
      }
      [dir="rtl"] .project-card__link svg {
        transform: scaleX(-1);
      }
      .project-card__link--store {
        padding: 8px 16px;
        font-size: 0.78rem;
      }
      .project-card__link--store svg {
        flex-shrink: 0;
      }
      .project-card__link--store:hover svg {
        transform: none;
      }
      [dir="rtl"] .project-card__link--store svg {
        transform: none;
      }

      /* --- Creative Card (Design/Video/Reels/AI) --- */
      .project-card--creative .project-card__image {
        position: relative;
        height: 220px;
        overflow: hidden;
      }
      .project-card--creative .project-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .project-card--creative:hover .project-card__image img {
        transform: scale(1.08);
      }
      .project-card--creative .project-card__image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 40%, rgba(10,10,11,0.85) 100%);
        pointer-events: none;
      }
      .project-card--creative .project-card__overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(10,10,11,0.6);
        backdrop-filter: blur(4px);
        opacity: 0;
        transition: opacity 0.4s;
        z-index: 2;
      }
      .project-card--creative:hover .project-card__overlay {
        opacity: 1;
      }
      .project-card__overlay-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 100px;
        font-size: 0.85rem;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(135deg, var(--primary), var(--primary-bright));
        text-decoration: none;
        transform: translateY(10px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .project-card--creative:hover .project-card__overlay-link {
        transform: translateY(0);
      }
      .project-card--creative .project-card__body {
        padding: 20px 24px 24px;
      }
      .project-card--creative .project-card__body h3 {
        font-family: var(--font-heading);
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 8px;
        line-height: 1.3;
      }
      .project-card--creative .project-card__body p {
        font-size: 0.85rem;
        color: var(--text-secondary);
        line-height: 1.6;
      }

      /* Project Category Filters */
      .project-filters {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 48px;
      }
      .filter-btn {
        padding: 10px 22px;
        border-radius: 100px;
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--text-muted);
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        cursor: pointer;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        font-family: var(--font);
        position: relative;
        overflow: hidden;
      }
      .filter-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--primary), var(--primary-bright));
        opacity: 0;
        transition: opacity 0.35s;
        z-index: -1;
      }
      .filter-btn:hover {
        color: var(--text-primary);
        border-color: rgba(217,125,22,0.3);
        background: rgba(217,125,22,0.08);
      }
      .filter-btn.active {
        color: #fff;
        border-color: transparent;
      }
      .filter-btn.active::before {
        opacity: 1;
      }

      /* --- Grid transition for filter change --- */
      .projects-grid.fade-out {
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 0.25s, transform 0.25s;
      }
      .projects-grid.fade-in {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.4s 0.05s, transform 0.4s 0.05s;
      }

      /* --- Empty state --- */
      .projects-empty {
        grid-column: 1 / -1;
        text-align: center;
        padding: 60px 20px;
        color: var(--text-muted);
        font-size: 0.95rem;
      }

      /* ============================================================
       STATS SECTION
       ============================================================ */
      .stats-section {
        padding: 80px 0;
        background: var(--bg-secondary);
      }
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 32px;
        text-align: center;
      }
      .stat-card {
        padding: 24px 8px;
        transition: transform 0.4s;
      }
      .stat-card:hover {
        transform: scale(1.05);
      }
      .stat-card.revealed .stat-number {
        animation: numberPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
      }
      .stat-card .stat-number {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 8px;
        transition: text-shadow 0.3s;
      }
      .stat-card:hover .stat-number {
        text-shadow: 0 0 20px rgba(217,125,22,0.4);
      }
      .stat-card .stat-text {
        font-size: 0.85rem;
        color: var(--text-muted);
      }
      .border-line {
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.06),
          transparent
        );
      }

      /* ============================================================
       PROCESS TIMELINE
       ============================================================ */
      .process-timeline {
        position: relative;
        max-width: 700px;
        margin: 0 auto;
        padding-left: 60px;
      }
      .process-timeline::before {
        content: "";
        position: absolute;
        left: 23px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(
          to bottom,
          var(--primary),
          rgba(217, 125, 22, 0.1)
        );
      }
      .process-timeline::after {
        content: "";
        position: absolute;
        left: 23px;
        top: 0;
        width: 2px;
        height: 0;
        background: linear-gradient(to bottom, var(--primary-bright), var(--primary));
        transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1;
        pointer-events: none;
      }
      .process-timeline.timeline-animated::after {
        height: 100%;
      }
      .process-step {
        position: relative;
        padding-bottom: 48px;
        z-index: 2;
      }
      .process-step:last-child {
        padding-bottom: 0;
      }
      .step-number {
        position: absolute;
        left: -60px;
        top: 0;
        width: 48px;
        height: 48px;
        background: linear-gradient(
          135deg,
          var(--primary),
          var(--primary-bright)
        );
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: 800;
        color: #fff;
        z-index: 3;
        box-shadow: 0 0 0 4px var(--background, #0a0a0b);
        transition: transform 0.4s, box-shadow 0.4s;
      }
      .process-step.revealed .step-number {
        animation: numberPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
      }
      .process-step:hover .step-number {
        transform: scale(1.15);
        box-shadow: 0 0 0 4px var(--background, #0a0a0b), 0 0 24px rgba(217,125,22,0.35);
      }
      .process-step h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 8px;
        padding-top: 10px;
        transition: color 0.3s;
      }
      .process-step:hover h3 {
        color: var(--primary-bright);
      }
      .process-step p {
        font-size: 0.92rem;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 12px;
      }
      .duration-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 12px;
        background: rgba(217, 125, 22, 0.08);
        border: 1px solid rgba(217, 125, 22, 0.15);
        border-radius: 100px;
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--primary);
        transition: all 0.3s;
      }
      .process-step:hover .duration-badge {
        background: rgba(217, 125, 22, 0.15);
        border-color: rgba(217, 125, 22, 0.3);
      }
      .duration-badge svg {
        width: 14px;
        height: 14px;
      }

      /* ============================================================
       PRICING GRID
       ============================================================ */
      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        align-items: start;
      }
      .pricing-card {
        background: var(--bg-tertiary);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: var(--radius-lg);
        padding: 40px 32px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
      }
      .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(217,125,22,0.08);
      }
      .pricing-card.highlighted:hover {
        animation: ctaGlow 2s ease-in-out infinite;
      }
      .pricing-card.highlighted {
        border-color: rgba(217, 125, 22, 0.4);
        background:
          linear-gradient(var(--bg-tertiary), var(--bg-tertiary)) padding-box,
          linear-gradient(135deg, var(--primary), var(--primary-bright))
            border-box;
        border: 2px solid transparent;
        transform: scale(1.03);
      }
      .pricing-card.highlighted:hover {
        transform: scale(1.03) translateY(-4px);
      }
      .popular-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        padding: 4px 16px;
        background: linear-gradient(
          135deg,
          var(--primary),
          var(--primary-bright)
        );
        border-radius: 100px;
        font-size: 0.75rem;
        font-weight: 700;
        color: #fff;
        white-space: nowrap;
      }
      .pricing-card h3 {
        font-family: var(--font-heading);
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 8px;
      }
      .pricing-price {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 4px;
      }
      .pricing-price span {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-muted);
      }
      .pricing-desc {
        font-size: 0.9rem;
        color: var(--text-secondary);
        margin-bottom: 28px;
        line-height: 1.6;
      }
      .pricing-features {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
      }
      .pricing-feature {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.88rem;
        color: var(--text-secondary);
      }
      .pricing-feature svg {
        width: 16px;
        height: 16px;
        color: #22c55e;
        flex-shrink: 0;
      }

      /* ============================================================
       TESTIMONIALS
       ============================================================ */
      .testimonials-track {
        display: flex;
        gap: 24px;
        overflow: hidden;
        margin-bottom: 32px;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        background: var(--bg-tertiary);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: var(--radius);
        padding: 32px;
        min-width: calc(50% - 12px);
        transition: all var(--transition);
      }
      .testimonial-card:hover {
        border-color: rgba(217, 125, 22, 0.15);
      }
      .testimonial-stars {
        display: flex;
        gap: 4px;
        margin-bottom: 16px;
      }
      .testimonial-stars svg {
        width: 18px;
        height: 18px;
        fill: var(--primary);
        color: var(--primary);
      }
      .testimonial-quote {
        font-size: 1rem;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 24px;
        font-style: italic;
      }
      .testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .testimonial-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
      }
      .testimonial-name {
        font-size: 0.92rem;
        font-weight: 600;
      }
      .testimonial-role {
        font-size: 0.8rem;
        color: var(--text-muted);
      }
      .testimonials-controls {
        display: flex;
        justify-content: center;
        gap: 12px;
      }
      .testimonial-btn {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--text-secondary);
        transition: all var(--transition);
      }
      .testimonial-btn:hover {
        border-color: var(--primary);
        color: var(--primary);
      }
      .testimonial-btn svg {
        width: 20px;
        height: 20px;
      }

      /* ============================================================
       CTA SECTION
       ============================================================ */
      .cta-section {
        text-align: center;
        background: var(--bg-secondary);
        padding: 100px 0;
        position: relative;
      }
      .cta-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(217,125,22,0.06) 0%, transparent 70%);
        pointer-events: none;
        border-radius: 50%;
      }
      .cta-section h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.15;
        position: relative;
      }
      .cta-subtitle {
        font-size: 1.1rem;
        color: var(--text-secondary);
        max-width: 560px;
        margin: 0 auto 36px;
        line-height: 1.7;
        position: relative;
      }

      /* ============================================================
       TEAM GRID
       ============================================================ */
      .team-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }
      .team-card {
        background: var(--bg-tertiary);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: var(--radius);
        padding: 32px 24px;
        text-align: center;
        transition: all var(--transition);
      }
      .team-card:hover {
        transform: translateY(-6px);
        border-color: rgba(217, 125, 22, 0.2);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
      }
      .team-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 16px;
        border: 2px solid rgba(217, 125, 22, 0.2);
        transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
      }
      .team-card:hover .team-avatar {
        transform: scale(1.08);
        border-color: var(--primary);
        box-shadow: 0 0 20px rgba(217,125,22,0.25);
      }
      .team-card h3 {
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 4px;
      }
      .team-role {
        font-size: 0.82rem;
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 12px;
      }
      .team-bio {
        font-size: 0.85rem;
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 16px;
      }
      .team-expertise {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
        margin-bottom: 16px;
      }
      .team-social {
        display: flex;
        gap: 12px;
        justify-content: center;
      }
      .team-social a {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: var(--text-muted);
        transition: all var(--transition);
      }
      .team-social a:hover {
        border-color: var(--primary);
        color: var(--primary);
      }
      .team-social svg {
        width: 14px;
        height: 14px;
      }

      /* ============================================================
       CONTACT
       ============================================================ */
      .contact-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 48px;
      }
      .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
      .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
      .form-group label {
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--text-secondary);
      }
      .form-group input,
      .form-group textarea,
      .form-group select {
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-sm);
        color: var(--text-primary);
        font-size: 0.92rem;
        transition: border-color 0.35s, box-shadow 0.35s, background 0.35s, transform 0.2s;
        outline: none;
      }
      .form-group input:focus,
      .form-group textarea:focus,
      .form-group select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(217,125,22,0.1), 0 4px 16px rgba(217,125,22,0.05);
        background: rgba(217, 125, 22, 0.02);
        transform: translateY(-1px);
      }
      .form-group input::placeholder,
      .form-group textarea::placeholder {
        color: var(--text-muted);
      }
      .form-group select {
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b6b74' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 40px;
        cursor: pointer;
      }
      .form-group select option {
        background: var(--bg-tertiary);
        color: var(--text-primary);
      }
      .form-group textarea {
        resize: vertical;
        min-height: 120px;
      }
      .service-checklist {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
      }
      .check-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-sm);
        cursor: pointer;
        transition: all var(--transition);
        font-size: 0.88rem;
        color: var(--text-secondary);
        user-select: none;
      }
      .check-item:hover {
        border-color: rgba(217, 125, 22, 0.3);
        background: rgba(217, 125, 22, 0.04);
      }
      .check-item:has(input:checked) {
        border-color: var(--primary);
        background: rgba(217, 125, 22, 0.08);
        color: var(--text-primary);
      }
      .check-item input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        border: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: 4px;
        background: transparent;
        cursor: pointer;
        flex-shrink: 0;
        position: relative;
        transition: all var(--transition);
      }
      .check-item input[type="checkbox"]:checked {
        background: var(--primary);
        border-color: var(--primary);
      }
      .check-item input[type="checkbox"]:checked::after {
        content: "";
        position: absolute;
        left: 5px;
        top: 2px;
        width: 5px;
        height: 9px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
      }
      .form-group input.error,
      .form-group textarea.error,
      .form-group select.error {
        border-color: #ef4444;
      }
      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 28px;
      }
      .contact-info-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        transition: transform 0.3s;
      }
      .contact-info-item:hover {
        transform: translateX(4px);
      }
      [dir="rtl"] .contact-info-item:hover {
        transform: translateX(-4px);
      }
      .contact-info-icon {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-sm);
        background: rgba(217, 125, 22, 0.1);
        flex-shrink: 0;
        transition: transform 0.3s, box-shadow 0.3s;
      }
      .contact-info-item:hover .contact-info-icon {
        transform: scale(1.1);
        box-shadow: 0 0 16px rgba(217,125,22,0.2);
      }
      .contact-info-icon svg {
        width: 20px;
        height: 20px;
        color: var(--primary);
      }
      .contact-info-label {
        font-size: 0.82rem;
        color: var(--text-muted);
        margin-bottom: 4px;
      }
      .contact-info-value {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-primary);
      }
      .contact-social {
        display: flex;
        gap: 12px;
        margin-top: 12px;
      }
      .contact-social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        color: var(--text-muted);
        transition: all var(--transition);
      }
      .contact-social a:hover {
        border-color: var(--primary);
        color: var(--primary);
      }
      .contact-social svg {
        width: 18px;
        height: 18px;
      }
      #form-status {
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        font-size: 0.9rem;
        font-weight: 500;
      }
      #form-status.success {
        display: block !important;
        background: rgba(34, 197, 94, 0.1);
        border: 1px solid rgba(34, 197, 94, 0.2);
        color: #22c55e;
      }
      #form-status.error-msg {
        display: block !important;
        background: rgba(239, 68, 68, 0.1);
        border: 1px solid rgba(239, 68, 68, 0.2);
        color: #ef4444;
      }

      /* ============================================================
       FOOTER
       ============================================================ */
      .footer {
        padding: 80px 0 0;
        background: var(--bg-secondary);
        border-top: 1px solid rgba(255, 255, 255, 0.04);
      }
      .footer-inner {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 48px;
      }
      .footer-logo {
        margin-bottom: 16px;
      }
      .footer-sub {
        font-size: 0.72rem;
        font-weight: 400;
        letter-spacing: 0.2em;
        color: var(--primary);
        margin-bottom: 12px;
      }
      .footer-tagline {
        font-size: 0.92rem;
        color: var(--text-muted);
        line-height: 1.6;
        max-width: 300px;
      }
      .footer-heading {
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--text-primary);
      }
      .footer-links li {
        margin-bottom: 10px;
      }
      .footer-links a {
        font-size: 0.88rem;
        color: var(--text-muted);
        transition: color 0.3s, transform 0.3s;
        display: inline-block;
      }
      .footer-links a:hover {
        color: var(--primary);
        transform: translateX(4px);
      }
      [dir="rtl"] .footer-links a:hover {
        transform: translateX(-4px);
      }
      .social-links {
        display: flex;
        gap: 12px;
      }
      .social-links a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        color: var(--text-muted);
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .social-links a:hover {
        border-color: var(--primary);
        color: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(217,125,22,0.2);
      }
      .social-links svg {
        width: 18px;
        height: 18px;
      }
      .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        flex-wrap: wrap;
        gap: 16px;
      }
      .footer-copy {
        font-size: 0.82rem;
        color: var(--text-muted);
      }
      .footer-legal {
        display: flex;
        gap: 20px;
      }
      .footer-legal a {
        font-size: 0.82rem;
        color: var(--text-muted);
        transition: color var(--transition);
      }
      .footer-legal a:hover {
        color: var(--text-primary);
      }
      .footer-ai-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 14px;
        background: rgba(217, 125, 22, 0.08);
        border: 1px solid rgba(217, 125, 22, 0.15);
        border-radius: 100px;
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--primary);
      }
