/* ===================================
   DOCCB - Document Cabinet System
   Landing Page Styles — Enhanced v2
   المنصة الرقمية لتقنية المعلومات
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&family=Tajawal:wght@400;500;700;800;900&display=swap');

:root {
    /* Brand Colors - DOCCB */
    --gold-50: #FFF9E6;
    --gold-100: #FFF0BF;
    --gold-200: #FFE080;
    --gold-300: #FFD040;
    --gold-400: #C8A030;
    --gold-500: #B8860B;
    --gold-600: #96700A;
    
    --navy-50: #E8EDF5;
    --navy-100: #C5D0E6;
    --navy-200: #8BA1CC;
    --navy-300: #5172B3;
    --navy-400: #2B4C8C;
    --navy-500: #0A1E3D;
    --navy-600: #071529;
    --navy-700: #040D1A;
    
    --teal-400: #2DD4BF;
    --teal-500: #14B8A6;
    
    --bg-primary: #FAFBFD;
    --bg-section: #F1F5F9;
    --bg-dark: var(--navy-500);
    --bg-card: #FFFFFF;
    
    --text-heading: var(--navy-500);
    --text-body: #475569;
    --text-muted: #94A3B8;
    --text-white: #FFFFFF;
    
    --success: #059669;
    --danger: #DC2626;
    
    --shadow-card: 0 1px 3px rgba(10,30,61,0.06), 0 8px 24px rgba(10,30,61,0.04);
    --shadow-card-hover: 0 4px 12px rgba(10,30,61,0.08), 0 20px 40px rgba(10,30,61,0.08);
    --shadow-glow: 0 0 60px rgba(184,134,11,0.15);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'IBM Plex Sans Arabic', 'Tajawal', sans-serif;
    color: var(--text-body);
    background: var(--bg-primary);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-50);
    color: var(--gold-500);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid var(--gold-100);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(10,30,61,0.08);
    padding: 0.6rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--navy-400), var(--navy-500));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(184,134,11,0.2), transparent);
    animation: logoShimmer 3s ease-in-out infinite;
}

@keyframes logoShimmer {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold-300);
    position: relative;
    z-index: 1;
}

.logo-text {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy-500);
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--gold-500);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-body);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: width var(--transition);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--navy-500);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--navy-500);
    color: var(--text-white) !important;
    padding: 0.65rem 1.6rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.nav-cta:hover {
    background: transparent;
    color: var(--navy-500) !important;
    border-color: var(--navy-500);
}

.nav-cta::after {
    display: none !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle svg {
    width: 28px;
    height: 28px;
    color: var(--navy-500);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #FAFBFD 0%, #E8EDF5 40%, #F1F5F9 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(184,134,11,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(37,99,235,0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* Geometric decoration */
.hero-geo {
    position: absolute;
    opacity: 0.04;
    pointer-events: none;
}

.hero-geo-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    border: 3px solid var(--navy-500);
    border-radius: 50%;
    animation: geoRotate 30s linear infinite;
}

.hero-geo-2 {
    bottom: 15%;
    right: 8%;
    width: 200px;
    height: 200px;
    border: 3px solid var(--gold-500);
    transform: rotate(45deg);
    animation: geoFloat 8s ease-in-out infinite;
}

@keyframes geoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes geoFloat {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-20px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(184,134,11,0.08);
    border: 1px solid rgba(184,134,11,0.15);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-600);
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    position: relative;
    display: inline;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 0;
    left: 0;
    height: 12px;
    background: linear-gradient(90deg, var(--gold-200), var(--gold-100));
    z-index: -1;
    border-radius: 4px;
    opacity: 0.7;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(184,134,11,0.25);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184,134,11,0.35);
}

.btn-gold:hover svg {
    transform: translateX(-4px);
}

.btn-outline {
    background: transparent;
    color: var(--navy-500);
    border-color: var(--navy-200);
}

.btn-outline:hover {
    background: var(--navy-500);
    color: var(--text-white);
    border-color: var(--navy-500);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy-500);
}

.hero-stat-number span {
    color: var(--gold-500);
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Text Column */
.hero-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-visual-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(10,30,61,0.18), 0 2px 8px rgba(10,30,61,0.08);
    position: relative;
}

.hero-visual-main img {
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-visual-main:hover img {
    transform: scale(1.02);
}

.hero-float {
    position: absolute;
    background: var(--bg-card);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card-hover);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    animation: heroFloat 5s ease-in-out infinite;
    z-index: 3;
}

.hero-float svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.hero-float-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy-500);
    white-space: nowrap;
}

.hero-float-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-float-1 {
    top: 8%;
    right: -30px;
    animation-delay: 0s;
}

.hero-float-2 {
    bottom: 15%;
    left: -25px;
    animation-delay: 1.5s;
}

.hero-float-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: 3s;
}

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

/* ===== PARTNERS / TRUST BAR ===== */
.trust-bar {
    padding: 3rem 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(10,30,61,0.04);
    border-bottom: 1px solid rgba(10,30,61,0.04);
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-logo {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
    transition: opacity var(--transition);
}

.trust-logo:hover {
    opacity: 0.8;
}

/* ===== FEATURES ===== */
.features {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(10,30,61,0.04);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--teal-400));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.fi-navy {
    background: var(--navy-50);
    color: var(--navy-400);
}

.fi-gold {
    background: var(--gold-50);
    color: var(--gold-500);
}

.fi-teal {
    background: rgba(20,184,166,0.08);
    color: var(--teal-500);
}

.feature-card h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-section);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    right: 12%;
    left: 12%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-300), var(--navy-200), var(--teal-400), var(--gold-300));
    z-index: 0;
    border-radius: 4px;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid var(--navy-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Tajawal', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy-400);
    transition: all var(--transition);
}

.step-item:hover .step-num {
    background: var(--navy-500);
    border-color: var(--navy-500);
    color: var(--gold-300);
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(10,30,61,0.2);
}

.step-item h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.4rem;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== SHOWCASE / GALLERY ===== */
.showcase {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.showcase-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/11;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(10,30,61,0.06);
    transition: box-shadow var(--transition), transform var(--transition);
}

.showcase-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-card:hover img {
    transform: scale(1.08);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,30,61,0.88) 0%, rgba(10,30,61,0.2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.showcase-card:hover .showcase-overlay {
    opacity: 1;
}

.showcase-overlay h4 {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.2rem;
}

.showcase-overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* ===== SAUDI CONTEXT SECTION ===== */
.saudi-context {
    padding: 6rem 0;
    background: var(--bg-section);
    overflow: hidden;
}

.saudi-context-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.saudi-context-inner.reverse {
    direction: ltr;
}

.saudi-context-inner.reverse .saudi-context-text {
    direction: rtl;
}

.saudi-context-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(10,30,61,0.14);
    position: relative;
}

.saudi-context-img img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.saudi-context-img:hover img {
    transform: scale(1.04);
}

.saudi-context-img-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(10,30,61,0.85);
    backdrop-filter: blur(10px);
    color: var(--gold-300);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255,208,64,0.2);
}

.saudi-context-text .section-eyebrow {
    margin-bottom: 1.2rem;
}

.saudi-context-text h2 {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.35;
    margin-bottom: 1.2rem;
}

.saudi-context-text p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.saudi-context-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.saudi-context-points li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-body);
    font-weight: 500;
}

.saudi-context-points li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-500);
    flex-shrink: 0;
}

/* ===== STATISTICS ===== */
.statistics {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy-500) 0%, var(--navy-600) 100%);
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--gold-300);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-section);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(10,30,61,0.04);
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--navy-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Tajawal', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy-400);
    flex-shrink: 0;
}

.testimonial-avatar.avatar-img {
    background: none;
    overflow: hidden;
    padding: 0;
}

.testimonial-avatar.avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-body {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding-right: 1.5rem;
}

.testimonial-body::before {
    content: '\201D';
    position: absolute;
    top: -8px;
    right: 0;
    font-size: 3rem;
    color: var(--gold-200);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-top: 1rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: var(--gold-400);
    fill: var(--gold-400);
}

/* ===== PRICING ===== */
.pricing {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.price-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(10,30,61,0.06);
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.price-card.featured {
    background: var(--navy-500);
    color: var(--text-white);
    border: none;
    transform: scale(1.04);
    box-shadow: 0 20px 60px rgba(10,30,61,0.2);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.price-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.price-badge {
    position: absolute;
    top: -14px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--text-white);
    padding: 0.4rem 1.4rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.price-card h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-amount {
    font-family: 'Tajawal', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--navy-500);
    margin-bottom: 0.5rem;
}

.price-card.featured .price-amount {
    color: var(--gold-300);
}

.price-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.price-card.featured .price-amount span {
    color: rgba(255,255,255,0.5);
}

.price-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: right;
}

.price-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(10,30,61,0.04);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.price-card.featured .price-features li {
    border-color: rgba(255,255,255,0.08);
}

.price-features svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

.price-card.featured .btn-gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
}

/* ===== CTA ===== */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-500) 50%, #1a365d 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(184,134,11,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-form {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
}

.cta-form input {
    flex: 1;
    padding: 0.9rem 1.4rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition);
}

.cta-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.cta-form input:focus {
    border-color: var(--gold-400);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-700);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--gold-300);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--gold-500);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4,13,26,0.92);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: color var(--transition);
}

.lightbox-close:hover {
    color: var(--text-white);
}

.lightbox-close svg {
    width: 36px;
    height: 36px;
}

/* ===== EDITIONS SECTION ===== */
.editions {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.editions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 5rem;
}

.edition-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(10,30,61,0.06);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.edition-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.edition-featured {
    border: 2px solid var(--gold-400);
    box-shadow: var(--shadow-glow);
}

.edition-featured:hover {
    box-shadow: var(--shadow-glow), var(--shadow-card-hover);
}

.edition-recommended {
    position: absolute;
    top: -1px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--text-white);
    padding: 0.4rem 1.8rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.edition-header {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.edition-basic-header {
    background: linear-gradient(135deg, var(--navy-50) 0%, #e8edf5 100%);
}

.edition-pro-header {
    background: linear-gradient(135deg, var(--navy-500) 0%, var(--navy-600) 100%);
    color: var(--text-white);
}

.edition-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.edition-basic-header .edition-icon {
    background: var(--bg-card);
    color: var(--navy-400);
    box-shadow: var(--shadow-card);
}

.edition-pro-header .edition-icon {
    background: rgba(255,208,64,0.15);
    color: var(--gold-300);
}

.edition-icon svg {
    width: 28px;
    height: 28px;
}

.edition-header h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.edition-basic-header h3 {
    color: var(--text-heading);
}

.edition-pro-header h3 {
    color: var(--text-white);
}

.edition-header h3 span {
    color: var(--gold-400);
}

.edition-pro-header h3 span {
    color: var(--gold-300);
}

.edition-tagline {
    font-size: 0.9rem;
    opacity: 0.75;
    margin-bottom: 1rem;
}

.edition-price {
    font-family: 'Tajawal', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.edition-basic-header .edition-price {
    color: var(--navy-500);
}

.edition-pro-header .edition-price {
    color: var(--gold-300);
}

.edition-price-sub {
    font-size: 0.85rem;
    opacity: 0.6;
}

.edition-users-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.edition-users-badge-basic {
    background: rgba(10,30,61,0.08);
    color: var(--navy-400);
}

.edition-users-badge-pro {
    background: rgba(255,208,64,0.15);
    color: var(--gold-300);
}

.edition-users-badge-ent {
    background: rgba(45,212,191,0.15);
    color: var(--teal-400);
}

.edition-body {
    padding: 1.5rem 2rem;
}

.edition-section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 1rem 0 0.5rem;
    border-top: 1px solid rgba(10,30,61,0.05);
    margin-top: 0.5rem;
}

.edition-section-label:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.edition-features {
    list-style: none;
}

.edition-features li {
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.edition-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.edition-features li.yes::before {
    background-color: rgba(5,150,105,0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.edition-features li.yes-pro::before {
    background-color: rgba(184,134,11,0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8860B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.edition-features li.yes-ent::before {
    background-color: rgba(20,184,166,0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314B8A6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.edition-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(10,30,61,0.05);
}

/* Enterprise card */
.edition-enterprise {
    /* grid-column removed - now in 3-column grid */
    border: 2px solid var(--teal-500);
    box-shadow: 0 0 40px rgba(20,184,166,0.08);
}

.edition-ent-header {
    background: linear-gradient(135deg, #0c2a4a 0%, #0a1e3d 100%);
    color: var(--text-white);
}

.edition-ent-header .edition-icon {
    background: rgba(45,212,191,0.15);
    color: var(--teal-400);
}

.edition-ent-header h3 {
    color: var(--text-white);
}

.edition-ent-header h3 span {
    color: var(--teal-400);
}

.edition-ent-header .edition-price {
    color: var(--teal-400);
}

.btn-ent {
    background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(20,184,166,0.25);
}

.btn-ent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(20,184,166,0.35);
}

/* ===== COMPARISON TABLE ===== */
.comparison-wrap {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(10,30,61,0.05);
}

.comparison-title {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 0.7rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(10,30,61,0.04);
}

.comparison-table th {
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    background: var(--bg-section);
    position: sticky;
    top: 0;
}

.comp-feature-col {
    text-align: right;
    width: 35%;
    color: var(--text-heading);
}

.comp-basic-col { color: var(--navy-400); }
.comp-pro-col { color: var(--gold-500); }
.comp-ent-col { color: var(--teal-500); }

.comparison-table td:first-child {
    text-align: right;
    color: var(--text-body);
    font-weight: 500;
}

.comparison-table .pro-val { color: var(--gold-500); font-weight: 600; }
.comparison-table .ent-val { color: var(--teal-500); font-weight: 600; }

.comp-group td {
    background: var(--bg-section);
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
}

.comp-price-final td {
    font-size: 1rem;
    padding: 1rem;
}

.comparison-footer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ===== EDITIONS GRID 3 COLUMNS ===== */
.editions-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.edition-users-badge-gold {
    background: rgba(184,134,11,0.1);
    color: var(--gold-400);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-float {
        display: none;
    }
    
    .features-grid,
    .showcase-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .steps-grid::before {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .editions-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .saudi-context-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .saudi-context-inner.reverse {
        direction: rtl;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 8px 30px rgba(10,30,61,0.1);
        z-index: 999;
    }

    .nav-links.mobile-open {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .features-grid,
    .showcase-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .price-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }

    .editions-grid,
    .editions-grid-3 {
        grid-template-columns: 1fr;
    }

    .edition-enterprise {
        grid-column: auto;
    }

    .comparison-wrap {
        padding: 1.5rem 1rem;
    }
}
