/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    -webkit-font-smoothing: antialiased;
}

body {
    background: #fafafa;
    color: #18181b;
    font-family: 'Darbareh', system-ui, sans-serif;
    overflow-x: hidden;
    direction: rtl;
    line-height: 1.6;
}

::selection {
    background: #18181b;
    color: #fafafa;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f4f4f5;
}

::-webkit-scrollbar-thumb {
    background: #18181b;
    border-radius: 12px;
}

/* ─── Preloader ─── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-ring {
    width: 48px;
    height: 48px;
    border: 3px solid #e4e4e7;
    border-top-color: #18181b;
    border-radius: 50%;
    animation: spin 0.9s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ─── Header ─── */
.header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1280px;
    padding: 10px 24px;
    z-index: 1000;
    border-radius: 80px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.header.scrolled {
    top: 8px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.logo {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.4px;
    color: #18181b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo .mark {
    background: #18181b;
    color: #fafafa;
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}
.logo .mark img {
    width: 24px;
}

.nav-desktop {
    display: none;
    gap: 28px;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #52525b;
    text-decoration: none;
    transition: color 0.25s ease;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: #18181b;
}

.btn-outline-dark {
    padding: 8px 24px;
    border-radius: 60px;
    border: 1px solid #18181b;
    background: transparent;
    color: #18181b;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.btn-outline-dark:hover {
    background: #18181b;
    color: #fafafa;
}

.menu-btn {
    background: transparent;
    border: none;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .menu-btn {
        display: none;
    }
}

.menu-btn .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #18181b;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.menu-btn.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-btn.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(32px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
    padding: 40px;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-overlay a {
    font-size: 26px;
    font-weight: 400;
    color: #52525b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-overlay a:hover {
    color: #18181b;
}

/* ─── Noise BG ─── */
.noise-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

/* ─── HERO (Dark / New Concept) ─── */
.hero-dark {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a;
    padding: 100px 24px 60px;
}

.hero-dark .hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-dark .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.hero-dark .hero-orb--1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.hero-dark .hero-orb--2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}

.hero-dark-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .hero-dark-content {
        grid-template-columns: 1fr 0.9fr;
        align-items: center;
        gap: 60px;
    }
}

/* Left side */
.hero-dark-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-dark-left .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 16px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    width: fit-content;
    margin-bottom: 20px;
}

.hero-dark-left h1 {
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #777;
}

.hero-dark-left h1 .highlight {
    color: #fff;
}

.hero-dark-left .sub-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 400px;
    margin-top: 16px;
    line-height: 1.8;
}

.hero-actions-dark {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-actions-dark .btn-primary {
    background: #ffffff;
    color: #0a0a0a;
    padding: 14px 36px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-actions-dark .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.hero-actions-dark .btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-actions-dark .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Right side - interactive card */
.hero-dark-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.hero-dark-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 32px 30px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.hero-dark-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.hero-dark-card .card-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dark-card .card-title .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #27c93f;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-dark-card .project-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-dark-card .project-item:last-child {
    border-bottom: none;
}

.hero-dark-card .project-item .icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
}

.hero-dark-card .project-item .info {
    flex: 1;
}

.hero-dark-card .project-item .info h4 {
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    margin: 0;
}

.hero-dark-card .project-item .info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.hero-dark-card .project-item .status {
    font-size: 10px;
    font-weight: 600;
    color: #27c93f;
    background: rgba(39, 201, 63, 0.12);
    padding: 3px 12px;
    border-radius: 40px;
}

/* Stats */
.hero-dark-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
    width: 100%;
    max-width: 420px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.hero-dark-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-dark-stats .stat-item .num {
    font-weight: 800;
    font-size: 18px;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.hero-dark-stats .stat-item .label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Contact links - dark */
.hero-dark-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    max-width: 420px;
}

.hero-dark-contact a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-dark-contact a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-dark-contact a i {
    font-size: 15px;
}

/* ─── Services Grid ─── */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e4e4e7;
    padding: 28px 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #d4d4d8;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.04);
}

.service-card .icon-wrap {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #18181b;
    margin-bottom: 4px;
}

.service-card .tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #71717a;
    display: inline-block;
    border: 1px solid #e4e4e7;
    padding: 2px 14px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 13px;
    color: #52525b;
    line-height: 1.7;
    margin: 6px 0 14px;
}

.service-card .link {
    font-size: 13px;
    font-weight: 600;
    color: #18181b;
    text-decoration: none;
    border-bottom: 2px solid #18181b;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.service-card .link:hover {
    gap: 12px;
    opacity: 0.7;
}

/* ─── Timeline ─── */
.timeline-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 16px;
}

.timeline-line {
    position: relative;
    padding-right: 32px;
}

.timeline-line::before {
    content: '';
    position: absolute;
    right: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e4e4e7;
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    padding-bottom: 36px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item .dot {
    position: absolute;
    right: -2px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #18181b;
    border: 2px solid #fafafa;
    box-shadow: 0 0 0 2px #18181b;
    z-index: 2;
}

.timeline-item .content {
    padding-right: 24px;
}

.timeline-item .step {
    font-size: 11px;
    font-weight: 700;
    color: #18181b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.timeline-item h4 {
    font-weight: 600;
    font-size: 17px;
    color: #18181b;
    margin: 2px 0 4px;
}

.timeline-item p {
    font-size: 14px;
    color: #71717a;
    margin: 0;
    line-height: 1.6;
}

/* ─── Pricing Tabs ─── */
.pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
}

.pricing-tab {
    padding: 8px 20px;
    border-radius: 60px;
    background: transparent;
    border: 1px solid #e4e4e7;
    color: #71717a;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.2px;
}

.pricing-tab:hover {
    background: #f4f4f5;
    color: #18181b;
}

.pricing-tab.active {
    background: #18181b;
    color: #fafafa;
    border-color: #18181b;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ─── Pricing Cards ─── */
.pricing-card {
    padding: 24px 20px;
    border-radius: 20px;
    border: 1px solid #e4e4e7;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.featured {
    border-color: #18181b;
    border-width: 2px;
    background: #fcfcfc;
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.04);
}

.pricing-card .badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 40px;
    background: #18181b;
    color: #fafafa;
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
}

.pricing-card .badge.popular {
    background: #18181b;
    color: #fafafa;
}

.pricing-card .name {
    font-size: 17px;
    font-weight: 700;
    color: #18181b;
}

.pricing-card .price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 4px 0 2px;
}

.pricing-card .price-current {
    font-size: 26px;
    font-weight: 800;
    color: #18181b;
    letter-spacing: -0.5px;
}

.pricing-card .price-original {
    font-size: 14px;
    font-weight: 400;
    color: #a1a1aa;
    text-decoration: line-through;
}

.pricing-card .delivery {
    font-size: 12px;
    color: #71717a;
    margin-bottom: 12px;
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    flex: 1;
}

.pricing-card .features li {
    font-size: 12px;
    color: #52525b;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #f4f4f5;
}

.pricing-card .features li::before {
    content: '✓';
    color: #18181b;
    font-weight: 700;
    font-size: 12px;
}

.pricing-card .btn-card {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 11px;
    border-radius: 60px;
    background: #18181b;
    color: #fafafa;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.pricing-card .btn-card:hover {
    background: #27272a;
}

.pricing-card .note {
    font-size: 11px;
    color: #71717a;
    margin-top: 10px;
    padding: 8px 12px;
    background: #f4f4f5;
    border-radius: 12px;
    border-right: 2px solid #18181b;
}

/* ─── Comparison Table ─── */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.compare-table th,
.compare-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e4e4e7;
    text-align: right;
}

.compare-table th {
    font-weight: 600;
    color: #18181b;
    background: #fafafa;
}

.compare-table td {
    color: #52525b;
}

.compare-table .check {
    color: #18181b;
    font-weight: 700;
}

.compare-table .dash {
    color: #d4d4d8;
}

/* ─── Portfolio Grid ─── */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-item {
    border-radius: 16px;
    border: 1px solid #e4e4e7;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    aspect-ratio: 4.5/3;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: scale(1.02);
    border-color: #d4d4d8;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.portfolio-item .screenshot {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
    border-radius: 16px;
    filter: grayscale(1) blur(5px);
    transform: scale(1.1);
}
.portfolio-item:hover .screenshot {
    filter: grayscale(0);
    transform: scale(1);
}

.portfolio-item .content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 14px 18px;
    border-radius: 12px;
    margin: 14px;
    width: calc(100% - 28px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
}

.portfolio-item:hover .content {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(0);
}

.portfolio-item .content h4 {
    font-weight: 600;
    font-size: 16px;
    color: #18181b;
    margin: 0;
}

.portfolio-item .content p {
    font-size: 12px;
    color: #666;
    margin: 2px 0 0;
}

.portfolio-item .more {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 14px 18px;
    border-radius: 12px;
    width: auto;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
    font-size: 14px;
}

.portfolio-item:hover .more {
    transform: translate(-50%, -50%) scale(1);
}

/* ─── Accordion ─── */
.accordion-item {
    border-bottom: 1px solid #e4e4e7;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 0;
    font-size: 14px;
    font-weight: 600;
    color: #18181b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    text-align: right;
    transition: color 0.3s ease;
}

.accordion-trigger:hover {
    color: #52525b;
}

.accordion-trigger .icon {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.accordion-trigger.open .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion-content-inner {
    padding-bottom: 18px;
    color: #52525b;
    font-size: 13px;
    line-height: 1.8;
}

/* ─── Studio Badge ─── */
.studio-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 400;
    color: #71717a;
    border: 1px solid #e4e4e7;
    padding: 4px 16px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

/* ─── Floating CTA ─── */
.floating-cta {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    background: #18181b;
    color: #fafafa;
    border: none;
    border-radius: 60px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
    letter-spacing: 0.2px;
}

.floating-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    background: #27272a;
}

.floating-cta i {
    font-size: 16px;
}

@media (max-width: 480px) {
    .floating-cta {
        padding: 12px 18px;
        font-size: 12px;
        bottom: 20px;
        left: 20px;
    }

    .floating-cta i {
        font-size: 14px;
    }
}

/* ─── Section Labels ─── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #71717a;
    border: 1px solid #e4e4e7;
    padding: 4px 16px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    margin-bottom: 10px;
}

/* ─── Reveal ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Form ─── */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #e4e4e7;
    background: #ffffff;
    font-family: inherit;
    font-size: 13px;
    transition: all 0.3s ease;
    color: #18181b;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #18181b;
    box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.05);
}

.contact-form input::-webkit-inner-spin-button,
.contact-form input::-webkit-outer-spin-button {
    display: none;
    appearance: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
    margin-top: 15px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 640px) {
    .contact-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ─── Responsive ─── */
@media (max-width: 480px) {
    .header {
        padding: 8px 16px;
        top: 10px;
        width: calc(100% - 16px);
        border-radius: 60px;
    }

    .hero-dark-card {
        padding: 24px 20px;
        max-width: 100%;
    }

    .hero-dark-stats {
        gap: 12px 20px;
        padding: 12px 16px;
    }

    .hero-dark-stats .stat-item .num {
        font-size: 16px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .floating-cta {
        padding: 10px 16px;
        font-size: 12px;
        bottom: 16px;
        left: 16px;
    }

    .services-grid {
        gap: 12px;
    }

    .service-card {
        padding: 20px 18px;
    }

    .timeline-wrapper {
        padding: 0;
    }

    .timeline-item .content {
        padding-right: 16px;
    }

    .hero-dark-contact {
        gap: 8px 14px;
    }

    .hero-dark-contact a {
        font-size: 12px;
    }
}

@media print {

    #preloader,
    .header,
    .mobile-overlay,
    .floating-cta {
        display: none !important;
    }

    body {
        background: #fff !important;
        color: #000 !important;
    }
}
.btn-cta {
    font-size: 15px;
    padding: 12px 36px;
    border: 1px solid #18181b;
    border-radius: 60px;
    color: #18181b;
    text-decoration: none;
}

/* ─── Wireframe 3D Browser ─── */
.wireframe-scene {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  height: 380px;
}

.wireframe-browser {
  width: 100%;
  height: 100%;
  background: #111;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: rotateY(-8deg) rotateX(2deg) translateZ(20px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.browser-bar {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.browser-bar .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.browser-bar .dot.red { background: #ff5f56; }
.browser-bar .dot.yellow { background: #ffbd2e; }
.browser-bar .dot.green { background: #27c93f; }

.browser-url {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-right: 12px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.browser-body {
  flex: 1;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.slide-content {
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.95) translateY(10px);
  position: absolute;
  width: 80%;
  pointer-events: none;
}

.slide-content.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.slide-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.slide-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.slide-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* واکنش‌گرایی */
@media (max-width: 480px) {
  .wireframe-scene {
    height: 300px;
    max-width: 100%;
  }
  .slide-icon { font-size: 36px; }
  .slide-content h3 { font-size: 18px; }
  .slide-content p { font-size: 12px; }
}

/* ─── Footer Minimal ─── */
.site-footer {
  border-top: 1px solid #e4e4e7;
  background: #fafafa;
  padding: 28px 24px 16px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 16px;
}

.footer-col {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* راست */
.footer-col--right {
  flex: 1;
  justify-content: flex-start;
}

.footer-contact {
  font-size: 13px;
  color: #52525b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.footer-contact i {
  font-size: 14px;
  color: #71717a;
}

.footer-contact:hover {
  color: #18181b;
}

/* وسط */
.footer-col--center {
  flex: 0 0 auto;
}

.footer-col--center .logo {
  font-size: 18px;
  font-weight: 800;
  color: #18181b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col--center .logo .mark {
  background: #18181b;
  color: #fafafa;
  padding: 4px 14px;
  border-radius: 40px;
  font-size: 12px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-col--center .logo .mark img {
  width: 20px;
  display: block;
}

/* چپ (سوشیال) */
.footer-col--left {
  flex: 1;
  justify-content: flex-end;
  gap: 18px;
}

.footer-col--left a {
  color: #71717a;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-col--left a:hover {
  color: #18181b;
  transform: translateY(-2px);
}

/* کپی‌رایت */
.footer-copy {
  max-width: 1280px;
  margin: 16px auto 0;
  padding-top: 16px;
  border-top: 1px solid #e4e4e7;
  text-align: center;
}

.footer-copy p {
  font-size: 12px;
  color: #a1a1aa;
  margin: 0;
  letter-spacing: 0.2px;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer-col {
    flex: 0 0 auto;
    justify-content: center !important;
    width: 100%;
  }

  .footer-col--center {
    order: 1;
  }

  .footer-col--right {
    flex-direction: column;
    gap: 8px;
    order: 2;
  }

  .footer-col--left {
    gap: 20px;
    order: 3;
  }

  .footer-col--left a {
    font-size: 22px;
  }

  .footer-copy p {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 20px 16px 12px;
  }

  .footer-col--center .logo {
    font-size: 16px;
  }

  .footer-col--center .logo .mark {
    padding: 3px 10px;
    font-size: 11px;
  }

  .footer-col--center .logo .mark img {
    width: 18px;
  }

  .footer-contact {
    font-size: 12px;
  }
}

/* ─── Form Error Styles ─── */
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}
.field-error {
    color: #dc2626;
    font-size: 12px;
    margin-top: 4px;
}
/* ─── SERVICES – European Premium ─── */
.services-premium {
    position: relative;
    padding: 80px 24px 100px;
    background: #fafafa;
    overflow: hidden;
    border-top: 1px solid #e4e4e7;
}

.services-premium-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.services-premium-bg .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.25;
}

.services-premium-bg .orb-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, #cbd5e1 0%, transparent 70%);
}

.services-premium-bg .orb-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, #e2e8f0 0%, transparent 70%);
}

.services-premium-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.services-premium-header {
    margin-bottom: 56px;
    text-align: center;
}

.services-premium-header .premium-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #71717a;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    padding: 4px 20px;
    border-radius: 40px;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
}

.services-premium-header h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #18181b;
}

.services-premium-header h2 span {
    color: #71717a;
    font-weight: 300;
    border-bottom: 3px solid #18181b;
}

.services-premium-header .premium-sub {
    font-size: 16px;
    color: #71717a;
    max-width: 480px;
    margin: 12px auto 0;
    line-height: 1.6;
    font-weight: 400;
}

.services-premium-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .services-premium-grid {
        gap: 24px;
    }
}

.service-premium-card {
    flex: 0 0 31%;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 24px;
    padding: 28px 26px 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: default;
}

@media (max-width: 620px) {
    .service-premium-card {
        flex: 0 0 100%;
    }
}

.service-premium-card:hover {
    transform: translateY(-8px);
    border-color: #18181b;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.05);
}

.service-premium-card .card-accent-line {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: #18181b;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-premium-card:hover .card-accent-line {
    transform: scaleX(1);
    transform-origin: left center;
}

.service-premium-card .card-top {
    direction: ltr;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f4f4f5;
}

.service-premium-card .card-index {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    color: #18181b;
    background: #f4f4f5;
    padding: 4px 20px;
    border-radius: 40px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding-bottom: 2px;
    padding-top: 6px;
}

.service-premium-card:hover .card-index {
    background: #18181b;
    color: #fafafa;
}

.service-premium-card .card-category {
    font-size: 20px;
    font-weight: 700;
    color: #18181b;
    letter-spacing: -0.02em;
}

.service-premium-card .card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.service-premium-card .card-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f4f4f5;
    transition: all 0.3s ease;
    gap: 12px;
}

.service-premium-card .card-list li:last-child {
    border-bottom: none;
}

.service-premium-card .card-list .list-name {
    font-size: 15px;
    font-weight: 600;
    color: #18181b;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-premium-card .card-list .list-name::before {
    content: '—';
    color: #a1a1aa;
    font-weight: 300;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-premium-card .card-list li:hover .list-name::before {
    opacity: 1;
    color: #18181b;
}

.service-premium-card .card-list .list-desc {
    font-size: 12px;
    color: #a1a1aa;
    font-weight: 400;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.service-premium-card .card-list li:hover .list-desc {
    color: #52525b;
}

.service-premium-card .card-list li:hover .list-name {
    transform: translateX(6px);
}

@media (max-width: 480px) {
    .services-premium {
        padding: 50px 16px 60px;
    }

    .services-premium-header h2 {
        font-size: 28px;
    }

    .service-premium-card {
        padding: 20px 18px 18px;
    }

    .service-premium-card .card-category {
        font-size: 17px;
    }

    .service-premium-card .card-list .list-name {
        font-size: 14px;
    }

    .service-premium-card .card-list .list-desc {
        font-size: 11px;
        white-space: normal;
        text-align: left;
    }

    .service-premium-card .card-list li {
        flex-wrap: wrap;
        gap: 2px;
    }

    .service-premium-card .card-hover-icon {
        display: none;
    }
}

.services-premium-container[dir="rtl"] .service-premium-card .card-hover-icon i {
    transform: scaleX(-1);
}

.service-premium-card .card-list li:hover .list-name {
    transform: translateX(6px);
}

.service-premium-card.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-premium-card.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Premium Select Style ─── */
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #e4e4e7;
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2318181b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat left 16px center;
    background-size: 12px 8px;
    font-family: inherit;
    font-size: 13px;
    color: #18181b;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-form select:focus {
    outline: none;
    border-color: #18181b;
    box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.05);
}

.contact-form select option {
    padding: 8px 12px;
    font-size: 13px;
    color: #18181b;
    background: #ffffff;
}

.contact-form select optgroup {
    font-weight: 700;
    color: #18181b;
    background: #fafafa;
}

.contact-form select.error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

/* ─── STUDIO – Premium Founder Section ─── */
.studio-premium {
    padding: 80px 24px 100px;
    background: #ffffff;
    border-top: 1px solid #e4e4e7;
    border-bottom: 1px solid #e4e4e7;
}

.studio-premium-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.studio-premium-header {
    text-align: center;
    margin-bottom: 56px;
}

.studio-premium-header .premium-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #71717a;
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
    padding: 4px 20px;
    border-radius: 40px;
    margin-bottom: 16px;
}

.studio-premium-header h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #18181b;
}

.studio-premium-header h2 span {
    color: #71717a;
    font-weight: 300;
    border-bottom: 3px solid #18181b;
}

/* Founder Card */
.studio-founder-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    background: #fafafa;
    border-radius: 32px;
    padding: 40px 30px;
    border: 1px solid #ececec;
    transition: all 0.4s ease;
}

@media (min-width: 900px) {
    .studio-founder-card {
        grid-template-columns: 0.9fr 1.4fr;
        gap: 50px;
        padding: 50px 48px;
    }
}

.studio-founder-card:hover {
    border-color: #d4d4d8;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03);
}

/* Left – Visual */
.founder-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.founder-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: #e4e4e7;
    border: 4px solid #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-image-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 30% 30%, rgba(24, 24, 27, 0.06), transparent 60%);
    pointer-events: none;
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #18181b;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    padding: 8px 20px;
    border-radius: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.founder-badge .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Right – Info */
.founder-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.founder-title {
    border-bottom: 2px solid #f4f4f5;
    padding-bottom: 16px;
}

.founder-role {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #71717a;
}

.founder-title h3 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #18181b;
    margin: 4px 0 0;
    letter-spacing: -0.02em;
}

/* Expertise Chips */
.founder-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-item {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 60px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    border-color: #18181b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.expertise-label {
    font-size: 13px;
    font-weight: 600;
    color: #18181b;
}

.expertise-desc {
    font-size: 11px;
    color: #71717a;
}

/* Stats */
.founder-stats {
    display: flex;
    gap: 32px;
    padding: 16px 0;
    border-top: 1px solid #e4e4e7;
    border-bottom: 1px solid #e4e4e7;
}

.founder-stats .stat {
    display: flex;
    flex-direction: column;
}

.founder-stats .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #18181b;
    letter-spacing: -0.02em;
}

.founder-stats .stat-label {
    font-size: 12px;
    color: #71717a;
    font-weight: 400;
}

/* Bio */
.founder-bio {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid #e4e4e7;
}

.founder-bio p {
    font-size: 15px;
    line-height: 1.8;
    color: #52525b;
    margin: 0;
}

/* Social */
.founder-social {
    display: flex;
    gap: 14px;
    margin-top: 4px;
}

.founder-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f4f4f5;
    color: #18181b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid transparent;
}

.founder-social a:hover {
    background: #18181b;
    color: #fafafa;
    border-color: #18181b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 600px) {
    .studio-premium {
        padding: 50px 16px 60px;
    }

    .studio-founder-card {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .founder-image-wrapper {
        max-width: 200px;
    }

    .founder-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .founder-stats .stat-number {
        font-size: 22px;
    }

    .expertise-item {
        padding: 6px 14px;
    }

    .expertise-label {
        font-size: 12px;
    }

    .expertise-desc {
        font-size: 10px;
    }

    .founder-bio p {
        font-size: 14px;
    }

    .founder-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ─── PROCESS – Premium Timeline ─── */
.process-premium {
    padding: 80px 24px 100px;
    background: #ffffff;
    border-top: 1px solid #e4e4e7;
    border-bottom: 1px solid #e4e4e7;
}

.process-premium-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header */
.process-premium-header {
    text-align: center;
    margin-bottom: 64px;
}

.process-premium-header .process-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #71717a;
    background: #fafafa;
    border: 1px solid #e4e4e7;
    padding: 4px 20px;
    border-radius: 40px;
    margin-bottom: 14px;
}

.process-premium-header h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #18181b;
}

.process-premium-header h2 span {
    color: #71717a;
    font-weight: 300;
    border-bottom: 3px solid #18181b;
}

.process-premium-header .process-sub {
    font-size: 16px;
    color: #71717a;
    max-width: 500px;
    margin: 12px auto 0;
    line-height: 1.6;
}

/* Timeline */
.process-premium-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-right: 0;
}

/* Vertical line */
.process-premium-timeline::before {
    content: '';
    position: absolute;
    right: 32px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: #e4e4e7;
    border-radius: 4px;
}

/* Each Step */
.process-step {
    display: flex;
    gap: 28px;
    padding: 16px 0 32px;
    position: relative;
}

.process-step:last-child {
    padding-bottom: 0;
}

/* Connector (number + line) */
.process-step .step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 64px;
    position: relative;
    z-index: 2;
}

.process-step .step-number {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    background: #18181b;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px #18181b;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    background: #ffffff;
    color: #18181b;
    box-shadow: 0 0 0 2px #18181b, 0 8px 24px rgba(24, 24, 27, 0.12);
}

.process-step .step-line {
    flex: 1;
    min-height: 0;
    width: 2px;
    background: #e4e4e7;
    margin: 6px 0 0;
}

.process-step:last-child .step-line {
    display: none;
}

/* Content */
.process-step .step-content {
    flex: 1;
    padding-top: 2px;
}

.process-step .step-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 4px;
}

.process-step .step-phase {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #71717a;
}

.process-step .step-duration {
    font-size: 11px;
    color: #a1a1aa;
    background: #f4f4f5;
    padding: 1px 14px;
    border-radius: 40px;
    line-height: 1.6;
}

.process-step .step-title {
    font-size: 20px;
    font-weight: 700;
    color: #18181b;
    margin: 0 0 4px;
    letter-spacing: -0.02em;
}

.process-step .step-desc {
    font-size: 14px;
    color: #71717a;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 0 12px;
}

.process-step .step-deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}

.process-step .step-deliverables li {
    font-size: 14px;
    color: #52525b;
    background: #fafafa;
    padding: 2px 12px 2px 14px;
    border-radius: 40px;
    border: 1px solid #f0f0f0;
    line-height: 1.8;
}
.process-step .step-deliverables li i {
    font-size: 16px;
    margin-left: 5px;
}

/* Footer CTA */
.process-premium-footer {
    text-align: center;
    margin-top: 48px;
}

.process-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #18181b;
    text-decoration: none;
    padding: 12px 32px;
    border: 1px solid #18181b;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-cta:hover {
    background: #18181b;
    color: #fafafa;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.process-cta i {
    transition: transform 0.3s ease;
}

.process-cta:hover i {
    transform: translateX(-4px);
}

/* RTL Adjustments */
[dir="rtl"] .process-premium-timeline::before {
    right: 32px;
    left: auto;
}

[dir="rtl"] .process-step .step-connector {
    margin-left: 0;
    margin-right: 0;
}

[dir="rtl"] .process-cta:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .process-premium {
        padding: 60px 16px 70px;
    }

    .process-premium-header h2 {
        font-size: 28px;
    }

    .process-step {
        gap: 16px;
        padding: 12px 0 24px;
    }

    .process-step .step-connector {
        width: 48px;
    }

    .process-step .step-number {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .process-premium-timeline::before {
        right: 24px;
        top: 16px;
        bottom: 16px;
    }

    .process-step .step-title {
        font-size: 18px;
    }

    .process-step .step-desc {
        font-size: 13px;
    }

    .process-step .step-deliverables li {
        font-size: 11px;
    }

    .process-step .step-meta {
        flex-wrap: wrap;
        gap: 6px 10px;
    }
}

@media (max-width: 480px) {
    .process-premium {
        padding: 40px 12px 50px;
    }

    .process-step {
        gap: 12px;
        padding: 8px 0 20px;
    }

    .process-step .step-connector {
        width: 36px;
    }

    .process-premium-timeline::before {
        right: 18px;
    }

    .process-step .step-number {
        width: 28px;
        height: 28px;
        font-size: 10px;
        border-width: 1.5px;
    }

    .process-step .step-title {
        font-size: 16px;
    }

    .process-step .step-desc {
        font-size: 12px;
    }

    .process-step .step-deliverables {
        gap: 4px 10px;
    }

    .process-step .step-deliverables li {
        font-size: 10px;
        padding: 1px 10px;
    }

    .process-cta {
        font-size: 13px;
        padding: 10px 24px;
    }
}
.partnership-hero {
    background: #0a0a0a;
    padding: 130px 24px 80px;
    position: relative;
    overflow: hidden;
}
.partnership-hero .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    pointer-events: none;
}
.partnership-hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}
.partnership-hero h1 .highlight { color: #71717a; }
.partnership-hero .hero-sub {
    color: rgba(255,255,255,0.5);
    font-size: 18px;
    max-width: 560px;
    line-height: 1.8;
    margin-top: 12px;
}
.partnership-hero .hero-tagline {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-top: 4px;
}
.income-card {
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.income-card:hover {
    transform: translateY(-6px);
    border-color: #18181b;
    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}
.income-card .amount {
    font-size: 32px;
    font-weight: 800;
    color: #18181b;
}
.income-card .label {
    font-size: 14px;
    color: #71717a;
}
.income-card .badge-blue {
    background: #18181b;
    color: #fff;
    padding: 4px 16px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
}
.audience-tag {
    background: #f4f4f5;
    border-radius: 60px;
    padding: 8px 20px;
    font-size: 14px;
    color: #18181b;
    border: 1px solid #e4e4e7;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}
.audience-tag i {
    margin-left: 10px;
    font-size: 16px;
}
.audience-tag:hover {
    background: #18181b;
    color: #fff;
    border-color: #18181b;
    transform: translateY(-2px);
}
.commission-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.commission-table th {
    background: #18181b;
    color: #fafafa;
    padding: 14px 16px;
    text-align: right;
    font-weight: 600;
}
.commission-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e4e4e7;
    color: #18181b;
}
.commission-table tr:hover td {
    background: #fafafa;
}
.benefit-card {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 20px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    text-align: center;
}
.benefit-card:hover {
    transform: translateY(-6px);
    border-color: #18181b;
    box-shadow: 0 16px 48px rgba(0,0,0,0.04);
}
.benefit-card .icon {
    font-size: 36px;
    color: #18181b;
    margin-bottom: 12px;
    display: block;
}
.benefit-card h4 {
    font-weight: 700;
    font-size: 18px;
    color: #18181b;
    margin-bottom: 4px;
}
.benefit-card p {
    color: #71717a;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}