/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.icon-image {
    height: clamp(35px, 5vw, 50px);
    width: auto;
}

.nav-logo h1 {
    color: #22c55e;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.cta-button {
    background: #22c55e;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #16a34a;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 60px 0 80px;
    margin-top: 70px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-logo {
    text-align: center;
    margin-bottom: 20px;
    margin-top: -20px;
}

.hero-logo-image {
    height: clamp(350px, 20vw, 900px);
    width: auto;
    opacity: 0.95;
    max-width: 90vw;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #f1f5f9;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: white;
    color: #22c55e;
}

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

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

.btn-secondary:hover {
    background: white;
    color: #22c55e;
}

/* Phone Mockup */
.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1f2937;
    border-radius: 30px;
    padding: 20px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.screen {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    padding: 30px 20px;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.coupon-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #22c55e;
}

.coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.store-name {
    font-weight: 600;
    color: #374151;
}

.discount {
    background: #22c55e;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.coupon-details p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1f2937;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #22c55e;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: #1f2937;
    color: white;
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.download p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn {
    position: relative;
    display: inline-block;
    cursor: not-allowed;
}

.download-btn.coming-soon {
    opacity: 0.6;
}

.download-btn img {
    height: 60px;
    transition: transform 0.3s ease;
    filter: grayscale(50%);
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.coming-soon-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Delete Account Page */
.delete-account-page {
    padding: 120px 0 80px;
    margin-top: 70px;
    background: #f8fafc;
    min-height: calc(100vh - 70px);
}

.delete-account-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.delete-account-content h1 {
    color: #1f2937;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.subtitle {
    color: #6b7280;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
}

.deletion-info,
.deletion-process,
.important-notes,
.contact-support {
    margin-bottom: 40px;
}

.deletion-info h2,
.deletion-process h2,
.important-notes h2,
.contact-support h2 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #22c55e;
    padding-bottom: 8px;
}

.deletion-info ul {
    list-style: none;
    padding: 0;
}

.deletion-info li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #374151;
}

.deletion-info li:before {
    content: "•";
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background: #22c55e;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

.note-box {
    background: #fef3cd;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
}

.note-box p {
    margin-bottom: 8px;
    color: #92400e;
}

.note-box p:last-child {
    margin-bottom: 0;
}

.contact-info {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 8px;
    color: #374151;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Footer */
footer {
    background: #111827;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #f9fafb;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #22c55e;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

    .nav-links {
        gap: 15px;
    }

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

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

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

    .delete-account-content {
        padding: 40px 30px;
        margin: 0 20px;
    }

    .delete-account-content h1 {
        font-size: 2rem;
    }

    .process-steps {
        gap: 20px;
    }

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

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

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

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

    .nav-logo {
        gap: 8px;
    }

    .icon-image {
        height: clamp(28px, 4vw, 40px);
    }

    .nav-logo h1 {
        font-size: 1.3rem;
    }

    .hero-logo-image {
        # height: 80px;
    }

    .delete-account-content {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .delete-account-content h1 {
        font-size: 1.8rem;
    }

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