/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --dark-blue: #103051;
    --light-blue: #3399ff;
    --dark-orange: #f95b11;
    --light-orange: #ffb717;
    --yellow: #fee980;
    
    /* Secondary Colors */
    --green: #6cbe4e;
    --off-white: #f8f9fa;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
    --gradient-cta: linear-gradient(135deg, var(--dark-orange) 0%, var(--light-orange) 100%);
    --gradient-accent: linear-gradient(135deg, var(--dark-orange) 0%, var(--light-orange) 50%, var(--yellow) 100%);
    --gradient-separator: linear-gradient(90deg, var(--dark-orange) 0%, var(--yellow) 100%);
    
    /* Text Colors */
    --text-dark: var(--dark-blue);
    --text-light: #5a6c7d;
    --text-white: #ffffff;
    
    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: var(--off-white);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    background: var(--gradient-primary);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(16, 48, 81, 0.15);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: inline-block;
}

.logo img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-links a:hover {
    color: var(--light-orange);
    transform: translateY(-1px);
}

.nav-links .download-link {
    background: var(--gradient-cta);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(249, 91, 17, 0.35);
    transition: all 0.3s ease;
}

.nav-links .download-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 91, 17, 0.45);
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-separator);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.hero-logo {
    width: 280px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

.hero-tagline {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 48px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.02em;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-white);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.hero-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    margin-bottom: 32px;
}

.stats-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 24px;
    border-radius: 18px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 140px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 40px;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-cta {
    display: inline-block;
    background: var(--gradient-cta);
    color: var(--text-white);
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(249, 91, 17, 0.35);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(249, 91, 17, 0.45);
}

.btn-download-hero,
.btn-download {
    display: inline-block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.btn-download-hero:hover,
.btn-download:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

.btn-download-hero img,
.btn-download img {
    height: 60px;
    width: auto;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.hero-app-preview {
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.feature-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-white), var(--bg-white)), var(--gradient-cta);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
    position: relative;
}


.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
    box-shadow: 0 8px 16px rgba(249, 91, 17, 0.25);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
    text-align: center;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
}

/* How It Works Section */
.how-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
}

.how-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-separator);
}

.how-section .section-title {
    color: var(--text-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.how-section .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

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

.how-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.how-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.step-badge {
    width: 72px;
    height: 72px;
    background: var(--gradient-cta);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 8px 16px rgba(249, 91, 17, 0.35);
}

.step-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.how-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.how-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.view-all {
    text-align: center;
}

.view-all a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.view-all a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Screenshots Section */
.screenshots-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.screenshots-section .section-title {
    text-align: center;
    margin-bottom: 64px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.screenshot-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
    text-align: center;
}

.screenshot-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
}

/* Social Proof Section */
.social-proof {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonial {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-white), var(--bg-white)), var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-separator);
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: var(--text-white);
    padding: 60px 0 24px;
}

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

.footer-brand {
    max-width: 400px;
}

.footer-brand a {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo {
    height: 36px;
    width: auto;
}

.footer-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-orange);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Disclaimer Bar */
.disclaimer-bar {
    background: rgba(16, 48, 81, 0.95);
    padding: 20px 0;
    border-top: 2px solid var(--dark-orange);
}

.disclaimer-bar p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Secondary Pages Styles */
.hero-secondary {
    padding: 80px 0 60px;
    background: var(--gradient-primary);
    position: relative;
}

.hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-separator);
}

.hero-secondary h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-secondary .hero-subtitle {
    font-size: 20px;
    margin-bottom: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background-color: var(--bg-light);
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 16px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-separator);
    border-radius: 2px;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 32px;
    color: var(--text-dark);
}

.content-section h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--text-dark);
}

.content-section p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
    margin: 16px 0 16px 32px;
    color: var(--text-light);
}

.content-section li {
    margin: 8px 0;
    line-height: 1.7;
}

.large-text {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Info Boxes */
.example-box,
.formula-box,
.key-insight,
.features-box,
.reality-box,
.info-box {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 18px;
    margin: 24px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--dark-orange);
    position: relative;
}


.content-section:nth-child(even) .example-box,
.content-section:nth-child(even) .formula-box,
.content-section:nth-child(even) .key-insight,
.content-section:nth-child(even) .features-box,
.content-section:nth-child(even) .reality-box,
.content-section:nth-child(even) .info-box {
    background: var(--bg-white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.formula-box code,
.calculation code {
    display: block;
    background: var(--dark-blue);
    color: var(--text-white);
    padding: 20px;
    border-radius: 12px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    margin: 12px 0;
    overflow-x: auto;
}

.highlight {
    background: linear-gradient(135deg, rgba(254, 233, 128, 0.3), rgba(255, 183, 23, 0.3));
    border-left: 4px solid var(--light-orange);
    padding: 20px;
    border-radius: 12px;
    margin-top: 16px;
}

.calculation {
    margin: 16px 0;
}

/* Process Steps */
.process-steps {
    margin-top: 40px;
}

.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.process-number {
    min-width: 56px;
    width: 56px;
    height: 56px;
    background: var(--gradient-cta);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(249, 91, 17, 0.3);
}

.process-content {
    flex: 1;
}

.process-content h3 {
    margin-top: 0;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.result-card {
    padding: 28px;
    border-radius: 18px;
    border-left: 4px solid;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.result-card.positive {
    background: linear-gradient(135deg, rgba(108, 190, 78, 0.1), rgba(108, 190, 78, 0.05));
    border-color: var(--green);
}

.result-card.negative {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
    border-color: #dc3545;
}

.result-card.neutral {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.1), rgba(108, 117, 125, 0.05));
    border-color: #6c757d;
}

.result-card h4 {
    margin: 0 0 12px 0;
}

/* Lists */
.constraint-list {
    list-style: none;
    margin: 32px 0;
}

.constraint-list li {
    padding: 20px;
    margin: 16px 0;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--light-blue);
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 32px 0;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.ev-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 18px;
    overflow: hidden;
}

.ev-table thead {
    background: var(--gradient-primary);
    color: var(--text-white);
}

.ev-table th,
.ev-table td {
    padding: 18px;
    text-align: left;
}

.ev-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease;
}

.ev-table tbody tr:last-child {
    border-bottom: none;
}

.ev-table tbody tr:hover {
    background-color: var(--bg-light);
}

.table-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    margin-top: 12px;
}

/* Limitations Grid */
.limitations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.limitation-card {
    padding: 32px;
    border-radius: 18px;
    border-left: 4px solid;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.limitation-card.can-do {
    background: linear-gradient(135deg, rgba(108, 190, 78, 0.1), rgba(108, 190, 78, 0.05));
    border-color: var(--green);
}

.limitation-card.cannot-do {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
    border-color: #dc3545;
}

.limitation-card h4 {
    margin-top: 0;
}

.limitation-card ul {
    list-style: none;
    margin-left: 0;
}

/* Modes Detailed */
.modes-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.mode-detailed {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-white), var(--bg-white)), var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.mode-detailed h3 {
    margin-top: 0;
}

.mode-detailed ul {
    list-style: none;
    margin-left: 0;
}

.center-text {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-top: 24px;
}

/* Application Steps */
.application-steps {
    margin-top: 32px;
}

.app-step {
    background: var(--bg-white);
    padding: 28px;
    margin: 20px 0;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--light-blue);
    transition: all 0.3s ease;
}

.app-step:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.app-step h4 {
    margin: 0 0 8px 0;
    color: var(--light-blue);
}

/* FAQ Styles */
.faq-hero {
    background: var(--gradient-primary);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-separator);
}

.faq-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.faq-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.contact-info {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info a {
    color: var(--light-orange);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    padding: 36px;
    margin-bottom: 24px;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.faq-item ul,
.faq-item ol {
    margin: 16px 0 16px 32px;
    line-height: 1.7;
    color: var(--text-light);
}

.faq-item li {
    margin: 8px 0;
}

.faq-item a {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 500;
}

.faq-item a:hover {
    text-decoration: underline;
}

.mode-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.mode-box {
    background: var(--bg-light);
    padding: 28px;
    border-radius: 18px;
    border-left: 4px solid var(--light-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mode-box h4 {
    margin-top: 0;
    color: var(--text-dark);
}

.mode-box ul {
    list-style: none;
    margin-left: 0;
}

.example-highlight {
    background: linear-gradient(135deg, rgba(254, 233, 128, 0.2), rgba(255, 183, 23, 0.2));
    padding: 24px;
    border-radius: 12px;
    margin: 16px 0;
    border-left: 4px solid var(--light-orange);
}

.example-highlight h4 {
    margin-top: 0;
    color: var(--text-dark);
}

.checkmark-list {
    list-style: none;
    margin-left: 0;
}

/* Quick Navigation */
.quick-nav {
    background: var(--bg-white);
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.quick-nav h3 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.quick-links a {
    display: inline-block;
    padding: 12px 24px;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-links a:hover {
    background: var(--gradient-cta);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 91, 17, 0.25);
}

.tagline {
    font-size: 16px;
    margin-top: 16px;
    color: var(--text-light);
}

/* Privacy Policy Styles */
.privacy-policy-section {
    padding: 80px 0 100px;
    background-color: var(--bg-light);
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-container h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 48px;
}

.privacy-content {
    background: var(--bg-white);
    padding: 56px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.privacy-content h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
    border-bottom: 3px solid transparent;
    border-image: var(--gradient-separator) 1;
    padding-bottom: 12px;
}

.privacy-content h2:first-of-type {
    margin-top: 0;
}

.privacy-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.privacy-content h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.privacy-content p {
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.privacy-content ul,
.privacy-content ol {
    margin: 16px 0 16px 32px;
    line-height: 1.7;
    color: var(--text-light);
}

.privacy-content li {
    margin: 8px 0;
}

.privacy-content a {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 500;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.no-collect-list {
    list-style: none;
    margin-left: 16px;
}

.closing-message {
    text-align: center;
    margin: 48px 0;
    padding: 40px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(16, 48, 81, 0.2);
}

.closing-message p {
    color: var(--text-white);
    margin: 8px 0;
    font-size: 18px;
}

.summary-box {
    background: var(--dark-blue);
    padding: 40px;
    border-radius: 18px;
    margin-top: 48px;
    color: var(--text-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.summary-box h2 {
    color: var(--text-white);
    border-bottom: 3px solid rgba(255, 183, 23, 0.5);
    text-align: center;
}

.summary-box ul {
    list-style: none;
    margin-left: 0;
}

.summary-box li {
    color: var(--text-white);
    font-size: 16px;
    margin: 16px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .hero-logo {
        width: 220px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 22px;
    }

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

    .stats-badges {
        gap: 12px;
    }

    .stat-card {
        padding: 16px;
        min-width: 120px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 12px;
    }

    .hero-image-container {
        max-width: 350px;
    }

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

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .nav-links .download-link {
        padding: 10px 20px;
    }

    .feature-grid,
    .how-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .final-cta h2 {
        font-size: 36px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .hero-secondary h1,
    .faq-hero h1 {
        font-size: 36px;
    }

    .content-section h2 {
        font-size: 28px;
    }

    .privacy-container h1 {
        font-size: 36px;
    }

    .privacy-content {
        padding: 32px 24px;
    }

    .faq-item {
        padding: 28px 24px;
    }

    .btn-download-hero img,
    .btn-download img {
        height: 52px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .hero-logo {
        width: 180px;
    }

    .hero h1 {
        font-size: 28px;
    }

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

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

    .stats-badges {
        flex-direction: column;
        gap: 12px;
    }

    .stat-card {
        min-width: 100%;
    }

    .hero-card {
        padding: 24px;
    }

    .btn-cta {
        padding: 14px 28px;
        font-size: 16px;
    }

    .btn-download-hero img,
    .btn-download img {
        height: 48px;
    }

    .hero-image-container {
        max-width: 280px;
    }

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

    .hero-logo {
        margin: 0 auto;
    }

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

    .final-cta h2 {
        font-size: 28px;
    }

    .process-step {
        flex-direction: column;
    }

    .quick-links {
        flex-direction: column;
    }

    .disclaimer-bar p {
        font-size: 12px;
    }

    .features-section,
    .how-section,
    .screenshots-section,
    .social-proof,
    .final-cta {
        padding: 60px 0;
    }

    .content-section {
        padding: 60px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

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

.hero {
    animation: fadeIn 0.8s ease-out;
}

.feature-card,
.how-card,
.screenshot-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.how-card:nth-child(1) { animation-delay: 0.1s; }
.how-card:nth-child(2) { animation-delay: 0.2s; }
.how-card:nth-child(3) { animation-delay: 0.3s; }
