/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.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;
    font-size: 24px;
    font-weight: 700;
    color: #20B2AA;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 28px;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    border-radius: 6px;
}

.nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    z-index: 999;
    gap: 20px;
}

.nav-menu.active {
    left: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 20px;
    display: block;
}

.nav-link:hover {
    color: #20B2AA;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #20B2AA;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 0 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    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="https://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: #ffd700;
    color: #333;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.download-btn-disabled {
    position: relative;
    cursor: not-allowed;
    pointer-events: none;
}

.coming-soon-text {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: white;
    white-space: nowrap;
}

.btn i {
    margin-right: 10px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.hero-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.app-preview {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.app-header h3 {
    color: #20B2AA;
    font-size: 18px;
    font-weight: 700;
}

.app-stats {
    text-align: right;
}

.daily-total {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.daily-label {
    font-size: 12px;
    color: #666;
}

.expense-list {
    flex: 1;
}

.expense-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.expense-icon {
    font-size: 24px;
    margin-right: 15px;
}

.expense-details {
    flex: 1;
}

.expense-name {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.expense-category {
    font-size: 12px;
    color: #666;
}

.expense-amount {
    font-weight: 700;
    color: #e74c3c;
    font-size: 16px;
}

/* Features Section */
.features {
    padding: 0;
    background: #f8fafc;
    margin-top: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background: white;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.screenshot-item {
    text-align: center;
}

.phone-frame {
    width: 200px;
    height: 400px;
    background: #1a1a1a;
    border-radius: 25px;
    padding: 15px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
}

.screenshot-content {
    text-align: center;
    margin-top: 10px;
}

.screenshot-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.screenshot-content p {
    font-size: 14px;
    color: #666;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #20B2AA;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #20B2AA;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.2rem;
    color: #666;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.period {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-features i {
    margin-right: 10px;
    width: 16px;
}

.pricing-features .fa-check {
    color: #10b981;
}

.pricing-features .fa-times {
    color: #ef4444;
}

.btn-outline {
    background: transparent;
    color: #20B2AA;
    border: 2px solid #20B2AA;
}

.btn-outline:hover {
    background: #20B2AA;
    color: white;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.download-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.download-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
}

.download-btn img {
    height: 60px;
    width: auto;
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.download-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #20B2AA;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 18px;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
}

.contact-form-centered {
    max-width: 600px;
    margin: 0 auto;
}

.form-submit-centered {
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #20B2AA;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
    justify-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #20B2AA;
    margin-bottom: 15px;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 28px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    border-radius: 6px;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #20B2AA;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #20B2AA;
}

.footer-download {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    margin-top: 40px;
}

.footer-download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-download-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-download-btn:hover:not(.footer-download-btn-disabled) {
    transform: scale(1.05);
}

.footer-download-btn-disabled {
    position: relative;
    cursor: not-allowed;
    pointer-events: none;
}

.footer-coming-soon-text {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: white;
    white-space: nowrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: #ccc;
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 100px 0 60px !important;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.policy-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #20B2AA;
    margin-bottom: 15px;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.policy-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

/* Features Page Styles */
.features-hero {
    padding: 100px 0 60px !important;
}

.features-hero h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
}

.features-hero p {
    font-size: 1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.feature-comparison {
    overflow-x: auto;
    margin: 20px 0;
}

.comparison-table {
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 10px;
    font-size: 0.9rem;
}

/* Mobile-First Responsive Design */

/* Tablet styles */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        left: 0;
        top: auto;
        flex-direction: row;
        background: none;
        box-shadow: none;
        padding: 0;
        gap: 30px;
        width: auto;
        display: flex;
    }

    .nav-link {
        padding: 0;
        display: inline;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        text-align: left;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }

    .download-buttons {
        flex-direction: row;
        gap: 20px;
    }

    .btn {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .features {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .policy-content h1 {
        font-size: 2.5rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-policy {
        padding: 120px 0 80px !important;
    }

    .features-hero {
        padding: 120px 0 80px !important;
    }

    .features-hero h1 {
        font-size: 2.5rem;
    }

    .features-hero p {
        font-size: 1.2rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px;
        font-size: 1rem;
    }

    .resources {
        padding: 80px 0;
    }

    .faq {
        padding: 80px 0;
    }

    .calculator-form {
        grid-template-columns: 2fr 1fr;
    }

    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }

    .newsletter-inputs {
        flex-direction: row;
    }
}

/* Resources Section Styles */
.resources {
    padding: 20px 0;
    background: #fff;
}

.calculator-section {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.calculator-section h3 {
    color: #20B2AA;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.calculator-form {
    display: grid;
    gap: 20px;
}

.calculator-inputs {
    display: grid;
    gap: 15px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.input-group input {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #20B2AA;
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
}

.calc-btn {
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.3);
}

.calculator-result {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    min-height: 100px;
}

.calculator-result h4 {
    color: #20B2AA;
    margin-bottom: 10px;
}

.calculator-result .positive {
    color: #059669;
    font-weight: 500;
}

.calculator-result .warning {
    color: #d97706;
    font-weight: 500;
}

.calculator-result .negative {
    color: #dc2626;
    font-weight: 500;
}

.calculator-result .neutral {
    color: #6b7280;
}

.articles-section h3 {
    color: #20B2AA;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.articles-grid {
    display: grid;
    gap: 20px;
}

.article-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-accordion {
    border: none;
    background: none;
}

.article-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    list-style: none;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    color: white;
    transition: all 0.3s ease;
}

.article-title:hover {
    background: linear-gradient(135deg, #1a9b95, #3bc4c7);
}

.article-title h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.expand-icon {
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.article-content {
    padding: 20px;
    line-height: 1.7;
    color: #374151;
}

.article-content h5 {
    color: #20B2AA;
    margin: 20px 0 10px 0;
    font-size: 1rem;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 15px;
}

/* FAQ Section Styles */
.faq {
    padding: 20px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-accordion {
    border: none;
    background: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    list-style: none;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: bold;
    color: #20B2AA;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #6b7280;
    line-height: 1.6;
}

/* Newsletter Styles */
.newsletter-section {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
    border-top: 3px solid #20B2AA;
}

.newsletter-section h4 {
    color: #20B2AA;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.newsletter-section p {
    color: #6b7280;
    margin-bottom: 20px;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-inputs input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-inputs input:focus {
    outline: none;
    border-color: #20B2AA;
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
}

.newsletter-btn {
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.3);
}

.privacy-note {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0;
}

/* Enhanced Animations */
.feature-card,
.article-card,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.article-card:nth-child(1) { animation-delay: 0.1s; }
.article-card:nth-child(2) { animation-delay: 0.2s; }
.article-card:nth-child(3) { animation-delay: 0.3s; }
.article-card:nth-child(4) { animation-delay: 0.4s; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.pricing-card,
.screenshot-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}
