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

body {
    font-family: 'Rubik', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
}

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

/* Header */
header {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6e00;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6e00;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #ff6e00;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ff6b35" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6e00, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6e00, #ff8f65);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.phone-wrapper {
  display: flex;
  flex-direction: column; /* vertical on mobile */
  gap: 20px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .phone-wrapper {
    flex-direction: row; /* horizontal on desktop */
  }
}


.phone-mockup {
    margin-top: 60px;
    animation: float 3s ease-in-out infinite;
}

.phone {
    width: 250px;
    height: 500px;
    background: linear-gradient(135deg, #2d2d44, #1a1a2e);
    border-radius: 30px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.phone::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #555;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6e00, #ffa726);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
}

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

/* Features Section */
.features {
    padding: 100px 0;
    background: #0f172a;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0B6623; /* main text color */
    text-shadow:
      -1px -1px 0 #fff,
       1px -1px 0 #fff,
      -1px  1px 0 #fff,
       1px  1px 0 #fff;
}

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

.feature-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6e00, #ffa726);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff6e00;
}

/* Steps Section */
.steps {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.steps-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ff6e00;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateX(10px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6e00, #ffa726);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
}

.privacy {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.privacy-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.privacy-intro p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.privacy-sections {
    margin-bottom: 3rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.privacy-section:hover {
    background: rgba(255, 107, 53, 0.08);
    transform: translateX(5px);
}

.privacy-section h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
}

.privacy-section li::marker {
    color: #ff6b35;
}

.privacy-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
}

.privacy-footer p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.privacy-footer strong {
    color: #ff6b35;
}

.privacy-footer em {
    color: #ffa726;
    font-style: italic;
}

.terms {
    padding: 100px 0;
    background: #0f172a;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.terms-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
    text-align: center;
}

.terms-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    font-weight: 500;
}

.terms-sections {
    margin-bottom: 3rem;
}

.terms-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border-left: 4px solid #ffa726;
    transition: all 0.3s ease;
}

.terms-section:hover {
    background: rgba(255, 167, 38, 0.08);
    transform: translateX(5px);
}

.terms-section h3 {
    color: #ffa726;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.terms-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.terms-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 167, 38, 0.2);
}

.terms-footer p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.terms-footer strong {
    color: #ffa726;
}

.terms-footer em {
    color: #ffcc02;
    font-style: italic;
}

.support {
            padding: 100px 0;
            background: linear-gradient(135deg, #16213e, #1a1a2e);
        }

        .support-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .support-intro {
            text-align: center;
            margin-bottom: 4rem;
            padding: 3rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 107, 53, 0.1);
        }

        .support-intro h3 {
            color: #ff6b35;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .support-intro p {
            font-size: 1.1rem;
            line-height: 1.7;
            opacity: 0.9;
        }

        .support-category {
            margin-bottom: 3rem;
            background: rgba(255, 255, 255, 0.03);
            padding: 2.5rem;
            border-radius: 20px;
            border-left: 4px solid #4ade80;
            transition: all 0.3s ease;
        }

        .support-category:hover {
            background: rgba(74, 222, 128, 0.08);
            transform: translateY(-5px);
        }

        .support-category h3 {
            color: #4ade80;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .support-issues {
            display: grid;
            gap: 1.5rem;
        }

        .support-issue {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .support-issue:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(5px);
        }

        .support-issue h4 {
            color: #ffa726;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .support-issue ul {
            margin: 0;
            padding-left: 1.5rem;
        }

        .support-issue li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .support-issue li::marker {
            color: #4ade80;
        }

        .contact-info p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .contact-details {
            display: grid;
            gap: 1rem;
        }

        .contact-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem 1.5rem;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-item strong {
            color: #4ade80;
            min-width: 120px;
        }

        .contact-item a {
            color: #ff6b35;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #ffa726;
        }

        .support-faq {
            display: grid;
            gap: 1rem;
        }

        .faq-item-support {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .faq-item-support:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .faq-question-support {
            margin-bottom: 0.5rem;
        }

        .faq-question-support strong {
            color: #4ade80;
            font-size: 1.1rem;
        }

        .faq-answer-support p {
            margin: 0;
            line-height: 1.6;
            opacity: 0.9;
        }

        .learning-resources p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .video-link {
            margin-top: 2rem;
            text-align: center;
        }

        .tutorial-button {
            display: inline-block;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
        }

        .tutorial-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(74, 222, 128, 0.4);
        }

        .version-info {
            display: grid;
            gap: 1rem;
        }

        .version-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem 1.5rem;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .version-item strong {
            color: #4ade80;
            min-width: 140px;
        }

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #0f172a;
}

.faq-item {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.1);
}

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

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ff6e00;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Footer */
footer {
    background: #0f172a;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

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

.footer-section h3 {
    color: #ff6e00;
    margin-bottom: 1rem;
}

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

.footer-section a:hover {
    color: #ff6e00;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #0B6623;
        position: absolute;
        top: 80px;
        right: 0;
        width: 90%;
        padding: 1rem;
    }

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

    .mobile-menu {
        display: block;
        cursor: pointer;
    }

    .mobile-menu span {
        display: block;
        height: 3px;
        width: 25px;
        background-color: white;
        margin: 5px 0;
    }

    /* .mobile-menu {
        display: flex;
    } */

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

    .phone {
        width: 200px;
        height: 400px;
    }

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

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

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

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

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

.floating-download {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #ff6e00;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    font-size: 16px;
    z-index: 99999;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease-in-out;
}

.floating-download img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.floating-download:hover {
    background-color: #218838;
}

.floating-download-ios {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #0B6623;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    font-size: 16px;
    z-index: 99999;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease-in-out;
    font-family: Arial, sans-serif;
}

.floating-download-ios img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.floating-download-ios:hover {
    background-color: #ff6e00;
}