/* ---- Self-hosted variable fonts (replaces fonts.googleapis.com) ----
   Comfortaa  wght 400-700   |   Open Sans  wght 300-800
   Latin subset only; font-display:swap keeps text visible immediately. */
@font-face {
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('fonts/comfortaa.woff2') format('woff2');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('fonts/opensans.woff2') format('woff2');
}

/* style.css */

/* General Styles */
* {
    box-sizing: border-box;
}

/* Prevent horizontal scroll on mobile */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #5C443D;
    background-color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

h1, h2, h3 {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #5C443D;
}

h1 {
    font-size: 2.75em;
    line-height: 1.2;
    margin-bottom: 24px;
}

h2 {
    font-size: 2.25em;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 16px;
}

p {
    margin-bottom: 20px;
    color: #5C443D;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.button.primary {
    background-color: #e67e22;  /* Orange accent */
    color: white;
}

.button.secondary {
    background-color: white;
    color: #5C443D;
    border: 2px solid #5C443D;
}

.button.tertiary {
    background-color: #f2f2f2;
    color: #5C443D;
}

.button.primary:hover {
    background-color: #d35400;
}

/* Nav CTA button */
.nav-cta {
    background-color: #6F9906;
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95em;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 24px;
    box-shadow: 0 2px 8px rgba(111, 153, 6, 0.3);
    letter-spacing: 0.3px;
}

.nav-cta:hover {
    background-color: #5c8005;
    box-shadow: 0 4px 12px rgba(111, 153, 6, 0.5);
    transform: translateY(-1px);
    text-decoration: none;
}

.button.secondary:hover {
    background-color: #f2f2f2;
}

/* Header */
header {
    background-color: rgba(92, 68, 61, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 48px; /* Increased to accommodate larger logo */
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header .logo img {
    height: 36px; /* Better size for brand visibility */
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 48px; /* Match header height */
}

header nav ul li {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.95em;
    padding: 6px 12px;
}

/* Special style for Web App button in header */
header nav ul li a.button.primary {
    background-color: #6F9906;
    color: white;
    padding: 8px 16px;
    font-size: 0.95em;
}

header nav ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* General Section Spacing */
section {
    padding: 40px 0;
}

/* Hero Section */
#hero {
    padding: 30px 0;
    background: linear-gradient(160deg, #ffffff 0%, #f9f9f9 100%);
}

#hero .container {
    max-width: 800px;
    text-align: center;
}

#hero .hero-logo {
    margin-bottom: 10px;
}

#hero .hero-logo h1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    background: linear-gradient(120deg, rgba(92, 68, 61, 0.9) 0%, rgba(92, 68, 61, 0.8) 100%);
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#hero .hero-logo h1:hover {
    transform: translateY(-2px);
    background: linear-gradient(120deg, rgba(92, 68, 61, 1) 0%, rgba(92, 68, 61, 0.9) 100%);
}

#hero .hero-logo h1 .brand-highlight {
    background: none;
    padding: 0;
    border-radius: 0;
    transition: none;
}

#hero .hero-logo h1 .brand-highlight:hover {
    transform: none;
    background: none;
}

#hero .hero-logo .app-logo {
    height: 60px;
    width: 60px;
    border-radius: 12px;
    background-color: white;
    padding: 8px;
    margin: 0;
    transition: transform 0.3s ease;
}

#hero .subheadline.main {
    margin-bottom: 12px;
    font-size: 1.4em;
    font-weight: 600;
    color: #5C443D;
}

#hero .subheadline {
    margin: 0 0 16px;
    font-size: 1.1em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#hero .cta-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

#hero .cta-buttons a {
    margin: 0 10px;
}

#hero .email-signup {
    margin-top: 20px;
    display: flex;
}

#hero .email-signup input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-right: 10px;
    flex-grow: 1;
}

#hero .email-signup button {
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 1em;
  background-color: #f2f2f2;
  color: #5C443D;
}

#hero .hero-tagline {
    font-size: 2.25em;
    margin-bottom: 12px;
    color: #5C443D;
}

/* Features Section */
#features {
    padding: 40px 0;
    text-align: center;
}

#features .container {
    max-width: 1200px;
}

#features .subheadline {
    margin-bottom: 20px;
    font-size: 1.1em;
}

#features .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: left;
    margin-top: 30px;
}

#features .feature-item {
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s;
    text-align: center;
}

#features .feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(145deg, #6F9906 0%, #5c8005 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(111, 153, 6, 0.2);
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

#features .feature-item h3 {
    margin: 12px 0;
    color: #5C443D;
}

#features .feature-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Pricing Section - New Design */
#pricing {
    padding: 60px 0;
    background: linear-gradient(160deg, #ffffff 0%, #f9f9f9 100%);
    text-align: center;
}

#pricing .container {
    max-width: 1000px;
}

.pricing-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Pricing cards container */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    width: 100%;
}

/* Individual pricing card */
.pricing-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Popular badge */
.pricing-card.popular {
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.1);
    border: 2px solid #e67e22;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 0;
    background-color: #6F9906;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 4px 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card header */
.card-header {
    padding: 30px 20px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #5C443D;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5C443D;
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.pricing-card .price .period {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.7;
}

.price-subtitle {
    font-size: 0.9rem;
    color: #5C443D;
    opacity: 0.7;
    margin-bottom: 0;
}

.annual-note {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6F9906;
    margin: 4px 0 6px;
}

#pricing .subheadline {
    margin-bottom: 30px;
    font-size: 1.1em;
}

/* Card body */
.card-body {
    padding: 20px 20px 30px;
    flex: 1;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: center;
    padding: 12px 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: #6F9906;
    font-size: 1.1rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.features-list li span {
    color: #5C443D;
}

/* Money-back guarantee */
.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: rgba(111, 153, 6, 0.1);
    padding: 12px 20px;
    border-radius: 30px;
    margin-top: 20px;
}

.pricing-guarantee i {
    color: #6F9906;
    font-size: 1.2rem;
}

.pricing-guarantee p {
    margin: 0;
    font-size: 0.9rem;
    color: #5C443D;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #pricing {
        padding: 40px 0;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .pricing-wrapper {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Full-width pricing cards with better spacing */
    .pricing-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
        padding: 0 16px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .pricing-card {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
    
    /* Adjust badge for mobile */
    .popular-badge {
        top: 10px;
        right: 0;
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    
    /* Adjust header spacing */
    .card-header {
        padding: 20px 15px 15px;
    }
    
    .pricing-card h3 {
        font-size: 1.4rem;
    }
    
    .pricing-card .price {
        font-size: 2.2rem;
    }
    
    .price-subtitle {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    /* Ensure feature lists display properly */
    .card-body {
        padding: 15px 15px 25px;
    }
    
    .features-list {
        text-align: left;
        width: 100%;
    }
    
    .features-list li {
        padding: 10px 5px;
        width: 100%;
        white-space: normal;
    }
    
    .features-list li i {
        margin-right: 10px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .features-list li span {
        font-size: 0.95rem;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Adjust guarantee box */
    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        margin-top: 25px;
        padding: 12px;
        width: 90%;
        max-width: 350px;
    }
    
    .pricing-guarantee p {
        font-size: 0.85rem;
    }
}

/* CTA Section */
#cta {
    padding: 40px 0;
    background-color: #f9f9f9;
    text-align: center;
}

#cta h2 {
    margin-bottom: 16px;
    color: #5C443D;
}

/* Footer */
footer {
    background-color: #5C443D;
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

footer nav ul li {
    margin-left: 20px;
}

footer nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

footer nav ul li a:hover {
    color: #f9f9f9;
}

footer .social-link {
    font-size: 1.2em;
}

/* Media Queries - Consolidated for better organization */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.6em;
    }
    
    /* Layout and Containers */
    section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        padding: 30px 0;
    }
    
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* Header */
    header {
        height: auto;
        min-height: 48px;
        padding: 8px 0;
        position: relative;
    }
    
    header .container {
        flex-direction: column;
        padding: 0 16px;
        align-items: center;
    }
    
    header .logo {
        margin-bottom: 10px;
    }
    
    header .logo img {
        height: 32px;
    }
    
    header nav {
        width: 100%;
    }
    
    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        gap: 8px;
        padding: 5px 0;
    }
    
    header nav ul li {
        margin: 3px;
    }
    
    header nav ul li a {
        padding: 8px 10px;
        font-size: 0.9em;
        text-align: center;
        border-radius: 8px;
        background-color: rgba(255, 255, 255, 0.1);
        white-space: nowrap;
    }
    
    header nav ul li a:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
    
    /* Hero Section */
    #hero {
        padding: 30px 0;
    }
    
    #hero .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    #hero .cta-buttons a {
        margin: 8px 0;
        width: 100%;
        max-width: 280px;
    }
    
    #hero .hero-logo .app-logo {
        height: 40px;
        width: 40px;
        padding: 6px;
    }
    
    #hero .hero-logo h1 {
        gap: 10px;
        padding: 10px 14px;
        font-size: 1.6em;
    }
    
    #hero .hero-tagline {
        font-size: 1.8em;
        margin-bottom: 10px;
    }
    
    #hero .subheadline {
        font-size: 1em;
    }
    
    /* Pricing Section */
    #pricing {
        padding: 40px 0;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .pricing-wrapper {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
        padding: 0 16px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .pricing-card {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
    
    .popular-badge {
        top: 10px;
        right: 0;
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    
    .card-header {
        padding: 20px 15px 15px;
    }
    
    .pricing-card h3 {
        font-size: 1.4rem;
    }
    
    .pricing-card .price {
        font-size: 2.2rem;
    }
    
    .price-subtitle {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .card-body {
        padding: 15px 15px 25px;
    }
    
    .features-list {
        text-align: left;
        width: 100%;
    }
    
    .features-list li {
        padding: 10px 5px;
        width: 100%;
        white-space: normal;
    }
    
    .features-list li i {
        margin-right: 10px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .features-list li span {
        font-size: 0.95rem;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        margin-top: 25px;
        padding: 12px;
        width: 90%;
        max-width: 350px;
    }
    
    .pricing-guarantee p {
        font-size: 0.85rem;
    }
    
    /* Features Section */
    #features .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    /* Screenshots Section */
    #screenshots {
        padding: 32px 0;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .screenshot-container {
        max-width: 100%;
    }
    
    /* CTA Section */
    #cta {
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .download-options, .desktop-downloads {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    /* Platform Buttons */
    .platform-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 10px;
    }
    
    .platform-button {
        width: 100%;
        max-width: 280px;
        justify-content: flex-start;
        padding: 10px 15px;
    }
    
    .platforms-container {
        gap: 35px;
        padding: 0 10px;
    }
    
    .coming-soon, .coming-later {
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    /* Footer */
    footer {
        padding: 20px 0;
    }
    
    footer .container {
        flex-direction: column;
        align-items: center;
    }
    
    footer nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 12px;
    }
    
    footer nav ul li {
        margin-left: 0;
        margin-top: 8px;
    }
}

.brand-highlight {
    color: white;
    font-weight: 700;
    background: linear-gradient(120deg, rgba(92, 68, 61, 0.9) 0%, rgba(92, 68, 61, 0.8) 100%);
    padding: 0.2em 0.4em;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.brand-highlight:hover {
    transform: translateY(-2px);
    background: linear-gradient(120deg, rgba(92, 68, 61, 1) 0%, rgba(92, 68, 61, 0.9) 100%);
}

.green-highlight, .contact-link {
    color: #6F9906;
    font-weight: 600;
    background: rgba(111, 153, 6, 0.1);
    padding: 0.2em 0.5em;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.95em;
}

.green-highlight:hover, .contact-link:hover {
    background: rgba(111, 153, 6, 0.15);
    color: #5c8005;
    text-decoration: none;
    transform: none;
}

/* Remove any conflicting styles */
#features .feature-item h3 a.green-highlight:hover {
    text-decoration: none;
}

footer nav ul li a.contact-link:hover {
    text-decoration: none;
}

/* Explainer Page Styles */
.explainer {
    padding: 40px 0;
    background-color: #f9f9f9;
}

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

.explainer h1 {
    margin-bottom: 16px;
    font-size: 2.25em;
    color: #5C443D;
    text-align: center;
}

.explainer .lead {
    font-size: 1.25em;
    line-height: 1.6;
    color: #666;
    text-align: center;
    margin-bottom: 32px;
}

.how-it-works {
    margin-top: 30px;
}

.how-it-works h2 {
    margin-bottom: 16px;
    color: #5C443D;
    text-align: center;
}

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

.step {
    text-align: center;
    padding: 24px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
    background: white;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #6F9906 0%, #5c8005 100%);
    border-radius: 12px;
    font-size: 1.1em;
    margin: 0 auto 16px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(111, 153, 6, 0.2);
}

.step h3 {
    margin-bottom: 10px;
    color: #5C443D;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 12px 0;
    text-align: left;
}

.step-details li {
    margin: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.step-details li:before {
    content: "•";
    color: #6F9906;
    position: absolute;
    left: 6px;
}

.step-tip {
    margin-top: 12px;
    font-style: italic;
    color: #6F9906;
    font-size: 0.9em;
}

.benefits {
    margin: 40px 0;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 24px;
    color: #5C443D;
}

.benefits ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.benefits li {
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.benefits li:hover {
    transform: translateY(-2px);
}

.benefits li i {
    color: #6F9906;
    margin-right: 15px;
    font-size: 1.4em;
}

.cta-section {
    background: linear-gradient(160deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 32px 24px;
    margin-top: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.cta-section h2 {
    color: #5C443D;
    margin-bottom: 12px;
}

.cta-section p {
    margin-bottom: 16px;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
}

/* Download Section */
.download-options {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-stores {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #5C443D;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-button:hover {
    transform: translateY(-2px);
    background: #4a362f;
}

.store-button i {
    font-size: 24px;
}

.store-button span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-button small {
    font-size: 0.7em;
    opacity: 0.9;
}

.desktop-downloads {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon {
    color: #666;
    margin-bottom: 24px;
    font-size: 1.1em;
}


#contact-us {
    padding: 30px 0;
    text-align: center;
    background-color: #f9f9f9;
}

#contact-us h2 {
    margin-bottom: 12px;
    color: #5C443D;
}

#contact-us p {
    margin-bottom: 0;
    color: #666;
}

.contact-link {
    color: #6F9906;
    font-weight: 600;
    background: rgba(111, 153, 6, 0.1);
    padding: 0.2em 0.5em;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.95em;
}

.contact-link:hover {
    color: #5c8005;
    background: rgba(111, 153, 6, 0.15);
}

/* Feature item link style */
#features .feature-item h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

#features .feature-item h3 a:hover {
    color: #6F9906;
}

/* Text Links */
a:not(.button):not(.store-button):not(.platform-button):not(.social-link):not(.logo):not(header nav a):not(footer nav a):not(.green-highlight):not(.contact-link) {
    color: #6F9906;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 600;
}

a:not(.button):not(.store-button):not(.platform-button):not(.social-link):not(.logo):not(header nav a):not(footer nav a):not(.nav-cta):not(.green-highlight):not(.contact-link):hover {
    text-decoration: underline;
    color: #5c8005;
}

/* Screenshots Showcase */
#screenshots {
    padding: 40px 0;
    background-color: white;
    text-align: center;
}

#screenshots .container {
    max-width: 1200px;
    margin: 0 auto;
}

#screenshots h2 {
    text-align: center;
    margin-bottom: 32px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.screenshot-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.screenshot-container:hover {
    transform: translateY(-5px);
}

.screenshot-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

@media (max-width: 992px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #screenshots {
        padding: 32px 0;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
        gap: 20px;
    }

    .screenshot-container {
        max-width: 100%;
    }
}

/* Swiper styles for desktop (3 slides) */
@media (min-width: 769px) {
    .screenshots-swiper {
        padding: 0 40px;
    }

    .swiper-slide {
        width: 280px !important;
        margin-right: 30px;
    }
}

/* Swiper Navigation and Pagination Styles */
.swiper-button-next,
.swiper-button-prev {
    color: #6F9906;
    width: 40px;
    height: 40px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.swiper-pagination-bullet {
    background: #6F9906;
}

@media (max-width: 768px) {
    #screenshots {
        padding: 32px 0;
    }

    .screenshot-container {
        max-width: 260px;
        padding: 12px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Ensure slides are centered */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Fade effect styles */
.swiper-fade .swiper-slide {
    opacity: 0 !important;
    transition: opacity 0.8s ease;
}

.swiper-fade .swiper-slide-active {
    opacity: 1 !important;
}

/* Platforms Container - Fix for mobile */
.platforms-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 20px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.platform-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.platform-group.later {
    margin-top: 10px;
    opacity: 0.75;
}

.coming-soon, .coming-later, .available-now {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #5C443D;
}

.available-now {
    color: #6F9906;
    font-weight: 700;
}

.coming-later {
    color: #666;
}

.platform-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.platform-button {
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 12px 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #5C443D;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.platform-button.disabled {
    cursor: not-allowed;
    opacity: 0.85;
    pointer-events: none;
    background-color: #f0f0f0;
}

.platform-button.disabled:hover {
    transform: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.platform-button i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .platform-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 10px;
    }
    
    .platform-button {
        width: 100%;
        max-width: 280px;
        justify-content: flex-start;
        padding: 10px 15px;
    }
    
    .platforms-container {
        gap: 35px;
        padding: 0 10px;
    }
    
    .coming-soon, .coming-later, .available-now {
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
}

/* Download Section - Added centering */
#download {
    text-align: center;
}

/* Android Button Styling - Make it more prominent */
.android-button {
    background-color: #e67e22 !important; /* Orange accent color from primary button */
    color: white !important;
    padding: 16px 24px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3) !important;
    border: none !important;
    transform: scale(1.1);
    transition: all 0.3s ease !important;
}

.android-button i {
    font-size: 1.5rem !important;
}

.android-button:hover {
    background-color: #d35400 !important;
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 6px 16px rgba(230, 126, 34, 0.4) !important;
}

/* Ensure the Android button is properly centered on mobile */
@media (max-width: 768px) {
    .android-button {
        width: 100% !important;
        max-width: 300px !important;
        padding: 18px 24px !important;
    }
}
/* ---- Inline SVG icons (replaces the Font Awesome webfont) ---- */
i.fas, i.fab {
    font-style: normal;
    line-height: 1;
}
i.fas svg, i.fab svg {
    width: 1em;
    height: 1em;
    display: block;
    fill: currentColor;
}

/* ---- Visually hidden, still available to screen readers ---- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Currency / local-pricing note under the pricing cards */
.pricing-note {
    text-align: center;
    font-size: 0.9rem;
    color: #6b6b6b;
    margin: 24px auto 0;
    max-width: 640px;
}

/* Trial / no-credit-card microcopy under CTAs */
.trial-note {
    text-align: center;
    margin: 14px 0 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6F9906;
}


/* Single-plan layout: give the one card more room than a 2-up grid would */
.pricing-card:only-child {
    max-width: 520px;
}

/* Pricing: the trial term and the paid price get EQUAL weight.
   Both are highlighted as the money facts of the card; neither outranks
   the other, and both stand apart from the heading above them. */
.price-block {
    margin: 10px 0 14px;
}
.price-line {
    font-size: 1.35rem;
    font-weight: 700;
    color: #6F9906;
    margin: 0;
    line-height: 1.45;
}
.price-divider {
    width: 62%;
    margin: 12px auto;
    border: 0;
    border-top: 2px solid rgba(111, 153, 6, 0.3);
}
@media (max-width: 480px) {
    .price-line {
        font-size: 1.15rem;
    }
    .price-divider {
        width: 76%;
    }
}

/* Data ownership: short reassurance section after pricing */
#your-data h2 {
    text-align: center;
}
#your-data .subheadline {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.1em;
    text-align: center;
}
