@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&display=swap');

:root {
    --color-primary: #00d4aa;
    --color-primary-dark: #00b890;
    --color-secondary: #1a1f2e;
    --color-accent: #ff6b6b;
    --color-success: #4caf50;
    --color-warning: #ff9800;
    --color-bg: #0f1419;
    --color-bg-light: #1a1f2e;
    --color-text: #ffffff;
    --color-text-muted: #a8b2d1;
    --color-border: rgba(168, 178, 209, 0.1);
}

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

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    background: rgba(26, 31, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

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

.navbar-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
}

.navbar-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1rem;
}

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

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

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--color-bg-light);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .navbar-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
    padding: 100px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
}

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

.breadcrumb span {
    color: var(--color-text-muted);
}

/* Content Section */
.content-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.content-section h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-text);
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.content-section ul {
    margin-bottom: 20px;
    padding-right: 20px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: var(--color-bg-light);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #00ffcc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.contact-card h3 {
    margin-bottom: 10px;
    color: var(--color-text);
}

.contact-card p {
    color: var(--color-text-muted);
}

.contact-card a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    background: var(--color-bg-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    margin-top: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--color-bg-light);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #00ffcc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

/* Article Styles */
.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
}

.article-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 30px 0;
}

.article-toc {
    background: var(--color-bg-light);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    margin-bottom: 40px;
}

.article-toc h3 {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.article-toc ul {
    list-style: none;
    padding: 0;
}

.article-toc li {
    margin-bottom: 10px;
}

.article-toc a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-toc a:hover {
    color: var(--color-primary);
}

/* Privacy Section */
.privacy-section {
    background: var(--color-bg-light);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    margin-bottom: 30px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, #00ffcc 100%);
    color: var(--color-secondary);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    animation: slideDown 0.8s ease;
}

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

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

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideDown 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: slideDown 0.8s ease 0.4s both;
}

/* CTA Group */
.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: slideDown 0.8s ease 0.6s both;
}

/* Buttons */
.btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #00ffcc 100%);
    color: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.4);
}

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

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
    transform: translateY(-3px);
}

/* Price Tag */
.price-tag {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 20px 40px;
    border-radius: 16px;
    border: 2px solid var(--color-primary);
    animation: slideDown 0.8s ease 0.8s both;
}

.price-original {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--color-text-muted);
}

.price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.price-currency {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* Section Styles */
.section {
    padding: 80px 20px;
}

.section-dark {
    background: var(--color-bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--color-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #00ffcc 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.15);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #00ffcc 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text);
}

.feature-desc {
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Problem Solution */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.problem-box,
.solution-box {
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.problem-box {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.solution-box {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 212, 170, 0.05) 100%);
    border: 2px solid var(--color-primary);
}

.box-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.problem-box .box-title {
    color: var(--color-accent);
}

.solution-box .box-title {
    color: var(--color-primary);
}

.box-list {
    list-style: none;
}

.box-list li {
    padding: 15px 0;
    padding-right: 35px;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.box-list li:last-child {
    border-bottom: none;
}

.box-list li::before {
    content: '✖';
    position: absolute;
    right: 0;
    top: 15px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.problem-box .box-list li::before {
    color: var(--color-accent);
}

.solution-box .box-list li::before {
    content: '✓';
    color: var(--color-primary);
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.spec-item {
    background: var(--color-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    text-align: center;
}

.spec-label {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Visual Panel */
.visual-panel {
    background: var(--color-bg);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--color-primary);
    margin-top: 40px;
}

.panel-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-primary);
    text-align: center;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.panel-item {
    background: var(--color-bg-light);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.panel-item-label {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.panel-item-value {
    color: var(--color-text);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Testimonial */
.testimonial {
    background: var(--color-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    margin-top: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #00ffcc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    color: var(--color-text);
}

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

/* Guarantee Box */
.guarantee-box {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 212, 170, 0.05) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px solid var(--color-primary);
    text-align: center;
    margin-top: 40px;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #00ffcc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.guarantee-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.guarantee-text {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ */
.faq {
    margin-top: 40px;
}

.faq-item {
    background: var(--color-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-primary);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-answer {
    color: var(--color-text-muted);
    margin-top: 15px;
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

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

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--color-primary) 0%, #00ffcc 100%);
    padding: 80px 20px;
    text-align: center;
    border-radius: 30px;
    margin-top: 40px;
}

.cta-final h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 1.3rem;
    color: var(--color-secondary);
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-final .btn {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.cta-final .btn:hover {
    background: var(--color-bg);
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background: var(--color-bg-light);
    padding: 40px 20px;
    text-align: center;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.stat-label {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* Utility Classes */
.highlight {
    color: var(--color-primary);
    font-weight: 700;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 10px;
}

.badge-success {
    background: rgba(76, 175, 80, 0.2);
    color: var(--color-success);
    border: 1px solid var(--color-success);
}

.badge-warning {
    background: rgba(255, 152, 0, 0.2);
    color: var(--color-warning);
    border: 1px solid var(--color-warning);
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    margin-top: 40px;
    border: 2px solid var(--color-primary);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .problem-solution {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-final h2 {
        font-size: 2rem;
    }

    .price-tag {
        flex-direction: column;
        gap: 10px;
    }
}