/* Central site stylesheet combined from existing page styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    color: #323130;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(12, 16, 19, 0.7) 100%);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-size: 1.500rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
}

/* Header / Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(12, 16, 19, 0.7) 100%);
    z-index: 1001;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    width: 100%;
    max-width: none;
}

.brand {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.325rem;
}

.site-nav {
    display: flex;
    gap: 18px;
}

.site-nav a {
    color: white;
    text-decoration: none;
    font-weight: 200;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    position: relative;
}
.hamburger::before, .hamburger::after{
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: white;
}
.hamburger::before{ top: -7px; }
.hamburger::after{ top: 7px; }

/* Mobile behavior */
@media (max-width: 768px){
    .site-nav {
        display: none;
        position: absolute;
        right: 20px;
        top: 66px;
        background: white;
        color: #222;
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        flex-direction: column;
        min-width: 180px;
        overflow: hidden;
        padding: 1px 4px; /* add vertical padding for balanced spacing */
        z-index: 1100;
    }
    .site-nav.open { display: flex; }
    .site-nav a {
        color: #222;
        padding: 16px 16px; /* balanced top/bottom + left/right */
        display: block; /* make links fill the menu width */
        width: 100%;
        text-decoration: none;
        font-weight: 300;
        line-height: 0.9;
    }
    .site-nav a + a { padding-top: 0px ; padding-bottom: 16px ;}
    .nav-toggle { display: block; z-index: 1200; }
}

/* body { padding-top: 0px; } */

/* Hero Section */
.hero {
    min-height: 100vh;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f9ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 120, 212, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 103, 192, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-greeting {
    font-size: 2rem;
    font-weight: 400;
    color: #605e5c;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0067c0 0%, #0078d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #605e5c;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-button {
    display: inline-block;
    background: #0067c0;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 103, 192, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-button:hover {
    background: #005ba1;
    box-shadow: 0 6px 20px rgba(0, 103, 192, 0.4);
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    gap: 10px;
    background: #0067c0;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 103, 192, 0.3);
}

.download-button:hover {
    background: #005ba1;
    box-shadow: 0 6px 20px rgba(0, 103, 192, 0.4);
    transform: translateY(-2px);
}

.download-button:active {
    transform: translateY(0);
}

.download-button-secondary {
    display: inline-flex;
    justify-content: center;
    width: 260px;
    align-items: center;
    gap: 10px;
    background: white;
    color: #0067c0;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.download-button-secondary:hover {
    background: #f3f2f1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.version-badge {
    display: inline-block;
    background: rgba(0, 103, 192, 0.1);
    color: #0067c0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-out 0.3s both;
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: #323130;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #605e5c;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e1dfdd;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #323130;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1.125rem;
    color: #605e5c;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gif-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f3f2f1 0%, #e1dfdd 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a8886;
    font-size: 1rem;
    font-style: italic;
    margin-top: 1.5rem;
    border: 2px dashed #d2d0ce;
}

/* Call to Action Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0067c0 0%, #0078d4 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button-secondary {
    display: inline-block;
    background: white;
    color: #0067c0;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary:hover {
    background: #f3f2f1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.download-button-secondary:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: #e2e2e2;
    color: #222222;
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
}

.footer a {
    color: #0078d4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #106ebe;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-greeting {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Additional styles merged from Support and Feedback pages */
/* Support / Feedback hero variations */
.hero.min-auto, .hero.min-auto .hero-content {
    min-height: auto;
}

.hero-icon { 
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title.small {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-tagline.small {
    font-size: 1.125rem;
    color: #605e5c;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.support-section {
    padding: 0 20px 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f9ff 100%);
}

.feedback-section {
    padding: 0 20px 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f9ff 100%);
}

.support-card, .feedback-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e1dfdd;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.support-icon, .feedback-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.support-title, .feedback-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #323130;
    margin-bottom: 0.75rem;
}

.support-description, .feedback-description {
    font-size: 1.0625rem;
    color: #605e5c;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.email-link {
    display: inline-block;
    background: #0067c0;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 103, 192, 0.3);
}

.email-link:hover {
    background: #005ba1;
    box-shadow: 0 6px 20px rgba(0, 103, 192, 0.4);
    transform: translateY(-2px);
}

/* FAQ / Suggestions */
.faq-section { padding: 80px 20px; background: #fafafa; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-top: 60px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.faq-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); border-left: 4px solid #0067c0; }

.suggestions-section { padding: 80px 20px; background: #fafafa; }
.suggestions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-top: 60px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.suggestion-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); border-left: 4px solid #0067c0; }

/* Responsive tweaks from Support/Feedback */
@media (max-width: 768px) {
    .hero-icon { font-size: 3rem; }
    .hero-title.small { font-size: 2rem; }
    .hero-tagline.small { font-size: 1.125rem; }
    .support-card { padding: 40px 30px; }
    .feedback-card { padding: 30px 25px; }
    .faq-grid, .suggestions-grid { grid-template-columns: 1fr; }
}
