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

:root {
    --primary: #4F46E5;
    --primary-hover: #4338CA;
    --primary-light: #818CF8;
    --accent: #F59E0B;
    --dark: #0F172A;
    --dark-surface: #1E293B;
    --gray: #94A3B8;
    --light: #F8FAFC;
    --white: #FFFFFF;

    /* Glassmorphism */
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

    /* Animation Speeds */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--white);
    background-color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    width: 45px;
    height: 45px;
}

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

.logo span {
    color: var(--white);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

nav a:hover {
    color: var(--white);
}

.hero {
    background: transparent;
    padding: 160px 30px 100px;
    text-align: center;
    color: var(--white);
}

.product {
    background: transparent;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light);
}

.product-logo {
    width: 80px;
    height: 80px;
    border-radius: 15px;
}

.product-info h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.product-info p {
    color: var(--gray);
}

.product-steps {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 40px;
}

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

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

.step-content {
    overflow: hidden;
}

.step-content h4 {
    color: var(--white);
    margin-bottom: 4px;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.step-content p {
    color: var(--gray);
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
    padding-left: 17px;
}

.product-cta {
    text-align: center;
    margin-top: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-features {
    margin: 25px 0;
}

.product-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.product-features .feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.product-features .feature-text h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.product-features .feature-text p {
    color: var(--gray);
    font-size: 0.85rem;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 235, 59, 0.4);
}

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

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

.section {
    padding: 80px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

.services {
    background: transparent;
}

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

.service-card {
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    border-color: var(--primary-light);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--white);
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

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

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

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.about-image {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px;
}

.tech-item {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: transform 0.3s, background 0.3s;
}

.tech-item:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

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

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-check {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    color: var(--primary-dark);
}

.feature-text h4 {
    color: var(--white);
    margin-bottom: 5px;
}

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

.contact {
    background: transparent;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.contact-info>p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(79, 70, 229, 0.2);
    border: 1px solid rgba(79, 70, 229, 0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.5rem;
}

.contact-item p {
    color: var(--gray);
}

.contact-item strong {
    color: var(--white);
}

.contact-form {
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 50px 30px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.7;
}

@media (max-width: 768px) {

    .about,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    nav ul {
        display: none;
    }

    .about-image {
        height: 300px;
    }
}

.apps {
    background: transparent;
}

.app-card {
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

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

.app-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.app-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-info h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.app-info .downloads {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.app-info .rating {
    color: var(--accent);
    font-weight: 600;
}

.app-body {
    padding: 40px;
}

.app-description {
    margin-bottom: 30px;
}

.app-description h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.app-description p {
    color: var(--gray);
    line-height: 1.7;
}

.app-screenshots {
    margin-bottom: 30px;
}

.app-screenshots h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.screenshot-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.screenshot-grid img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.app-features {
    margin-bottom: 30px;
}

.app-features h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.app-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.app-features li {
    color: var(--gray);
    padding-left: 25px;
    position: relative;
}

.app-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.play-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--dark);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.play-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    background: #000;
}

.play-store-btn img {
    width: 30px;
    height: 30px;
}

.play-store-btn .btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.play-store-btn .btn-text small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.play-store-btn .btn-text span {
    font-size: 1.1rem;
}

.app-list {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.app-item {
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.app-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-light);
}

.app-item-header {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 15px;
}

.app-item-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
}

.app-item-info {
    flex: 1;
}

.app-item-info h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.app-item-info p {
    color: var(--gray);
    font-size: 0.85rem;
}

.expand-icon {
    color: var(--primary);
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.app-item.active .expand-icon {
    transform: rotate(180deg);
}

.app-item-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.2);
}

.app-item.active .app-item-details {
    max-height: 500px;
    padding: 20px;
}

.app-item-details .app-description {
    margin-bottom: 15px;
}

.app-item-details .app-description h4,
.app-item-details .app-features h4 {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.app-item-details .app-description p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.app-item-details .app-features {
    margin-bottom: 15px;
}

.app-item-details .app-features ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.app-item-details .app-features li {
    color: var(--gray);
    font-size: 0.85rem;
    padding-left: 15px;
    position: relative;
}

.app-item-details .app-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

@media (max-width: 768px) {
    .app-header {
        flex-direction: column;
        text-align: center;
    }

    .screenshot-grid img {
        width: 160px;
    }
}

.coming-soon {
    background: transparent;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.coming-soon-card {
    background: var(--dark-surface);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

.coming-soon-img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    margin-bottom: 15px;
    object-fit: contain;
}

.coming-soon-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.coming-soon-card p {
    color: var(--gray);
    font-weight: 500;
}

/* --- Glassmorphism & Animations --- */

/* Glass Panel for Hero */
.glass-panel {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--glass-shadow);
}

.glass-card {
    background: var(--dark-surface);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-light);
}

/* Enhancing Hover Effects */
.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--accent);
}

.service-icon {
    transition: var(--transition-fast);
    color: var(--white);
}

.btn-glow {
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(79, 70, 229, 0.8);
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Set dynamic slide up delays by selecting them sequentially in JS or using arbitrary ones we injected via inline style */

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

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

/* Blobs */
.blob {
    position: fixed;
    filter: blur(80px);
    z-index: 0;
    border-radius: 50%;
    animation: drift 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(79, 70, 229, 0.3);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(245, 158, 11, 0.2);
    animation-duration: 25s;
    animation-delay: -5s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -50px) scale(1.1);
    }

    100% {
        transform: translate(-20px, 40px) scale(0.9);
    }
}