/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    line-height: 1.6;
    color: #344B37;
    background-color: #FBFAF7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: #344B37;
}

p {
    color: #344B37;
    opacity: 0.8;
    line-height: 1.7;
}

.nowrap {
    white-space: nowrap;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid rgba(52, 75, 55, 0.08);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.nav-title {
    font-size: 20px;
    font-weight: 700;
    color: #344B37;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #344B37;
    opacity: 0.7;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    opacity: 1;
}

.nav-cta {
    background: #344B37;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: #263529;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    background: #FBFAF7;
    min-height: 650px;
}

/* Mobile adjustments for fixed navbar */
@media (max-width: 768px) {
    .hero {
        padding: 200px 0 60px;
        min-height: auto;
    }
}

/* Extra padding for very small screens */
@media (max-width: 480px) {
    .hero {
        padding: 220px 0 40px;
    }
}

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

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.hero-left {
    max-width: 600px;
    padding-left: 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #344B37;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero-left {
        text-align: center;
    }
}

.hero-description {
    font-size: 18px;
    color: #344B37;
    opacity: 0.85;
    margin-bottom: 48px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    margin-left: 0;
    padding-left: 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Download Image Buttons */
.download-image-btn {
    display: inline-block;
    transition: all 0.2s ease;
}

.download-image-btn:hover {
    transform: translateY(-2px);
    filter: brightness(0.95);
}

.download-badge {
    height: 48px;
    width: auto;
    display: block;
}

/* Hero Images */
.hero-right {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-right {
        height: 400px;
    }
}

.hero-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-phone {
    position: absolute;
    width: 240px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-phone:first-child {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-phone-2 {
    left: 150px;
    top: 30%;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-phone-3 {
    left: 300px;
    top: 70%;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-phone:hover {
    transform: translateY(-50%) scale(1.05);
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-phone {
        width: 180px;
    }
    
    .hero-phone-2 {
        left: 100px;
    }
    
    .hero-phone-3 {
        left: 200px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #344B37;
    color: white;
}

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

.btn-secondary {
    background: white;
    color: #344B37;
    border: 1px solid rgba(52, 75, 55, 0.2);
}

.btn-secondary:hover {
    background: rgba(52, 75, 55, 0.05);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #344B37;
    border: 1px solid rgba(52, 75, 55, 0.3);
}

.btn-outline:hover {
    background: rgba(52, 75, 55, 0.05);
    transform: translateY(-1px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #344B37;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #344B37;
    opacity: 0.7;
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #344B37;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 17px;
    color: #344B37;
    opacity: 0.75;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

/* Main Features with Images */
.main-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    margin-bottom: 80px;
}

.main-feature {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    background: #FBFAF7;
    border: none;
    border-radius: 16px;
    padding: 32px;
}

.main-feature.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.main-feature:hover {
    transform: translateY(-4px);
}

.main-feature .feature-image {
    width: 100%;
    max-width: 240px;
    height: auto;
    margin-bottom: 24px;
    border-radius: 16px;
}

.main-feature h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #344B37;
    letter-spacing: 0.01em;
}

.main-feature p {
    font-size: 15px;
    color: #344B37;
    opacity: 0.75;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    border: 1px solid rgba(52, 75, 55, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 15px 30px rgba(52, 75, 55, 0.08), 0 5px 10px rgba(52, 75, 55, 0.04);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: rgba(52, 75, 55, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(52, 75, 55, 0.12), 0 8px 16px rgba(52, 75, 55, 0.08);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #344B37;
}

.feature-card p {
    color: #344B37;
    opacity: 0.8;
    line-height: 1.6;
}

/* How it Works */
.how-it-works {
    padding: 80px 0;
    background: #FBFAF7;
}

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

.step {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 64px;
    height: 64px;
    background: #344B37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #344B37;
}

.step p {
    color: #344B37;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.step-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(52, 75, 55, 0.08);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 1px solid rgba(52, 75, 55, 0.1);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 15px 30px rgba(52, 75, 55, 0.08), 0 5px 10px rgba(52, 75, 55, 0.04);
}

.pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    border-color: rgba(52, 75, 55, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(52, 75, 55, 0.12), 0 8px 16px rgba(52, 75, 55, 0.08);
}

.pricing-card.featured {
    border-color: #344B37;
    border-width: 2px;
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(52, 75, 55, 0.1);
    color: #344B37;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(52, 75, 55, 0.2);
}

.pricing-badge.premium {
    background: #344B37;
    color: white;
    border-color: #344B37;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0 32px;
    color: #344B37;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 32px;
}

.currency {
    font-size: 18px;
    color: #344B37;
    opacity: 0.7;
    margin-right: 4px;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #344B37;
}

.period {
    font-size: 16px;
    color: #344B37;
    opacity: 0.7;
    margin-left: 4px;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.features-list li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #344B37;
    opacity: 0.8;
    font-size: 15px;
}

.check {
    color: #344B37;
    margin-right: 12px;
    font-weight: 600;
}

/* New Pricing Styles */
.pricing-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

/* Trial Card */
.trial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(52, 75, 55, 0.08), 0 5px 10px rgba(52, 75, 55, 0.04);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.trial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.trial-header {
    text-align: center;
    margin-bottom: 24px;
}

.trial-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #344B37;
    margin: 0;
}

.trial-description {
    text-align: center;
    font-size: 16px;
    color: #344B37;
    opacity: 0.75;
    margin-bottom: 36px;
    line-height: 1.6;
}

.trial-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.trial-feature {
    padding: 20px 24px;
    background: #FBFAF7;
    border-radius: 12px;
    margin-bottom: 16px;
}

.trial-feature:last-child {
    margin-bottom: 0;
}

.trial-feature strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #344B37;
    margin-bottom: 4px;
}

.trial-feature p {
    font-size: 14px;
    color: #344B37;
    opacity: 0.7;
    margin: 0;
}

.trial-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: #344B37;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.trial-btn:hover {
    background: #263529;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 75, 55, 0.2);
}

/* Premium Card */
.premium-card {
    background: #FBFAF7;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.premium-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.premium-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #344B37;
    margin-bottom: 16px;
}

.premium-description {
    font-size: 16px;
    color: #344B37;
    opacity: 0.8;
    margin-bottom: 32px;
    line-height: 1.6;
}

.premium-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #344B37;
}

.check-icon {
    color: #4CAF50;
    font-weight: 600;
    font-size: 16px;
}

.premium-btn {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #344B37;
    border: 2px solid #344B37;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.premium-btn:hover {
    background: #344B37;
    color: white;
    transform: translateY(-2px);
}

.subscription-note {
    margin-top: 24px;
}

.subscription-note p {
    font-size: 14px;
    color: #344B37;
    opacity: 0.7;
    margin: 0;
}

@media (max-width: 768px) {
    .trial-features {
        gap: 16px;
    }
    
    .premium-benefits {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #FBFAF7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial {
    background: #FBFAF7;
    border: 1px solid rgba(52, 75, 55, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 15px 30px rgba(52, 75, 55, 0.08), 0 5px 10px rgba(52, 75, 55, 0.04);
}

.testimonial.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(52, 75, 55, 0.12), 0 8px 16px rgba(52, 75, 55, 0.08);
}

.testimonial p {
    color: #344B37;
    opacity: 0.9;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: #344B37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.author-info strong {
    display: block;
    font-weight: 600;
    color: #344B37;
    margin-bottom: 2px;
}

.author-info span {
    color: #344B37;
    opacity: 0.7;
    font-size: 14px;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.download-content {
    max-width: 600px;
    margin: 0 auto;
}

.download-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #344B37;
}

.download-content p {
    font-size: 18px;
    color: #344B37;
    opacity: 0.8;
    margin-bottom: 48px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.download-btn {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
}

.store-info {
    background: white;
    border: 1px solid rgba(52, 75, 55, 0.1);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 200px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(52, 75, 55, 0.05);
}

.download-btn:hover .store-info {
    border-color: rgba(52, 75, 55, 0.2);
    box-shadow: 0 8px 20px rgba(52, 75, 55, 0.1);
}

.store-icon {
    font-size: 24px;
}

.store-info div {
    text-align: left;
}

.store-info small {
    display: block;
    font-size: 12px;
    color: #344B37;
    opacity: 0.7;
    margin-bottom: 2px;
}

.store-info strong {
    font-size: 16px;
    font-weight: 600;
    color: #344B37;
}

.download-note {
    color: #344B37;
    opacity: 0.7;
    font-size: 14px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #344B37;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(52, 75, 55, 0.3);
}

.scroll-to-top:hover {
    background: #2a3a2d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 75, 55, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Footer */
.footer {
    background: white;
    color: #344B37;
    padding: 60px 0 24px;
    border-top: 1px solid rgba(52, 75, 55, 0.08);
}

.footer-content {
    margin-bottom: 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.footer-brand-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #344B37;
    margin-bottom: 4px;
}

.footer-brand-text p {
    color: #344B37;
    opacity: 0.75;
    font-size: 14px;
    margin: 0;
}

.footer-apps {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-download-link {
    display: inline-block;
    transition: all 0.2s ease;
}

.footer-download-link:hover {
    transform: translateY(-2px);
    filter: brightness(0.95);
}

.footer-download-badge {
    height: 40px;
    width: auto;
    display: block;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 24px 0;
    border-top: 1px solid rgba(52, 75, 55, 0.08);
}

.footer-links a {
    color: #344B37;
    opacity: 0.75;
    text-decoration: none;
    font-size: 14px;
    padding: 4px 8px;
    transition: all 0.2s ease;
}

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

.footer-separator {
    color: #344B37;
    opacity: 0.3;
    font-size: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(52, 75, 55, 0.08);
}

.footer-bottom p {
    color: #344B37;
    opacity: 0.6;
    font-size: 13px;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
    
    .footer-apps {
        width: 100%;
    }
    
    .footer-app-link {
        flex: 1;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

    .nav-container {
        padding: 0 16px;
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        gap: 24px;
    }

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

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 18px;
    }

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

    .hero-stats {
        gap: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .features,
    .how-it-works,
    .pricing,
    .testimonials,
    .download {
        padding: 80px 0;
    }

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

    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .pricing-card.featured {
        transform: none;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .feature-card,
    .pricing-card,
    .testimonial {
        padding: 24px;
    }

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

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #344B37;
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Legal Pages Styles (Terms & Privacy) */
header {
    background: #344B37;
    color: white;
    padding: 20px 0;
    margin-bottom: 40px;
}

header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

header h1 a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

header h1 a:hover {
    color: #8BC34A;
}

.content-section {
    margin: 40px 0;
}

.card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.last-updated {
    background: #f9fafb;
    color: #6b7280;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 32px;
    border-left: 4px solid #344B37;
}

.card h3 {
    color: #344B37;
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #f3f4f6;
}

.card h3:first-of-type {
    margin-top: 0;
}

.card p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 16px;
}

.card ul {
    margin: 16px 0;
    padding-left: 24px;
}

.card ul li {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 8px;
}

.navigation-section {
    margin: 40px 0;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nav-btn {
    background: #344B37;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.nav-btn:hover {
    background: #263529;
    transform: translateY(-1px);
}

footer {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 32px 0;
    margin-top: 60px;
    text-align: center;
}

footer p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .card {
        padding: 24px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-btn {
        width: 100%;
        max-width: 300px;
    }
}
