/* ========== VARIABLES ========== */
:root {
    --bg: #fff0df;
    --text: #3b2314;
    --text-light: rgba(59, 35, 20, 0.5);
    --highlight: #ffb6c1;
    --radius: 16px;
    --nav-height: 64px;
}

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

html {
    scroll-behavior: auto;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro", "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

/* ========== NAVIGATION ========== */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 240, 223, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 35, 20, 0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
}

.nav-icon {
    width: 36px;
    height: 36px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.nav-link:hover {
    background: rgba(59, 35, 20, 0.05);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: var(--radius);
    background: rgba(59, 35, 20, 0.05);
    border: 1.5px solid rgba(59, 35, 20, 0.1);
    overflow: hidden;
}

.nav-cta .btn-icon-left,
.nav-cta .btn-icon-right {
    font-size: 1.1rem;
}

.nav-cta:hover .btn-icon-left {
    opacity: 0;
    transform: translateX(-12px);
}

.nav-cta:hover .btn-icon-right {
    opacity: 1;
    transform: translateX(0);
}

.nav-cta:hover span {
    transform: translateX(-10px);
}

.nav-cta span {
    transition: transform 0.35s ease;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
    cursor: pointer;
}

.burger-menu span {
    width: 100%;
    height: 1.5px;
    background-color: var(--text);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(255, 240, 223, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    padding: 20px 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu ul li {
    padding: 14px 0;
}

.mobile-menu ul li a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ========== HERO ========== */
.hero {
    text-align: center;
    padding: 100px 32px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--text);
}

.hero h1 .highlight {
    background: var(--highlight);
    padding: 0 8px;
    border-radius: 8px;
    text-decoration: none;
}

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

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    overflow: hidden;
    position: relative;
}

.btn-icon-left,
.btn-icon-right {
    font-size: 1.3rem;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.btn-icon-right {
    opacity: 0;
    transform: translateX(-8px);
    margin-left: -4px;
}

.btn:hover .btn-icon-left {
    opacity: 0;
    transform: translateX(-12px);
}

.btn:hover .btn-icon-right {
    opacity: 1;
    transform: translateX(0);
}

.btn:hover span {
    transform: translateX(-10px);
    transition: transform 0.35s ease;
}

.btn span {
    transition: transform 0.35s ease;
}

.btn-dark {
    background: var(--text);
    color: var(--bg);
}

.btn-dark:hover {
}

.btn-light {
    background: rgba(59, 35, 20, 0.05);
    color: var(--text);
    border: 1.5px solid rgba(59, 35, 20, 0.15);
}

.btn-light:hover {
    background: rgba(59, 35, 20, 0.08);
}

/* ========== HERO SUBTITLE ========== */
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 24px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ========== APP PREVIEW ========== */
.app-preview {
    max-width: 900px;
    margin: -10px auto 0;
    padding: 0 32px 80px;
}

.app-preview img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(59, 35, 20, 0.15);
}

.app-preview-icon {
    width: 200px;
    height: 200px;
    border-radius: 44px;
    box-shadow: 0 20px 60px rgba(59, 35, 20, 0.15);
}

/* ========== SHOWCASE (alternating text/image blocks) ========== */
.showcase {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.showcase-block {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 80px 0;
}

.showcase-block:nth-child(even) {
    flex-direction: row-reverse;
}

.showcase-text {
    flex: 2;
    min-width: 0;
}

.showcase-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: var(--text);
}

.showcase-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.showcase-img {
    flex: 3;
    min-width: 0;
}

.showcase-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(59, 35, 20, 0.12);
}

.showcase-portrait .showcase-img {
    flex: 2;
}

.showcase-portrait .showcase-img img {
    max-width: 440px;
    margin: 0 auto;
    display: block;
}

/* ========== FEATURE GRID (compact) ========== */
.feature-grid-section {
    padding: 80px 32px;
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(59, 35, 20, 0.08);
}

.feature-grid-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
    color: var(--text);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-grid-item {
    text-align: center;
    padding: 32px 16px;
}

.feature-grid-item i {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 14px;
    display: block;
}

.feature-grid-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.feature-grid-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ========== macOS TRUST SECTION ========== */
.macos-section {
    text-align: center;
    padding: 40px 32px;
    max-width: 700px;
    margin: 0 auto;
}

.macos-section .app-preview-icon {
    width: 140px;
    height: 140px;
    border-radius: 32px;
    box-shadow: 0 12px 40px rgba(59, 35, 20, 0.12);
    margin-bottom: 28px;
}

.macos-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    color: var(--text);
}

.macos-section p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.macos-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.macos-badge {
    background: rgba(59, 35, 20, 0.05);
    border: 1px solid rgba(59, 35, 20, 0.08);
    border-radius: 980px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

/* ========== CTA SECTION (with title) ========== */
.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
    color: var(--text);
}

/* ========== FEATURES ========== */
.features {
    padding: 60px 32px;
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(59, 35, 20, 0.08);
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item i,
.feature-item svg {
    font-size: 2.8rem;
    color: var(--text);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

/* ========== CTA SECTION ========== */
.cta-section {
    text-align: center;
    padding: 60px 32px 80px;
}

/* ========== SUPPORT ========== */
.section {
    padding: 80px 0 0;
}

.section-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.support-card {
    background: rgba(59, 35, 20, 0.03);
    border: 1px solid rgba(59, 35, 20, 0.08);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s;
}

.support-card:hover {
    background: rgba(59, 35, 20, 0.06);
}

.support-card i,
.support-card svg {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 14px;
}

.support-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.support-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.support-card a {
    display: inline-block;
    margin-top: 14px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: opacity 0.2s;
}

.support-card a:hover {
    opacity: 0.6;
}

/* ========== FAQ ========== */
#faq {
    scroll-margin-top: calc(var(--nav-height) + 24px);
}

.faq-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(59, 35, 20, 0.1);
}

.faq-question {
    width: 100%;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: opacity 0.2s;
}

.faq-question:hover {
    opacity: 0.6;
}

.faq-question i,
.faq-question svg {
    font-size: 0.75rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question i,
.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    text-align: center;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 700;
    color: rgba(59, 35, 20, 0.04);
    letter-spacing: -4px;
    margin-bottom: 40px;
    pointer-events: none;
    user-select: none;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    min-width: 150px;
    margin-bottom: 24px;
}

.footer-section h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: var(--text);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(59, 35, 20, 0.08);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 12px;
}

/* ========== LANGUAGE DROPDOWN ========== */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown-toggle {
    background: none;
    border: none;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    transition: opacity 0.2s;
}

.lang-dropdown-toggle:hover {
    opacity: 0.6;
}

.lang-chevron {
    font-size: 0.55rem !important;
    transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-chevron {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 240, 223, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 35, 20, 0.1);
    border-radius: 12px;
    list-style: none;
    padding: 4px;
    min-width: 140px;
    box-shadow: 0 8px 32px rgba(59, 35, 20, 0.1);
}

.lang-dropdown.open .lang-dropdown-menu {
    display: block;
}

.lang-option {
    display: block;
    padding: 8px 14px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.lang-option:hover {
    background: rgba(59, 35, 20, 0.06);
}

.lang-option.active {
    font-weight: 600;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== CONTACT PAGE ========== */
.page-content {
    padding-top: 40px;
    min-height: calc(100vh - var(--nav-height));
}

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

.section-label {
    display: inline-block;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* Contact form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.contact-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-detail i,
.contact-detail svg {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(59, 35, 20, 0.05);
    border: 1px solid rgba(59, 35, 20, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-detail span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-form {
    background: rgba(59, 35, 20, 0.03);
    border: 1px solid rgba(59, 35, 20, 0.08);
    border-radius: var(--radius);
    padding: 32px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(59, 35, 20, 0.12);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--text);
    box-shadow: 0 0 0 3px rgba(59, 35, 20, 0.06);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select option {
    background: #fff;
}

.form-submit {
    width: 100%;
    padding: 14px 28px;
    background: var(--text);
    color: var(--bg);
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s;
}

.form-submit:hover {
    opacity: 0.85;
}

.form-submit:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.form-message {
    padding: 0;
    border-radius: 12px;
    font-size: 0.85rem;
    text-align: center;
}

.form-message-success {
    padding: 12px 16px;
    background-color: rgba(52, 199, 89, 0.1);
    color: #1a7a34;
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.form-message-error {
    padding: 12px 16px;
    background-color: rgba(255, 59, 48, 0.1);
    color: #c0392b;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

/* ========== LEGAL PAGES ========== */
.legal-content {
    max-width: 700px;
    margin: 0 auto;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 36px 0 14px;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 20px 0 10px;
}

.legal-content a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}

.legal-content a:hover {
    opacity: 0.6;
}

.legal-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    list-style: none;
    margin-bottom: 16px;
}

.legal-content ul li {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
    padding-left: 18px;
    position: relative;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text-light);
}

.legal-update {
    display: inline-block;
    margin-bottom: 28px;
    color: var(--text-light);
    font-size: 0.8rem;
    padding: 4px 12px;
    background: rgba(59, 35, 20, 0.04);
    border: 1px solid rgba(59, 35, 20, 0.08);
    border-radius: 8px;
}

/* ========== RELEASE NOTES ========== */
.releases {
    max-width: 640px;
    margin: 0 auto;
}

.release {
    padding: 40px 0;
    border-bottom: 1px solid rgba(59, 35, 20, 0.08);
}

.release:last-child {
    border-bottom: none;
}

.release-version {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 6px;
    background: rgba(59, 35, 20, 0.06);
    color: var(--text);
    margin-bottom: 14px;
}

.release-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.release-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.release-changes {
    margin-bottom: 16px;
}

.release-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.release-changes ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.release-changes ul li {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 18px;
    position: relative;
}

.release-changes ul li::before {
    content: '·';
    position: absolute;
    left: 4px;
    top: 0;
    font-weight: 700;
    color: var(--text-light);
}

.release-footnote {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ========== DOWNLOAD PAGE ========== */
.download-hero {
    text-align: center;
    padding: 40px 0 60px;
}

img.download-app-icon {
    width: 140px;
    height: 140px;
    border-radius: 30px;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 12px 40px rgba(59, 35, 20, 0.12);
}

.download-app-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.download-app-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

.download-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    text-align: center;
}

.download-feature {
    padding: 24px 16px;
}

.download-feature i,
.download-feature svg {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 14px;
}

.download-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.download-feature p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Old classes kept for compatibility */
.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
    background: var(--text);
    color: var(--bg);
}

.download-btn:hover {
    opacity: 0.85;
}

/* Pricing (kept for download page compatibility) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-card {
    background: rgba(59, 35, 20, 0.03);
    border: 1px solid rgba(59, 35, 20, 0.08);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--text);
}

.pricing-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text);
    color: var(--bg);
    padding: 3px 14px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.pricing-card .price { font-size: 2.8rem; font-weight: 700; margin: 16px 0; letter-spacing: -2px; }
.pricing-card .price span { font-size: 0.95rem; font-weight: 400; color: var(--text-light); }
.pricing-card .price-desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 20px; }

.pricing-features { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-features li { padding: 7px 0; font-size: 0.9rem; color: var(--text-light); display: flex; align-items: center; gap: 10px; }
.pricing-features li i, .pricing-features li svg { color: var(--text); font-size: 0.75rem; width: 14px; flex-shrink: 0; }

.pricing-btn { display: inline-block; width: 100%; padding: 14px 24px; border-radius: var(--radius); font-size: 0.95rem; font-weight: 700; text-decoration: none; transition: opacity 0.2s; text-align: center; }
.pricing-btn-primary { background: var(--text); color: var(--bg); }
.pricing-btn-primary:hover { opacity: 0.85; }
.pricing-btn-secondary { background: rgba(59, 35, 20, 0.06); color: var(--text); }
.pricing-btn-secondary:hover { background: rgba(59, 35, 20, 0.1); }
.pricing-note { text-align: center; margin-top: 32px; color: var(--text-light); font-size: 0.85rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-right {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

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

    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

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

    .support-cards {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .app-preview-icon {
        width: 140px;
        height: 140px;
        border-radius: 32px;
    }

    /* Showcase */
    .showcase-block {
        flex-direction: column !important;
        gap: 32px;
        padding: 48px 0;
    }

    .showcase-img {
        order: -1;
    }

    /* Feature grid */
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-grid-item {
        padding: 20px 12px;
    }

    /* macOS section */
    .macos-badges {
        gap: 8px;
    }

    .macos-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
}
