/* ============================================
   WinWallGame Portfolio — Design System
   ============================================ */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f1a;
    --bg-card: #141420;
    --bg-card-hover: #1a1a2e;
    --bg-glass: rgba(20, 20, 32, 0.7);
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6a6a80;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(255, 255, 255, 0.1);

    --green-primary: #10b981;
    --green-light: #34d399;
    --green-glow: rgba(16, 185, 129, 0.3);
    --green-bg: rgba(16, 185, 129, 0.08);

    --yellow-primary: #f59e0b;
    --yellow-light: #fbbf24;
    --yellow-glow: rgba(245, 158, 11, 0.3);
    --yellow-bg: rgba(245, 158, 11, 0.08);

    --purple-primary: #a855f7;
    --purple-light: #c084fc;
    --purple-glow: rgba(168, 85, 247, 0.3);
    --purple-bg: rgba(168, 85, 247, 0.08);

    --accent-gradient: linear-gradient(135deg, #10b981, #f59e0b, #a855f7);
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

/* ============================================
   Navbar
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link-cta {
    background: linear-gradient(135deg, var(--green-primary), #059669) !important;
    color: #fff !important;
    font-weight: 600;
}

.nav-link-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--green-glow);
}

/* Language Toggle Button */
.lang-toggle-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glow);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Cairo', var(--font-primary);
    margin-left: 6px;
}

.lang-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--green-primary);
    transform: translateY(-1px);
}

/* RTL Global & Layout adjustments */
[dir="rtl"] {
    font-family: 'Cairo', var(--font-primary);
}

[dir="rtl"] .nav-logo {
    direction: ltr;
}

[dir="rtl"] .script-detail-info .btn {
    margin-right: 0;
    margin-left: 12px;
}

[dir="rtl"] .copy-btn {
    margin-left: 0;
    margin-right: 8px;
}

[dir="rtl"] .lang-toggle-btn {
    margin-left: 0;
    margin-right: 6px;
}

[dir="rtl"] .why-item {
    text-align: right;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        transform: translateY(-110%);
        transition: var(--transition);
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, var(--green-glow) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, var(--purple-glow) 0%, transparent 40%),
        radial-gradient(circle at 50% 20%, var(--yellow-glow) 0%, transparent 40%);
    animation: heroGlow 15s ease-in-out infinite alternate;
    opacity: 0.4;
}

@keyframes heroGlow {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-5%, 5%) rotate(10deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--green-light);
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-primary), #059669);
    color: #fff;
    box-shadow: 0 4px 20px var(--green-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--green-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glow);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Script Cards (Home Page)
   ============================================ */
.scripts-section {
    padding: 80px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.scripts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.script-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    /* border-radius: var(--radius-lg); */
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.script-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
}

.script-card.green:hover {
    box-shadow: 0 12px 40px var(--green-glow);
}

.script-card.yellow:hover {
    box-shadow: 0 12px 40px var(--yellow-glow);
}

.script-card.purple:hover {
    box-shadow: 0 12px 40px var(--purple-glow);
}

.script-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    border-bottom: 1px solid var(--border-color);
}

.script-card-body {
    padding: 28px;
}

.script-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.script-card-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.script-card-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.script-card.green .script-card-tag {
    background: var(--green-bg);
    color: var(--green-light);
}

.script-card.yellow .script-card-tag {
    background: var(--yellow-bg);
    color: var(--yellow-light);
}

.script-card.purple .script-card-tag {
    background: var(--purple-bg);
    color: var(--purple-light);
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    padding: 80px 24px;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
}

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

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   Detailed Specifications Section
   ============================================ */
.spec-features-section {
    padding: 80px 24px;
    background: var(--bg-primary);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.spec-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    position: relative;
}

.spec-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.spec-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.spec-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.spec-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
}

.spec-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.spec-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--green-light);
    margin-top: 14px;
}

/* ============================================
   Script Detail Page
   ============================================ */
.script-detail {
    padding: 100px 24px 60px;
    max-width: 1280px;
    margin: 0 auto;
}

.script-detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

@media (max-width: 900px) {
    .script-detail-hero {
        grid-template-columns: 1fr;
    }
}

.script-detail-info h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.script-detail-info p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.8;
}

.script-detail-info .btn {
    margin-right: 12px;
    margin-bottom: 12px;
}

/* Backend Preview */
.backend-preview {
    /* border-radius: var(--radius-lg);  */
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.backend-preview img {
    width: 100%;
}

/* Phone Slider */
.phone-slider-section {
    margin-bottom: 80px;
    text-align: center;
}

.phone-slider-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.phone-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    direction: ltr;
}

.phone-frame {
    width: 280px;
    height: 570px;
    box-sizing: content-box;
    border-radius: 36px;
    border: 4px solid #2a2a3e;
    background: #111;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 0 0 2px rgba(255, 255, 255, 0.05);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #111;
    border-radius: 0 0 18px 18px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-screen img {
    width: 280px;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    color: var(--text-primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--bg-card-hover);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--green-primary);
    transform: scale(1.3);
}

/* Demo Credentials */
.demo-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 80px;
}

.demo-section h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .demo-grid {
        grid-template-columns: 1fr;
    }
}

.demo-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
}

.demo-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-card .demo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.demo-card .demo-row:last-child {
    border-bottom: none;
}

.demo-card .demo-label {
    color: var(--text-muted);
}

.demo-card .demo-value {
    color: var(--text-primary);
    font-family: monospace;
    word-break: break-all;
}

.copy-btn {
    background: none;
    border: 1px solid var(--border-glow);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.75rem;
    transition: var(--transition);
    margin-left: 8px;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.demo-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: var(--transition);
    text-decoration: none;
}

.demo-open-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Motivational CTA */
.cta-section {
    text-align: center;
    padding: 80px 24px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--green-glow), transparent 70%);
    opacity: 0.3;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* ============================================
   Purchase Page
   ============================================ */
.purchase-page {
    padding: 100px 24px 60px;
    max-width: 1280px;
    margin: 0 auto;
}

.purchase-page h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

.purchase-page>p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-size: 1.1rem;
}

/* ============================================
   Pricing Packages Section
   ============================================ */
.pricing-section {
    margin: 40px 0 60px;
}

.pricing-header-text {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.pricing-header-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        padding: 24px 18px;
    }
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    border-color: var(--yellow-light);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.2);
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.06) 0%, var(--bg-card) 100%);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-light));
    color: #000;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[dir="rtl"] .pricing-badge {
    right: auto;
    left: 16px;
}

.pricing-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.pricing-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pricing-card.featured .pricing-title {
    color: var(--yellow-light);
}

.pricing-price-box {
    margin: 16px 0 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.pricing-currency {
    font-size: 1.4rem;
    color: var(--green-light);
    margin-right: 2px;
}

[dir="rtl"] .pricing-currency {
    margin-right: 0;
    margin-left: 2px;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.pricing-features-list li {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features-list li.disabled {
    color: var(--text-muted);
    opacity: 0.6;
}

.pricing-features-list li.note {
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: 1px dashed var(--border-color);
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.pricing-features-list .icon-check {
    color: var(--green-light);
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-features-list .icon-cross {
    color: #ef4444;
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-features-list .icon-info {
    color: var(--yellow-light);
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-action-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
}

.payment-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    margin: 0 auto 32px;
    max-width: 900px;
}

.payment-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
}

.payment-detail .label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-detail .value {
    font-family: monospace;
    font-size: 0.95rem;
    color: var(--green-light);
    word-break: break-all;
}

.payment-note {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 20px;
}

.payment-note p {
    color: var(--yellow-light);
    font-size: 0.9rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 16px 36px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

/* ============================================
   Policy Page
   ============================================ */
.policy-page {
    padding: 100px 24px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.policy-page h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

.policy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 24px;
}

.policy-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--green-light);
}

.policy-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 10px;
}

.policy-card p,
.policy-card li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-card ul {
    padding-left: 20px;
}

.policy-card li {
    margin-bottom: 8px;
}

.policy-warning {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 16px;
}

.policy-warning p {
    color: #fca5a5;
    font-weight: 500;
}

/* ============================================
   Footer
   ============================================ */
#footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 24px 20px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.footer-logo h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 6px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--green-light);
    transform: translateX(4px);
}

.footer-contact {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--green-light);
}

/* ============================================
   Utility & Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

.text-green {
    color: var(--green-light);
}

.text-yellow {
    color: var(--yellow-light);
}

.text-purple {
    color: var(--purple-light);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: #2a2a3e;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3a3a5e;
}

/* ============================================
   About Developer Page
   ============================================ */
.about-page {
    padding: 100px 24px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .about-hero {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

.about-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.about-avatar-glow {
    position: absolute;
    inset: -10px;
    background: var(--accent-gradient);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.5;
    animation: pulse 3s infinite alternate;
}

.about-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--bg-secondary);
    border: 3px solid var(--border-glow);
    padding: 12px;
}

.about-title-box h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin: 12px 0;
    line-height: 1.2;
}

.about-tagline {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 30px;
}

.about-card h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.bio-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.bio-card p:last-child {
    margin-bottom: 0;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
}

.service-card.green-border:hover { box-shadow: 0 8px 30px var(--green-glow); }
.service-card.yellow-border:hover { box-shadow: 0 8px 30px var(--yellow-glow); }
.service-card.purple-border:hover { box-shadow: 0 8px 30px var(--purple-glow); }

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.skill-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.skill-chips span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.why-item p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}