/* MediMinder Website Styles */

:root {
    --primary: #2196F3;
    --primary-dark: #1976D2;
    --secondary: #4DB6AC;
    --success: #66BB6A;
    --warning: #FFA726;
    --error: #EF5350;
    --text-primary: #212121;
    --text-secondary: #757575;
    --background: #FAFAFA;
    --card-background: #FFFFFF;
    --border-radius: 12px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Navigation */
header {
    background: var(--card-background);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.logo img {
    border-radius: 10px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.2s;
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-bottom: 1rem;
}

.cta-buttons img {
    height: 50px;
}

.platforms {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Feature Highlights Bar */
.feature-highlights {
    background: var(--card-background);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    box-shadow: var(--shadow);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.highlight-icon {
    font-size: 1.25rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Section Styles */
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

/* Features Section */
.features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.2s;
}

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

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

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.features-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Platforms Section */
.platforms-section {
    background: var(--card-background);
    padding: 4rem 2rem;
}

.platforms-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-card {
    background: var(--background);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.platform-card-new {
    position: relative;
    border: 2px solid var(--primary);
}

.new-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.platform-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.platform-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.platform-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Widgets Section */
.widgets {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.widgets h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.widgets p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.widgets-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.widget-feature {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-showcase img {
    max-width: 800px;
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Accessibility Section */
.accessibility-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.accessibility-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.accessibility-content > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.accessibility-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.accessibility-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--card-background);
    border-radius: 8px;
}

.accessibility-features span {
    font-size: 1.25rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--card-background);
    padding: 4rem 2rem;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.stars {
    color: #FFC107;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    font-weight: 600;
    color: var(--text-primary);
}

/* Pricing Section */
.pricing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-card .annual {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.pricing-card li::before {
    content: "✓";
    color: var(--success);
    margin-right: 0.5rem;
}

/* Download Section */
.download {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-background);
}

.download h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.download p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.download-note {
    margin-top: 1rem;
    font-size: 0.875rem;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* =====================================================
   FEATURES PAGE
   ===================================================== */
.features-page {
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.feature-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-icon {
    font-size: 2.5rem;
}

.category-header h2 {
    font-size: 1.75rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    background: var(--card-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.feature-item h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-item h3 span {
    font-size: 1.25rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 700;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Platform Grid on Features Page */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.platform-item {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.platform-item .platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.platform-item h3 {
    margin-bottom: 0.5rem;
}

.platform-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.platform-item ul {
    list-style: none;
    text-align: left;
}

.platform-item li {
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.platform-item li::before {
    content: "•";
    color: var(--primary);
    margin-right: 0.5rem;
}

/* Accessibility Grid on Features Page */
.accessibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.accessibility-item {
    background: var(--card-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.accessibility-item span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.accessibility-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.accessibility-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Privacy Grid on Features Page */
.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.privacy-item {
    background: var(--card-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.privacy-item span {
    font-size: 2rem;
}

.privacy-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.privacy-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Features CTA */
.features-cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--border-radius);
    color: white;
    margin-top: 2rem;
}

.features-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.features-cta-section p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.features-cta-section .btn-primary {
    background: white;
    color: var(--primary);
}

.features-cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* =====================================================
   CHANGELOG PAGE
   ===================================================== */
.changelog-page {
    padding: 6rem 2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.changelog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.changelog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.changelog-header p {
    color: var(--text-secondary);
}

.changelog-content {
    margin-bottom: 3rem;
}

.changelog-entry {
    background: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    overflow: hidden;
}

.version-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.version-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.version-date {
    opacity: 0.8;
    font-size: 0.9rem;
}

.version-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.version-badge.major {
    background: #FFD700;
    color: #333;
}

.version-badge.launch {
    background: var(--success);
}

.version-content {
    padding: 2rem;
}

.version-content h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.version-content h3:not(:first-child) {
    margin-top: 1.5rem;
}

.changelog-list {
    list-style: none;
}

.changelog-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    padding-left: 1.5rem;
    position: relative;
}

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

.changelog-list li::before {
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.changelog-list li.new::before {
    content: "✨";
}

.changelog-list li.improved::before {
    content: "⚡";
}

.changelog-list li.fixed::before {
    content: "🔧";
}

.changelog-list strong {
    color: var(--text-primary);
}

.changelog-cta {
    text-align: center;
    padding: 3rem;
    background: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.changelog-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.changelog-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* =====================================================
   LEGAL PAGES (Privacy, Terms)
   ===================================================== */
.legal-page {
    padding: 6rem 2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.legal-content section {
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.legal-content h3 {
    font-size: 1.125rem;
    margin: 1rem 0 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* =====================================================
   SUPPORT PAGE
   ===================================================== */
.support-page {
    padding: 6rem 2rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.support-content h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.support-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-section {
    margin-bottom: 3rem;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.faq-category {
    margin-bottom: 2rem;
}

.faq-category h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.faq-item {
    background: var(--card-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.faq-item ul {
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.faq-item li {
    margin-bottom: 0.25rem;
}

.help-more {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--border-radius);
    color: white;
    margin-top: 2rem;
}

.help-more h2 {
    margin-bottom: 1rem;
}

.help-more p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.help-more .btn-primary {
    background: white;
    color: var(--primary);
}

/* =====================================================
   PRESS KIT PAGE
   ===================================================== */
.press-page {
    padding: 6rem 2rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.press-content h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.press-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.press-section {
    margin-bottom: 3rem;
}

.press-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-box {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-box h3 {
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.about-box h3:first-child {
    margin-top: 0;
}

.about-box p {
    color: var(--text-secondary);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.fact-card {
    background: var(--card-background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.fact-card h3 {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.fact-card p {
    font-weight: 600;
    color: var(--text-primary);
}

.features-list {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    list-style: none;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

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

.screenshot-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.screenshot-item {
    text-align: center;
}

.screenshot-item img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 0.5rem;
}

.screenshot-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.icon-downloads {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.icon-preview img {
    border-radius: 20%;
    box-shadow: var(--shadow);
}

.icon-links ul {
    list-style: none;
    margin-top: 1rem;
}

.icon-links li {
    margin-bottom: 0.5rem;
}

.icon-links a {
    color: var(--primary);
}

.brand-box {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.brand-box h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.brand-box h3:first-child {
    margin-top: 0;
}

.color-swatches {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.swatch {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 0.75rem;
    box-shadow: var(--shadow);
}

.swatch span:first-child {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.brand-box ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.brand-box li {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.download-buttons {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-info {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.contact-info a {
    color: var(--primary);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {
    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .accessibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icon-downloads {
        flex-direction: column;
        text-align: center;
    }

    .feature-highlights {
        gap: 1.5rem;
    }

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

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

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

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--card-background);
        padding: 1rem 2rem;
        box-shadow: var(--shadow);
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .widgets-features {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .facts-grid {
        grid-template-columns: 1fr;
    }

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

    .color-swatches {
        flex-direction: column;
    }

    .swatch {
        width: 100%;
    }
}
