/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FBBF24;
    --primary-dark: #F59E0B;
    --primary-light: #FDE68A;
    --black: #000000;
    --black-light: #1f1f1f;
    --secondary-color: #9ca3af;
    --bg-color: #ffffff;
    --bg-light: #fafaf9;
    --text-color: #000000;
    --text-light: #52525b;
    --border-color: #e5e5e5;
    --success-color: #10b981;
    --error-color: #ef4444;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-yellow: 0 10px 25px -5px rgba(251, 191, 36, 0.3);
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-hero {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
/* Header & Navigation */
.header {
    background: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid var(--primary-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    cursor: pointer;
}

.logo-text-light {
    font-weight: 300;
    color: var(--text-color);
    letter-spacing: 1px;
}

.logo-text-bold {
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-cta-button {
    background: var(--primary-color) !important;
    color: var(--black) !important;
    padding: 0.625rem 1.5rem !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 6px -1px rgba(251, 191, 36, 0.3) !important;
    transition: all 0.3s ease !important;
}

.nav-cta-button:hover {
    background: var(--primary-dark) !important;
    color: var(--black) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 15px -3px rgba(251, 191, 36, 0.4) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--black);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: var(--black);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-logo-bg {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 1200px;
    height: 800px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.hero-logo-svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    min-height: 500px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-yellow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 128px;
    height: 128px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);
}

.roadmap {
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: var(--shadow-yellow);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.roadmap-step.final-step .step-number {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.3);
    font-size: 2.5rem;
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border-right: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}



.step-content:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-yellow);
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.step-description strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.step-image-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: 0.75rem;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s;
}

.step-image-placeholder:hover {
    border-color: var(--primary-color);
    background: #fffbeb;
}

.step-image-container {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s;
    overflow: hidden;
    position: relative;
}

.step-image-container-no-crop {
    overflow: visible;
    border-radius: 0;
    padding: 0;
}



.step-image-container:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-yellow);
}

.step-gif,
.step-video {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    display: block;
    margin: 0 auto;
    background: var(--black);
    animation: videoZoom 20s ease-in-out infinite;
    transform-origin: center center;
}

.step-video-no-zoom {
    animation: none;
    border-radius: 0;
}

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

.roadmap-step:first-child .step-video {
    max-width: 1600px;
}

.step-image-placeholder.highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: var(--primary-color);
    border-width: 3px;
}

.placeholder-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.placeholder-text {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.roadmap-connector {
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    margin: 0 auto 2rem;
    margin-right: calc(100% - 80px + 38px);
    border-radius: 2px;
    position: relative;
}

.screenshot-caption {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
}

.usage-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.usage-step-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-right: 4px solid var(--primary-color);
    line-height: 1.8;
}

.usage-step-item strong {
    color: var(--primary-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.dashboards-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.dashboard-item {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ready-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--black);
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 4rem;
    box-shadow: var(--shadow-yellow);
}

.ready-banner h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ready-banner p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Videos Section */
.videos {
    padding: 5rem 0;
    background: var(--bg-light);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.video-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s;
    border: 3px solid transparent;
}

.video-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-yellow);
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
}

.video-caption {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-status {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: none;
    font-weight: 600;
}

.form-status.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
}

.form-status.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

.contact-form button[type="submit"] {
    width: 100%;
}

.contact-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Footer */
.footer {
    background: var(--black);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .container-hero {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--bg-color);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-logo-bg {
        width: 500px;
        height: 500px;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.2;
    }

    .hero-content {
        min-height: auto;
    }

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

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


    .logo {
        font-size: 1.5rem;
    }

    .features {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .how-it-works {
        padding: 3rem 0;
    }

    .roadmap-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }

    .step-content {
        padding: 1.5rem;
        text-align: right;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .step-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .step-video {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .roadmap-step:first-child .step-video {
        width: 100%;
        max-width: 100%;
    }

    .step-image-container {
        width: 100%;
        margin: 0;
    }

    .roadmap-connector {
        margin: 0 auto 1.5rem;
        height: 40px;
        width: 4px;
    }

    .screenshots-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }

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

    .video-item {
        max-width: 100%;
    }

    .videos {
        padding: 3rem 0;
    }

    .contact {
        padding: 3rem 0;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .usage-steps {
        gap: 1rem;
    }

    .usage-step-item {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .dashboards-preview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ready-banner {
        padding: 2rem 1.5rem;
    }

    .ready-banner h3 {
        font-size: 1.5rem;
    }

    .ready-banner p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }

    .hero-logo-bg {
        width: 400px;
        height: 400px;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.15;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .logo {
        font-size: 1.25rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .roadmap-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0 auto;
    }

    .step-content {
        padding: 1rem;
        text-align: right;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 0.95rem;
    }

    .step-video {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .roadmap-step:first-child .step-video {
        width: 100%;
        max-width: 100%;
    }

    .step-image-container {
        width: 100%;
        margin: 0;
    }

    .roadmap-connector {
        margin: 0 auto 1.5rem;
        height: 30px;
        width: 4px;
    }

    .step-image-placeholder {
        padding: 2rem 1rem;
    }

    .placeholder-icon {
        font-size: 3rem;
    }

    .placeholder-text {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.625rem 0.75rem;
        font-size: 0.95rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .usage-step-item {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    .ready-banner {
        padding: 1.5rem 1rem;
    }

    .ready-banner h3 {
        font-size: 1.25rem;
    }

    .ready-banner p {
        font-size: 0.95rem;
    }

    .ready-banner .btn {
        width: 100%;
    }
}
