/* Variables */
:root {
    --primary-green: #2F4F4F;     /* Dark Slate Gray */
    --accent-green: #4A6741;      /* Sage Green */
    --highlight: #e8f5e9;         /* Very light green for Pro plan */
    --light-bg: #F0F4F0;          /* Frosty grey */
    --white: #FFFFFF;
    --font-main: 'Inter', sans-serif;
    --text-dark: #1a1a1a;
}

/* Reset & Basics */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar { padding: 25px 0; background-color: var(--white); }
.logo { font-weight: 800; font-size: 1.3rem; color: var(--primary-green); display: flex; align-items: center; gap: 8px; }

/* Hero Section */
.hero {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; 
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: #E2ECE2;
    color: var(--primary-green);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-green);
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: #444;
    max-width: 480px;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: rotate(1deg);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    box-shadow: 0 10px 25px rgba(47, 79, 79, 0.2);
}

.cta-button:hover {
    background-color: #1a2f2f;
    transform: translateY(-2px);
}

.cta-button-outline {
    display: inline-block;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cta-button-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.android-icon { width: 26px; height: 26px; }
.small-text { font-size: 0.85rem; margin-top: 12px; color: #666; font-weight: 500;}

/* Features Section */
.features { padding: 90px 0; }
.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 35px 30px;
    border-radius: 24px;
    background-color: var(--white);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--light-bg);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.feature-card h3 { margin-bottom: 12px; color: var(--primary-green); font-size: 1.25rem; }
.feature-card p { font-size: 0.95rem; color: #555; }

/* Screenshots Section */
.screenshots {
    padding: 60px 0 90px;
    background-color: #f9f9f9;
}

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2rem; color: var(--primary-green); margin-bottom: 10px; }

.screenshot-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.phone-frame {
    width: 280px; /* Approximate phone width */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 8px solid var(--text-dark); /* Fake phone bezel */
    background-color: #fff;
}

.phone-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Pricing Section */
.pricing { padding: 90px 0; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px;
    border-radius: 24px;
    background-color: var(--white);
    border: 1px solid #eee;
    text-align: center;
    position: relative;
}

/* Special Styling for Pro Card */
.pricing-card.pro {
    border: 2px solid var(--primary-green);
    background-color: var(--highlight);
    transform: scale(1.05); /* Make it slightly bigger */
    z-index: 2;
    box-shadow: 0 15px 40px rgba(47, 79, 79, 0.1);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-green);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-card h3 { font-size: 1.5rem; color: var(--primary-green); margin-bottom: 10px; }
.price { font-size: 2.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 30px; }
.price span { font-size: 1rem; color: #666; font-weight: 400; }

.feature-list { list-style: none; text-align: left; margin: 0 auto; max-width: 280px; }
.feature-list li { margin-bottom: 15px; color: #555; display: flex; align-items: flex-start; gap: 10px; }
.feature-list li span { color: var(--primary-green); font-weight: bold; }

.bottom-cta { text-align: center; margin-top: 60px; }
.bottom-cta p { margin-bottom: 20px; color: #666; }

/* Footer */
footer { padding: 40px 0; border-top: 1px solid #eee; color: #888; font-size: 0.9rem; }
footer .container { display: flex; justify-content: space-between; align-items: center; }
.links a { color: #666; text-decoration: none; }

/* Mobile Responsiveness */
@media (max-width: 850px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-image { order: -1; padding: 0 20px; }
    
    .pricing-card.pro { transform: scale(1); } /* Remove scale on mobile so they stack evenly */
    .screenshot-grid { gap: 20px; }
    .phone-frame { width: 80%; max-width: 280px; }
    
    /* Footer stacking on small screens */
    footer .container { flex-direction: column; gap: 20px; text-align: center; }
}

/* --- Legal Page Specifics --- */

.legal-header {
    padding: 80px 0 40px;
    text-align: center;
    background-color: var(--light-bg);
}

.legal-header h1 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.legal-header p {
    color: #666;
}

.legal-content {
    max-width: 800px; /* Narrower than main container for readability */
    margin: 60px auto;
    padding: 0 20px;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content p, .legal-content li {
    margin-bottom: 15px;
    color: #444;
    font-size: 1rem;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content a {
    color: var(--accent-green);
    font-weight: 600;
    text-decoration: underline;
}

.links a {
    margin-left: 20px;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .links a { margin: 0 10px; }
}

.logo img {
    height: 30px; /* Adjust as needed */
    width: auto;
    vertical-align: middle; /* Aligns the image nicely with the text */
    margin-right: 8px; /* Adds a small space between the logo and the text */
}