:root {
    --green: #3b8f29;
    --green-dark: #2b6e1e;
    --green-soft: #edf7e8;
    --gold: #b38b2d;
    --gold-soft: #f8f3e4;
    --text: #1d1d1d;
    --text-soft: #3f3f3f;
    --line: #d7d7d7;
    --line-strong: #bdbdbd;
    --bg: #f3f3f3;
    --white: #ffffff;
    --shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    --max-width: 1180px;
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: var(--green);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--green-dark);
    text-decoration: underline;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--max-width), calc(100% - 2rem));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 9999;
    background: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    padding: 0.75rem 1rem;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.brand-bar {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.brand-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand-block {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.02em;
}

.brand-subtitle {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.94rem;
}

.header-actions,
.nav-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.6rem 1.05rem;
    border-radius: 999px;
    background: var(--green);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.header-button:hover,
.header-button:focus {
    background: var(--green-dark);
    color: #ffffff;
    text-decoration: none;
}

.main-nav {
    background: var(--green);
    border-bottom: 2px solid var(--green-dark);
}

.nav-inner {
    gap: 0;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 50px;
    padding: 0 1rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.97rem;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.main-nav a:hover,
.main-nav a:focus {
    background: var(--green-dark);
    text-decoration: none;
}

.hero {
    background: linear-gradient(180deg, #ffffff 0%, #f5f9f2 100%);
    border-bottom: 1px solid var(--line);
    padding: 2.4rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
    align-items: stretch;
}

.hero-copy,
.hero-card,
.benefit-card,
.feature-card,
.screen-card,
.download-card,
.side-box,
.legal-wrap,
.faq-card {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 2.2rem;
    border-radius: var(--radius);
}

.hero-card {
    padding: 1.4rem;
    border-radius: var(--radius);
    background: #f8faf7;
    border: 1px solid #dbe6d8;
}

.hero-image-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-screenshot {
    width: 100%;
    height: auto;
    border: 1px solid #cfd8cf;
    border-radius: 4px;
    background: #ffffff;
    padding: 8px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.hero-copy .button {
    margin-top: 1.5rem;
}

.image-caption {
    margin: 0.85rem 0 0 0;
    font-size: 0.93rem;
    color: #666666;
}

.eyebrow,
.section-label {
    margin: 0 0 0.75rem 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #606060;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.15;
    color: var(--text);
    letter-spacing: -0.015em;
}

h1 {
    font-family: Calibri, Candara, "Segoe UI", Optima, Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(1.95rem, 3.6vw, 3rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    margin-bottom: 0.9rem;
}

h3 {
    font-size: 1.12rem;
    margin-bottom: 0.65rem;
}

p {
    margin-top: 0;
    color: var(--text-soft);
}

.hero-text {
    max-width: 760px;
    font-size: 1.08rem;
    margin-bottom: 1rem;
}

.hero-note {
    margin: 1.25rem 0 0 0;
    font-size: 0.96rem;
}

.benefits-strip {
    padding: 1.6rem 0;
}

.benefits-grid,
.feature-grid,
.screen-grid,
.faq-grid,
.download-grid {
    display: grid;
    gap: 1rem;
}

.benefits-grid {
    grid-template-columns: repeat(4, 1fr);
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.screen-grid {
    grid-template-columns: repeat(3, 1fr);
}

.faq-grid {
    grid-template-columns: repeat(3, 1fr);
}

.download-grid {
    grid-template-columns: repeat(3, 1fr);
}

.benefit-card,
.feature-card,
.download-card,
.faq-card {
    padding: 1.3rem;
    border-radius: var(--radius);
}

.section {
    padding: 2.7rem 0;
}

.section-white {
    background: #ffffff;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.section-soft {
    background: #f8f9f8;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.55fr;
    gap: 1rem;
}

.side-box {
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    background: var(--gold-soft);
}

.side-box-title {
    margin: 0 0 0.6rem 0;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b5a2a;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 1.45rem;
}

.screen-card {
    border-radius: var(--radius);
    overflow: hidden;
}

.screen-placeholder {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #edf4eb 0%, #dde9da 100%);
    border-bottom: 1px solid var(--line);
    color: #507350;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.screen-image {
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--line);
    background: #ffffff;
}

.screen-body {
    padding: 1rem 1.1rem 1.2rem 1.1rem;
}

.download-card.active {
    border-color: #b9d1b1;
}

.download-status {
    margin-bottom: 0.65rem;
    font-weight: 700;
    color: var(--green-dark);
}

.download-status.muted {
    color: #737373;
}

.download-intro {
    max-width: 820px;
    margin-bottom: 1.1rem;
    font-size: 1.04rem;
}

.download-note,
.legal-note {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fbfbfb;
    box-shadow: var(--shadow);
}

.legal-wrap {
    max-width: 760px;
    padding: 1.5rem;
    border-radius: var(--radius);
}

.legal-page-wrap {
    max-width: 900px;
}

.legal-block + .legal-block {
    margin-top: 1.35rem;
    padding-top: 1.35rem;
    border-top: 1px solid #e5e5e5;
}

.legal-block h3 {
    margin-bottom: 0.55rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.button:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.button-primary {
    background: var(--green);
    color: #ffffff;
    border-color: var(--green-dark);
}

.button-primary:hover,
.button-primary:focus {
    background: var(--green-dark);
    color: #ffffff;
}

.button-secondary {
    background: #ffffff;
    color: var(--green);
    border-color: var(--line-strong);
}

.button-secondary:hover,
.button-secondary:focus {
    background: #f1f5f2;
    color: var(--green-dark);
}

.button-disabled {
    background: #ececec;
    color: #7b7b7b;
    border-color: #d5d5d5;
    cursor: not-allowed;
}

.button-disabled:hover {
    transform: none;
}

.button-full {
    width: 100%;
}

.text-link {
    font-weight: 700;
}

.site-footer {
    background: #efefef;
    border-top: 1px solid var(--line);
    padding: 1.8rem 0 2.3rem 0;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.footer-inner-simple {
    justify-content: flex-start;
}

.footer-brand {
    margin-bottom: 0.35rem;
    font-weight: 700;
    color: var(--text);
}

.footer-copy {
    margin-bottom: 0;
}

.windows-warning {
    margin-left: 2rem;
}


@media (max-width: 1100px) {
    .hero-grid,
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .feature-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screen-grid,
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .brand-inner,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-actions,
    .nav-inner,
    .benefits-grid,
    .feature-grid,
    .screen-grid,
    .faq-grid,
    .download-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .main-nav a {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .button,
    .header-button {
        width: 100%;
    }

    .screen-placeholder {
        height: 185px;
    }

    .hero-copy,
    .hero-card {
        padding: 1.4rem;
    }
}

/* FAQ question headings (override large global h2) */
.faq-card h2 {
    font-size: 1.08rem;     /* close to your current h3 */
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.section-heading h2 {
    font-size: 1.6rem;     /* increased from 1.35rem */
    font-weight: 600;
    margin-bottom: 0.6rem;
    line-height: 1.25;
}
