/* ============================================
   CSS Variables
   ============================================ */
:root {
    --primary: #3864B2;
    --primary-light: #6989C2;
    --primary-soft: #B6C9EC;
    --primary-pale: #E8EFF8;
    --accent: #FF8800;
    --accent-light: #FFB84D;
    --teal: #1B718C;
    --green: #468C1B;
    --brown: #B88C5A;
    --red: #AC4040;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --light-bg: #F3F6FB;
    --light-gray: #E5E7EB;
    --text-dark: #1F2937;
    --text-medium: #4B5563;
    --text-light: #6B7280;
    --shadow-sm: 0 2px 8px rgba(56, 100, 178, 0.08);
    --shadow-md: 0 4px 20px rgba(56, 100, 178, 0.12);
    --shadow-lg: 0 8px 40px rgba(56, 100, 178, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans Arabic', -apple-system, BlinkMacSystemFont, sans-serif;
    direction: rtl;
    text-align: right;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

* {
    font-family: 'Noto Sans Arabic', -apple-system, BlinkMacSystemFont, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-pale);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(56, 100, 178, 0.3);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(56, 100, 178, 0.35);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 136, 0, 0.3);
}

.btn-accent:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-dark {
    background: var(--text-dark);
    color: var(--white);
}

.btn-dark:hover {
    background: #374151;
    transform: translateY(-2px);
}

/* ============================================
   Header
   ============================================ */
.header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-pale) 50%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 136, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 100, 178, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--primary-soft);
}

.hero-badge span {
    color: var(--accent);
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.25;
}

.hero-content h1 .highlight {
    color: var(--primary);
}

.hero-content h1 .accent {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.store-buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.store-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.store-btn img {
    height: 50px;
    width: auto;
    display: block;
}

.free-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 136, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s ease-in-out infinite;
}

.free-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

.free-badge-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.free-badge-sparkle {
    font-size: 1.2rem;
    animation: sparkle 1.5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 136, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 30px rgba(255, 136, 0, 0.5);
        transform: scale(1.05);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 0.8;
    }
}

.free-badge:hover {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(255, 136, 0, 0.5);
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
}

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

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-phone {
    position: relative;
    width: 300px;
}

.hero-phone-frame {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-phone-screen {
    border-radius: 32px;
    overflow: hidden;
    background: var(--white);
}

.hero-phone-screen img {
    width: 100%;
    display: block;
}

.hero-floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-floating-badge.badge-1 {
    top: 10%;
    right: -40px;
    color: var(--green);
}

.hero-floating-badge.badge-2 {
    bottom: 20%;
    left: -30px;
    color: var(--accent);
}

.hero-floating-badge .badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-floating-badge.badge-1 .badge-icon {
    background: rgba(70, 140, 27, 0.15);
}

.hero-floating-badge.badge-2 .badge-icon {
    background: rgba(255, 136, 0, 0.15);
}

/* ============================================
   Why Learn English Section
   ============================================ */
.why-english {
    background: var(--off-white);
}

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

.why-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.why-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 48px rgba(56, 100, 178, 0.25);
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-pale) 100%);
}

.why-card.animate-in {
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.why-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

/* ============================================
   How Excelingo Helps Section
   ============================================ */
.how-section {
    background: var(--white);
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.how-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.4;
}

.how-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 32px;
}

.how-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.how-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.how-feature:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 48px rgba(56, 100, 178, 0.25);
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-pale) 100%);
}

.how-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.how-feature-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.how-feature-text p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.6;
}

.how-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.how-screenshot {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.how-screenshot:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.how-screenshot:nth-child(2) {
    margin-top: 40px;
}

.how-screenshot:nth-child(3) {
    margin-top: 20px;
}

.how-screenshot:nth-child(4) {
    margin-top: 40px;
}

.how-screenshot img {
    width: 100%;
    display: block;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    background: var(--white);
}

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

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

/* ============================================
   App Screenshots Section
   ============================================ */
.screenshots {
    background: var(--off-white);
    overflow: hidden;
    position: relative;
}

.screenshots-container {
    position: relative;
    padding: 0 60px;
}

.screenshots-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
}

.screenshots-wrapper::-webkit-scrollbar {
    display: none;
}

.swipe-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    pointer-events: none;
    animation: pulse 2s ease-in-out infinite;
}

.swipe-indicator.left {
    right: 10px;
}

.swipe-indicator.right {
    left: 10px;
}

.swipe-indicator svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
    }
}

.swipe-hint {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.swipe-hint svg {
    width: 16px;
    height: 16px;
    animation: swipe-hint 1.5s ease-in-out infinite;
}

@keyframes swipe-hint {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

.screenshot-item {
    flex: 0 0 220px;
    scroll-snap-align: start;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.screenshot-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.screenshot-item img {
    width: 100%;
    display: block;
}

/* ============================================
   Stats Section
   ============================================ */
/* Progress Prediction Section */
.progress-prediction {
    background: var(--off-white);
}

.progress-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.progress-chart-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.progress-chart-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
}

.progress-chart-card canvas {
    max-height: 300px;
}

.progress-chart-card:first-child {
    display: flex;
    flex-direction: column;
}

.progress-chart-card:first-child canvas {
    height: 450px !important;
    width: 100% !important;
}



.pie-chart-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.pie-chart-wrapper canvas {
    max-height: 350px;
}

.chart-note {
    text-align: center;
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-top: 16px;
    font-style: italic;
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.progress-stat-item {
    text-align: center;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.progress-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.progress-stat-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
}

.stats {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 24px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    background: var(--light-bg);
}

.testimonials-container {
    position: relative;
    padding: 0 60px;
}

.testimonials-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
}

.testimonials-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-stars .star-empty {
    color: var(--light-gray);
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: right;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question .faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ============================================
   Team Section
   ============================================ */
.team {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 100, 178, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.team::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 136, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.team .container {
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-pale) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(56, 100, 178, 0.3);
    border-color: var(--primary);
}

.team-photo-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-pale);
    box-shadow: 0 8px 24px rgba(56, 100, 178, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-photo-wrapper {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(56, 100, 178, 0.4);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.1);
}

.team-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(56, 100, 178, 0.9) 0%, rgba(255, 136, 0, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.team-card:hover .team-photo-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 12px;
}

.team-social-link {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.team-social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.team-info {
    position: relative;
    z-index: 1;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.team-card:hover .team-name {
    color: var(--primary);
}

.team-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.team-role::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s ease;
}

.team-card:hover .team-role::after {
    width: 100%;
}

.team-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-top: 12px;
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 40px;
}

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

.footer-brand {
    text-align: center;
}

.footer-brand .logo {
    justify-content: center;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0;
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.social-facebook:hover {
    background: #1877F2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto 24px;
    }

    .hero-buttons,
    .store-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-phone {
        width: 260px;
    }

    .hero-floating-badge {
        display: none;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .how-visual {
        order: -1;
    }

    .features-grid,
    .testimonials-container {
        padding: 0 40px;
    }

    .testimonial-card {
        flex: 0 0 320px;
    }

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

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

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

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

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

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-photo-wrapper {
        width: 220px;
        height: 220px;
    }

    .team-card {
        padding: 40px 32px;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        position: relative;
    }

    .mobile-menu-btn.active {
        color: var(--primary);
    }

    .header-cta {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .store-buttons-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-photo-wrapper {
        width: 220px;
        height: 220px;
    }

    .team-card {
        padding: 40px 24px;
        max-width: 500px;
        margin: 0 auto;
    }

    .screenshots-container {
        padding: 0 20px;
    }

    .swipe-indicator {
        display: none;
    }

    .section {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 120px 0 70px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid,
    .testimonials-container {
        padding: 0 20px;
    }

    .testimonial-card {
        flex: 0 0 280px;
    }

    .swipe-indicator {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .stat-number {
        font-size: 2.2rem;
    }

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

    .how-visual {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .how-screenshot:nth-child(2),
    .how-screenshot:nth-child(3),
    .how-screenshot:nth-child(4) {
        margin-top: 0;
    }

    #what-makes-us-different > div > div > div {
        grid-template-columns: 1fr;
    }

    #what-makes-us-different > div > div > div > div {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .how-content h3 {
        font-size: 1.6rem;
    }

    .store-buttons-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .free-badge {
        padding: 10px 20px;
    }

    .free-badge-text {
        font-size: 1rem;
    }

    .progress-grid {
        gap: 20px;
    }

    .progress-chart-card {
        padding: 20px;
    }

    .progress-chart-card h3 {
        font-size: 1.2rem;
    }

    .progress-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .progress-stat-number {
        font-size: 1.8rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-photo-wrapper {
        width: 220px;
        height: 220px;
    }

    .team-card {
        padding: 40px 32px;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-in {
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Enhanced Hover Effects */
.what-makes-us-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.what-makes-us-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(56, 100, 178, 0.3);
}

.progress-stat-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(56, 100, 178, 0.2);
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-pale) 100%);
}

.progress-stat-item:hover .progress-stat-number {
    color: var(--primary);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.how-feature.animate-in {
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.screenshot-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(56, 100, 178, 0.25);
    border-color: var(--primary);
}

.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(56, 100, 178, 0.3);
}

.section-header {
    animation: fadeIn 1s ease-out;
}

.section-badge {
    animation: scaleIn 0.6s ease-out 0.2s both;
}

/* ============================================
   FAQ Section (Enhanced)
   ============================================ */
.faq {
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-pale) 50%, var(--light-bg) 100%);
    padding-top: 140px;
    position: relative;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-soft);
}

.faq-question h3 {
    margin: 0;
}

.faq-question .faq-icon {
    flex-shrink: 0;
    margin-right: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-answer p:last-child {
    padding-bottom: 24px;
}

.faq-answer ul, .faq-answer ol {
    margin: 16px 0;
    padding-right: 24px;
}

.faq-answer ul li, .faq-answer ol li {
    margin-bottom: 12px;
    padding-right: 8px;
    position: relative;
    line-height: 1.8;
    color: var(--text-medium);
}

.faq-answer ul li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    right: -16px;
}

.faq-answer ol li {
    list-style: decimal;
    list-style-position: inside;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

.faq-answer .highlight {
    color: var(--primary);
    font-weight: 600;
}

.faq-answer .note {
    background: var(--primary-pale);
    padding: 16px;
    border-radius: var(--radius-md);
    border-right: 3px solid var(--primary);
    margin: 16px 0;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.contact-box {
    background: var(--light-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 60px;
}

.contact-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.contact-box p {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.contact-box a {
    color: var(--primary);
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* ============================================
   Terms Section
   ============================================ */
.terms-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-pale) 50%, var(--light-bg) 100%);
    padding-top: 140px;
    padding-bottom: 100px;
    position: relative;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-intro {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    border-right: 4px solid var(--primary);
}

.terms-intro p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.9;
}

.terms-intro strong {
    color: var(--text-dark);
    font-weight: 700;
}

.terms-section-item {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.terms-section-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-soft);
}

.terms-section-item h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.terms-section-item p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 16px;
}

.terms-section-item p:last-child {
    margin-bottom: 0;
}

.terms-section-item ul {
    margin: 16px 0;
    padding-right: 24px;
}

.terms-section-item ul li {
    margin-bottom: 12px;
    padding-right: 8px;
    position: relative;
    line-height: 1.9;
    color: var(--text-medium);
    font-size: 1rem;
}

.terms-section-item ul li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    right: -16px;
    font-size: 1.2rem;
}

.terms-section-item a {
    color: var(--primary);
    font-weight: 600;
}

.terms-section-item a:hover {
    text-decoration: underline;
}

/* ============================================
   What Makes Us Different Section
   ============================================ */
#what-makes-us-different {
    background: var(--light-bg);
}

.what-makes-us-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.what-makes-us-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.what-makes-us-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary);
}

.what-makes-us-card.primary {
    border-top-color: var(--primary);
}

.what-makes-us-card.green {
    border-top-color: var(--green);
}

.what-makes-us-card.accent {
    border-top-color: var(--accent);
}

.what-makes-us-card.teal {
    border-top-color: var(--teal);
}

.what-makes-us-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.what-makes-us-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.what-makes-us-card.primary h3 {
    color: var(--primary);
}

.what-makes-us-card.green h3 {
    color: var(--green);
}

.what-makes-us-card.accent h3 {
    color: var(--accent);
}

.what-makes-us-card.teal h3 {
    color: var(--teal);
}

.what-makes-us-card p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ============================================
   Content Pages (Privacy, FAQ, Terms)
   ============================================ */
.content-page {
    padding-top: 100px;
    min-height: 100vh;
}

.content-page .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.content-page .content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 30px;
}

.content-page .intro {
    background: var(--primary-pale);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    border-right: 4px solid var(--primary);
}

.content-page .intro p {
    font-size: 0.98em;
    text-align: justify;
    color: var(--text-medium);
}

.content-page .section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-gray);
}

.content-page .section:last-child {
    border-bottom: none;
}

.content-page .section h2 {
    color: var(--primary);
    font-size: 1.5em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-page .section-number {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    font-weight: bold;
}

.content-page .section p {
    margin-bottom: 12px;
    text-align: justify;
    color: var(--text-medium);
}

.content-page .section ul {
    margin: 15px 0;
    padding-right: 25px;
}

.content-page .section li {
    margin-bottom: 10px;
    position: relative;
    list-style: none;
}

.content-page .section li::before {
    content: "◆";
    color: var(--accent);
    font-weight: bold;
    margin-left: 10px;
}

.content-page .faq-category {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-gray);
}

.content-page .faq-category:last-child {
    border-bottom: none;
}

.content-page .faq-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.content-page .category-number {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    font-weight: bold;
}

.content-page .faq-category-title {
    color: var(--primary);
    font-size: 1.5em;
    font-weight: 600;
}

.content-page .contact-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: 30px;
}

.content-page .contact-box h3 {
    margin-bottom: 10px;
    font-size: 1.3em;
}

.content-page .contact-box a {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

.content-page .links-bar {
    background: var(--light-bg);
    padding: 16px 30px;
    text-align: center;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.content-page .links-bar a {
    color: var(--primary);
    text-decoration: none;
    margin: 0 10px;
    font-weight: 600;
    font-size: 0.95em;
}

.content-page .links-bar a:hover {
    text-decoration: underline;
}

/* What Makes Us Different Section Styles */
.what-makes-us-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.what-makes-us-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary);
}

.what-makes-us-card.primary {
    border-top-color: var(--primary);
}

.what-makes-us-card.green {
    border-top-color: var(--green);
}

.what-makes-us-card.accent {
    border-top-color: var(--accent);
}

.what-makes-us-card.teal {
    border-top-color: var(--teal);
}

.what-makes-us-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.what-makes-us-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.what-makes-us-card.primary h3 {
    color: var(--primary);
}

.what-makes-us-card.green h3 {
    color: var(--green);
}

.what-makes-us-card.accent h3 {
    color: var(--accent);
}

.what-makes-us-card.teal h3 {
    color: var(--teal);
}

.what-makes-us-card p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .content-page {
        padding-top: 80px;
    }
    
    .content-page .content {
        padding: 25px 20px;
    }
    
    .what-makes-us-grid,
    .what-makes-us-row {
        grid-template-columns: 1fr;
    }
    
    .content-page .links-bar a {
        display: block;
        margin: 10px 0;
    }

    .faq {
        padding-top: 120px;
    }

    .faq-category-title {
        font-size: 1.5rem;
    }

    .contact-box {
        padding: 32px 24px;
    }

    .terms-section {
        padding-top: 120px;
        padding-bottom: 70px;
    }

    .terms-section-item {
        padding: 32px 24px;
    }

    .terms-section-item h2 {
        font-size: 1.4rem;
    }

    .terms-intro {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .faq-category-title {
        font-size: 1.3rem;
    }

    .terms-section-item h2 {
        font-size: 1.2rem;
    }

    .section-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

/* ============================================
   Coming Soon Modal
   ============================================ */
.coming-soon-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.coming-soon-modal.active {
    opacity: 1;
    visibility: visible;
}

.coming-soon-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.coming-soon-content {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 80px rgba(56, 100, 178, 0.25), 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(0.8) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.coming-soon-modal.active .coming-soon-content {
    transform: scale(1) translateY(0);
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #3DDC84 0%, #2BC76A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(61, 220, 132, 0.35);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.coming-soon-icon svg {
    width: 60px;
    height: 60px;
}

.coming-soon-icon svg path,
.coming-soon-icon svg circle {
    fill: white;
}

.coming-soon-icon svg path[stroke] {
    stroke: rgba(255, 255, 255, 0.6);
    fill: none;
}

.coming-soon-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'Noto Sans Arabic', -apple-system, BlinkMacSystemFont, sans-serif;
}

.coming-soon-text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 32px;
    font-family: 'Noto Sans Arabic', -apple-system, BlinkMacSystemFont, sans-serif;
}

.coming-soon-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Noto Sans Arabic', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(56, 100, 178, 0.3);
}

.coming-soon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(56, 100, 178, 0.4);
}

.coming-soon-btn:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .coming-soon-content {
        padding: 36px 24px;
    }
    
    .coming-soon-icon {
        width: 100px;
        height: 100px;
    }
    
    .coming-soon-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .coming-soon-title {
        font-size: 1.5rem;
    }
    
    .coming-soon-text {
        font-size: 0.95rem;
    }
    
    .coming-soon-btn {
        padding: 14px 36px;
        font-size: 1rem;
    }
}
