/* ============================================
   HOLTY — Scandinavian Warmth + Editorial
   Design tokens prefixed --n- (legacy from prior brand,
   kept stable to avoid churn across the marketing site).
   ============================================ */

:root {
    --n-forest: #1B3A2D;
    --n-forest-light: #244A39;
    --n-sage: #8FAE8B;
    --n-sage-muted: #B5CCAF;
    --n-cream: #FAF7F2;
    --n-cream-dark: #F0EBE3;
    --n-terracotta: #C4553A;
    --n-terracotta-light: #D4715A;
    --n-gold: #D4A853;
    --n-gold-muted: #E8CFA0;
    --n-white: #FFFFFF;
    --n-text: #2D2D2D;
    --n-text-muted: #6B6B6B;
    --n-text-light: #9A9A9A;
    --n-border: #E8E4DE;
    --n-radius: 14px;
    --n-radius-lg: 22px;
    --n-font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
    --n-font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --n-transition: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--n-font-body);
    font-weight: 400;
    line-height: 1.65;
    color: var(--n-text);
    background: var(--n-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---- Scroll Reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--n-transition), transform 0.8s var(--n-transition);
}
.reveal.reveal-delay-1 { transition-delay: 0.12s; }
.reveal.reveal-delay-2 { transition-delay: 0.24s; }
.reveal.reveal-delay-3 { transition-delay: 0.36s; }
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s var(--n-transition);
}

.nav-bar.nav-scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--n-border);
    padding: 12px 0;
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--n-font-display);
    font-size: 1.35rem;
    color: var(--n-white);
    transition: color 0.4s;
}
.nav-scrolled .nav-logo { color: var(--n-forest); }

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    transition: color 0.3s;
    letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--n-white); }
.nav-scrolled .nav-links a { color: var(--n-text-muted); }
.nav-scrolled .nav-links a:hover { color: var(--n-forest); }

.nav-cta {
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 100px;
    background: rgba(255,255,255,0.15);
    color: var(--n-white);
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.3s;
    letter-spacing: 0.02em;
}
.nav-cta:hover {
    background: rgba(255,255,255,0.25);
}
.nav-scrolled .nav-cta {
    background: var(--n-forest);
    color: var(--n-white);
    border-color: var(--n-forest);
}
.nav-scrolled .nav-cta:hover {
    background: var(--n-forest-light);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    background: var(--n-forest);
    padding: 160px 0 120px;
    overflow: hidden;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
    pointer-events: none;
}

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

.hero-text { position: relative; z-index: 2; }

.hero-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--n-sage);
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(143,174,139,0.3);
    border-radius: 100px;
}

.hero h1 {
    font-family: var(--n-font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--n-white);
    margin-bottom: 24px;
}

.hero h1 em {
    color: var(--n-sage-muted);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 460px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s;
}
.btn-primary:hover { transform: scale(1.03); }

.store-badge { height: 50px; }

.hero-newsletter {
    display: flex;
    gap: 8px;
    max-width: 400px;
}

.input-email {
    flex: 1;
    padding: 13px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    background: rgba(255,255,255,0.08);
    color: var(--n-white);
    font-family: var(--n-font-body);
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}
.input-email::placeholder { color: rgba(255,255,255,0.35); }
.input-email:focus {
    border-color: var(--n-sage);
    background: rgba(255,255,255,0.12);
}

.btn-accent {
    padding: 13px 24px;
    border: none;
    border-radius: 100px;
    background: var(--n-terracotta);
    color: var(--n-white);
    font-family: var(--n-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
}
.btn-accent:hover {
    background: var(--n-terracotta-light);
    transform: translateY(-1px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

.trust-avatars {
    display: flex;
    gap: -4px;
}
.trust-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-phone-wrap {
    position: relative;
}

.hero-phone-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(143,174,139,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero-phone {
    position: relative;
    max-width: 320px;
    border-radius: 28px;
    box-shadow:
        0 40px 80px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,255,255,0.06);
}

.hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.95);
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--n-text);
    animation: float 4s ease-in-out infinite;
}

.hero-float-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}
.hero-float-2 {
    bottom: 20%;
    left: -10px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--n-terracotta);
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--n-font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--n-forest);
    margin-bottom: 18px;
}

.section-desc {
    font-size: 1.08rem;
    color: var(--n-text-muted);
    line-height: 1.7;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    padding: 100px 0;
    background: var(--n-white);
}

.features-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feat-card {
    position: relative;
    background: var(--n-cream);
    border-radius: var(--n-radius-lg);
    padding: 36px;
    overflow: hidden;
    transition: transform 0.4s var(--n-transition), box-shadow 0.4s var(--n-transition);
}

.feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(27,58,45,0.08);
}

.feat-card-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 32px;
    align-items: center;
}

.feat-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    padding: 12px;
    background: var(--n-white);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.feat-card-wide .feat-icon {
    margin-bottom: 0;
    width: 64px;
    height: 64px;
}
.feat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feat-body h3 {
    font-family: var(--n-font-display);
    font-size: 1.3rem;
    color: var(--n-forest);
    margin-bottom: 8px;
}

.feat-body p {
    font-size: 0.95rem;
    color: var(--n-text-muted);
    line-height: 1.65;
}

.feat-accent {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--n-sage);
    opacity: 0.08;
    pointer-events: none;
}
.feat-accent-alt {
    top: auto;
    bottom: -40px;
    right: auto;
    left: -40px;
    background: var(--n-terracotta);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 100px 0;
    background: var(--n-cream);
}

.steps-track {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.step-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--n-border);
}

.step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 32px 0;
    position: relative;
}

.step-marker {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--n-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.step-marker span {
    font-family: var(--n-font-display);
    font-size: 1.25rem;
    color: var(--n-white);
}

.step-content h3 {
    font-family: var(--n-font-display);
    font-size: 1.35rem;
    color: var(--n-forest);
    margin-bottom: 8px;
    margin-top: 4px;
}

.step-content p {
    font-size: 1rem;
    color: var(--n-text-muted);
    max-width: 440px;
}

/* ============================================
   SHOWCASE
   ============================================ */
.showcase {
    padding: 80px 0;
    background: var(--n-white);
    overflow: hidden;
}

.showcase-scroll-wrap {
    margin: 0 -24px;
    padding: 0 24px;
}

.showcase .showcase-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.showcase .showcase-scroll::-webkit-scrollbar { display: none; }

.showcase .showcase-item {
    flex: 0 0 260px;
    scroll-snap-align: start;
    border-radius: var(--n-radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: transform 0.4s var(--n-transition);
}
.showcase .showcase-item:hover { transform: translateY(-6px); }

.showcase .showcase-item img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--n-forest);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 100px 0;
    background: var(--n-cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.price-card {
    background: var(--n-white);
    border-radius: var(--n-radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    border: 1px solid var(--n-border);
    transition: transform 0.4s var(--n-transition), box-shadow 0.4s var(--n-transition);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(27,58,45,0.06);
}

.price-card-featured {
    border: 2px solid var(--n-forest);
    padding-top: 48px;
    box-shadow: 0 16px 48px rgba(27,58,45,0.1);
}
.price-card-featured:hover {
    box-shadow: 0 24px 64px rgba(27,58,45,0.14);
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--n-forest);
    color: var(--n-white);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.price-header h3 {
    font-family: var(--n-font-display);
    font-size: 1.4rem;
    color: var(--n-forest);
    margin-bottom: 12px;
}

.price-amount {
    font-family: var(--n-font-display);
    font-size: 3rem;
    color: var(--n-text);
    margin-bottom: 4px;
}
.price-amount span {
    font-family: var(--n-font-body);
    font-size: 1rem;
    color: var(--n-text-muted);
    font-weight: 400;
}

.price-period {
    font-size: 0.88rem;
    color: var(--n-text-light);
    display: block;
    margin-bottom: 28px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--n-cream-dark);
    font-size: 0.94rem;
    color: var(--n-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-features li:last-child { border-bottom: none; }

.price-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--n-sage);
    opacity: 0.3;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-5' stroke='%231B3A2D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    opacity: 1;
    background-color: rgba(143,174,139,0.2);
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid var(--n-forest);
    border-radius: 100px;
    font-family: var(--n-font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--n-forest);
    transition: all 0.3s;
    cursor: pointer;
    background: transparent;
}
.btn-outline:hover {
    background: var(--n-forest);
    color: var(--n-white);
}

.btn-primary-solid {
    display: inline-block;
    padding: 14px 32px;
    background: var(--n-forest);
    border: 2px solid var(--n-forest);
    border-radius: 100px;
    font-family: var(--n-font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--n-white);
    transition: all 0.3s;
    cursor: pointer;
}
.btn-primary-solid:hover {
    background: var(--n-forest-light);
    border-color: var(--n-forest-light);
    transform: translateY(-1px);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 100px 0;
    background: var(--n-white);
}

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

.faq-item {
    border-bottom: 1px solid var(--n-border);
    cursor: pointer;
    user-select: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    gap: 16px;
}

.faq-question h3 {
    font-family: var(--n-font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--n-forest);
    transition: color 0.3s;
}

.faq-item:hover .faq-question h3 { color: var(--n-terracotta); }

.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--n-cream);
    color: var(--n-text-muted);
    transition: all 0.3s;
}

.faq-item.open .faq-toggle {
    transform: rotate(180deg);
    background: var(--n-forest);
    color: var(--n-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--n-transition), padding 0.4s var(--n-transition);
    padding: 0 0 0 0;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 0 24px 0;
}

.faq-answer p {
    font-size: 0.98rem;
    color: var(--n-text-muted);
    line-height: 1.7;
    max-width: 600px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    position: relative;
    padding: 120px 0;
    background: var(--n-forest);
    overflow: hidden;
}

.final-cta-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
    pointer-events: none;
}

.final-cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-family: var(--n-font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--n-white);
    margin-bottom: 18px;
}

.final-cta h2 em {
    color: var(--n-sage-muted);
    font-style: italic;
}

.final-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 36px;
}

.final-cta .btn-primary { justify-content: center; }

/* ============================================
   BLOG SECTION (HOME)
   ============================================ */
.blog-section-home {
    padding: 100px 0;
    background: var(--n-cream);
}

/* ============================================
   CONTACT & FOOTER
   ============================================ */
.contact-footer {
    background: var(--n-forest);
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.contact-block h3 {
    font-family: var(--n-font-display);
    font-size: 1.15rem;
    color: var(--n-white);
    margin-bottom: 6px;
}

.contact-block p {
    color: rgba(255,255,255,0.45);
    font-size: 0.92rem;
    margin-bottom: 10px;
}

.contact-email {
    color: var(--n-sage-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: inline-block;
}
.contact-email:hover { color: var(--n-white); }

.footer-nav {
    display: flex;
    gap: 28px;
}

.footer-nav a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--n-white); }

footer {
    background: var(--n-forest);
    border-top: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.3);
    padding: 20px 0;
    text-align: center;
    font-size: 0.82rem;
}

.footer-links {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin: 0 14px;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--n-white);
}

/* Showcase video */
.showcase-item-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--n-radius-lg);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero { padding: 140px 0 100px; }
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { align-items: center; }
    .hero-newsletter { max-width: 100%; }
    .hero-trust { justify-content: center; }
    .hero-phone { max-width: 260px; }
    .hero-float-1 { right: 5%; }
    .hero-float-2 { left: 5%; }

    .features-mosaic {
        grid-template-columns: 1fr;
    }
    .feat-card-wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    .feat-card-wide .feat-icon { margin-bottom: 20px; }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .nav-links { display: none; }

    .contact-footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-nav { justify-content: center; }
}

@media (max-width: 768px) {
    .hero { padding: 120px 0 80px; }
    .hero h1 { font-size: 2.4rem; }
    .hero-phone { max-width: 220px; }
    .hero-float { display: none; }
    .hero-wave svg { height: 50px; }

    .section-header { margin-bottom: 40px; }

    .features, .how-it-works, .pricing, .faq {
        padding: 70px 0;
    }

    .showcase .showcase-item { flex: 0 0 200px; }

    .step { gap: 20px; padding: 24px 0; }
    .step-marker { width: 46px; height: 46px; }
    .step-line { left: 22px; }

    .final-cta { padding: 80px 0; }
}

@media (max-width: 480px) {
    .hero-newsletter {
        flex-direction: column;
    }
    .hero-eyebrow { font-size: 0.72rem; }

    .feat-card { padding: 28px; }
    .price-card { padding: 32px 24px; }

    .showcase .showcase-item { flex: 0 0 180px; }
}

/* ============================================
   TERMS & PRIVACY (shared pages)
   ============================================ */
.terms-content, .privacy-content {
    margin-top: 2rem;
    max-width: 800px;
    padding: 0 24px;
}

.terms-content h1, .privacy-content h1 {
    font-family: var(--n-font-display);
    font-size: 2.2rem;
    color: var(--n-forest);
    margin-bottom: 1rem;
}

.terms-content h2, .privacy-content h2 {
    font-family: var(--n-font-display);
    font-size: 1.4rem;
    color: var(--n-forest);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.terms-content p, .privacy-content p {
    color: var(--n-text-muted);
    margin-bottom: 1rem;
}

.text-muted {
    color: var(--n-text-muted);
}

/* ============================================
   BLOG STYLES
   ============================================ */
.blog-header {
    background: var(--n-forest);
    padding: 120px 0 60px;
    color: var(--n-white);
    text-align: center;
}

.blog-header h1 {
    font-family: var(--n-font-display);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--n-white);
}

.blog-subtitle {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.6;
}

.blog-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-post-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    background: var(--n-white);
    border-radius: var(--n-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s var(--n-transition), box-shadow 0.3s;
    border: 1px solid var(--n-border);
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.blog-post-image {
    height: 100%;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--n-transition);
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    color: var(--n-text-light);
    font-size: 0.88rem;
}

.blog-post-title {
    font-family: var(--n-font-display);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-post-title a {
    color: var(--n-forest);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-post-title a:hover {
    color: var(--n-terracotta);
}

.blog-post-summary {
    flex-grow: 1;
    color: var(--n-text-muted);
    margin-bottom: 1rem;
    line-height: 1.65;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.blog-tag {
    background: var(--n-cream);
    padding: 0.2rem 0.75rem;
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--n-text-muted);
    display: inline-block;
    transition: all 0.2s;
}

a.blog-tag { text-decoration: none; }
a.blog-tag:hover {
    background: var(--n-forest);
    color: var(--n-white);
}

.blog-read-more {
    color: var(--n-terracotta);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: transform 0.2s;
    display: inline-flex;
    align-items: center;
}

.blog-read-more:hover {
    transform: translateX(4px);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-sidebar-section {
    background: var(--n-white);
    border-radius: var(--n-radius);
    padding: 1.5rem;
    border: 1px solid var(--n-border);
}

.blog-sidebar-section h3 {
    font-family: var(--n-font-display);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--n-forest);
}

.blog-sidebar-section p {
    color: var(--n-text-muted);
    margin-bottom: 1rem;
}

.blog-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tag-cloud .blog-tag {
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
}
.blog-tag-cloud .blog-tag:hover {
    background: var(--n-forest);
    color: var(--n-white);
    transform: translateY(-2px);
}

/* Blog Post Detail */
.blog-post-container {
    max-width: 1200px;
    margin: 3rem auto;
}

.blog-post-header {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.blog-post-featured-image {
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: var(--n-radius-lg);
    overflow: hidden;
}

.blog-post-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-post-content-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post-content-main {
    line-height: 1.8;
    color: var(--n-text);
}

.blog-post-content-main h2 {
    font-family: var(--n-font-display);
    font-size: 1.7rem;
    margin: 2rem 0 1rem;
    color: var(--n-forest);
}

.blog-post-content-main h3 {
    font-family: var(--n-font-display);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--n-forest);
}

.blog-post-content-main p {
    margin-bottom: 1.2rem;
    color: var(--n-text-muted);
}

.blog-content-image {
    width: 100%;
    height: auto;
    border-radius: var(--n-radius);
    margin: 1.5rem 0;
}

.blog-content-list {
    margin: 1.2rem 0 1.5rem 1.5rem;
}

.blog-content-list li {
    margin-bottom: 0.6rem;
    color: var(--n-text-muted);
}

.blog-content-cta {
    background: var(--n-cream);
    border-radius: var(--n-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.blog-content-cta p {
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.blog-post-share {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--n-border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.88rem;
    transition: opacity 0.2s;
}

.share-button.twitter { background: #1DA1F2; color: white; }
.share-button.facebook { background: #4267B2; color: white; }
.share-button.linkedin { background: #0077B5; color: white; }
.share-button:hover { opacity: 0.85; }

.blog-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 2rem;
}

.blog-related-posts {
    background: var(--n-white);
    border-radius: var(--n-radius);
    padding: 1.5rem;
    border: 1px solid var(--n-border);
}

.blog-related-posts h3 {
    font-family: var(--n-font-display);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--n-forest);
}

.blog-related-posts ul { list-style: none; padding: 0; }
.blog-related-posts li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--n-cream-dark);
}
.blog-related-posts li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.blog-related-posts a {
    color: var(--n-text);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.4;
}
.blog-related-posts a:hover { color: var(--n-terracotta); }

/* Home Blog Section */
.home-blog-section {
    padding: 80px 0;
    background: var(--n-cream);
}

.section-subtitle {
    text-align: center;
    color: var(--n-text-muted);
    margin: -0.8rem auto 2.5rem;
    max-width: 700px;
    font-size: 1.1rem;
}

.home-blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.home-blog-featured {
    grid-column: 1;
    background: var(--n-white);
    border-radius: var(--n-radius-lg);
    overflow: hidden;
    border: 1px solid var(--n-border);
    transition: transform 0.3s var(--n-transition), box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.home-blog-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.home-blog-featured .home-blog-image { height: 280px; }

.home-blog-secondary {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.home-blog-card {
    background: var(--n-white);
    border-radius: var(--n-radius-lg);
    overflow: hidden;
    border: 1px solid var(--n-border);
    transition: transform 0.3s var(--n-transition), box-shadow 0.3s;
    height: calc(50% - 1rem);
    display: flex;
    flex-direction: column;
}
.home-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.home-blog-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.home-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--n-transition);
}

.home-blog-featured:hover .home-blog-image img,
.home-blog-card:hover .home-blog-image img {
    transform: scale(1.05);
}

.home-blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.home-blog-featured .home-blog-content { padding: 2rem; }

.home-blog-title {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.3;
}
.home-blog-featured .home-blog-title { font-size: 1.4rem; }

.home-blog-title a {
    font-family: var(--n-font-display);
    color: var(--n-forest);
    text-decoration: none;
    transition: color 0.2s;
}
.home-blog-title a:hover { color: var(--n-terracotta); }

.home-blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    color: var(--n-text-light);
    font-size: 0.88rem;
}

.blog-date {
    color: var(--n-text-light);
    display: flex;
    align-items: center;
}
.blog-date:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--n-terracotta);
    border-radius: 50%;
    margin-right: 0.5rem;
}

.home-blog-summary {
    flex-grow: 1;
    color: var(--n-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.65;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-view-all { text-align: center; margin-top: 2rem; }
.blog-empty-state {
    text-align: center;
    padding: 3rem;
    background: var(--n-white);
    border-radius: var(--n-radius);
    border: 1px solid var(--n-border);
    margin: 2rem 0;
}
.blog-empty-state p {
    margin-bottom: 1.5rem;
    color: var(--n-text-muted);
    font-size: 1.05rem;
}

/* Tag filter */
.tag-filter-info {
    background: var(--n-cream);
    padding: 0.75rem 1.5rem;
    border-radius: var(--n-radius);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.92rem;
}
.clear-filter {
    color: var(--n-terracotta);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}
.clear-filter:hover { text-decoration: underline; }
.blog-tag.active { background: var(--n-forest); color: var(--n-white); }

/* App Showcase (old) */
.app-showcase { padding: 2.5rem 0; background-color: var(--n-white); }
.showcase-scroll { display: flex; overflow-x: auto; gap: 1.5rem; padding: 1.5rem; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scroll-snap-type: x mandatory; }
.showcase-item { flex: 0 0 300px; scroll-snap-align: start; border-radius: var(--n-radius); overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.06); transition: transform 0.3s; }
.showcase-item:hover { transform: translateY(-4px); }
.showcase-item img, .showcase-item video { width: 100%; height: auto; object-fit: cover; display: block; }
.video-wrapper { position: relative; width: 100%; max-width: 300px; overflow: hidden; border-radius: var(--n-radius); }
.video-wrapper video { width: 100%; height: auto; display: block; }
.screenshot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }

/* Contact Support */
.contact-support { padding: 50px 0; background: var(--n-white); text-align: center; }
.contact-methods { display: flex; justify-content: center; margin-top: 1.5rem; }
.contact-method { padding: 1rem 2rem; }
.contact-method h3 { margin: 0.8rem 0; color: var(--n-forest); }

/* CTA Button (legacy) */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    color: var(--n-forest);
    border: 2px solid var(--n-forest);
    transition: all 0.2s;
    font-weight: 600;
}
.cta-button:hover { background: var(--n-forest); color: var(--n-white); }
.cta-button.primary { background: var(--n-forest); color: var(--n-white); }
.cta-button.primary:hover { background: var(--n-forest-light); border-color: var(--n-forest-light); }

/* ---- Blog responsive ---- */
@media (max-width: 992px) {
    .blog-container, .blog-post-content-container { grid-template-columns: 1fr; }
    .blog-sidebar, .blog-post-sidebar { margin-top: 3rem; }
    .blog-post-card { grid-template-columns: 1fr; }
    .blog-post-image { height: 200px; }
    .home-blog-grid { grid-template-columns: 1fr; }
    .home-blog-featured, .home-blog-secondary { grid-column: 1; }
    .home-blog-featured .home-blog-image { height: 220px; }
    .home-blog-card { height: auto; }
}

@media (max-width: 768px) {
    .blog-header { padding: 100px 0 40px; }
    .blog-header h1 { font-size: 2.2rem; }
    .blog-subtitle { font-size: 1rem; }
    .blog-post-title { font-size: 1.7rem; }
    .section-subtitle { font-size: 1rem; margin-bottom: 2rem; }
    .home-blog-featured .home-blog-content { padding: 1.5rem; }
    .home-blog-featured .home-blog-title { font-size: 1.3rem; }
    .home-blog-image { height: 160px; }
}

@media (max-width: 480px) {
    .home-blog-featured .home-blog-image { height: 180px; }
    .home-blog-featured .home-blog-title { font-size: 1.2rem; }
    .showcase-item { flex: 0 0 220px; }
    .video-wrapper { max-width: 220px; }
    .screenshot-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
    .showcase-grid { grid-template-columns: 1fr; gap: 2rem; }
    .video-wrapper { max-width: 300px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .showcase-scroll { gap: 0.75rem; padding: 0.75rem; }
    .showcase-item { flex: 0 0 240px; }
    .video-wrapper { max-width: 240px; }
    .screenshot-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* ============================================
   Shared site footer (used by _Layout)
   ============================================ */
.site-footer {
    border-top: 1px solid var(--n-border);
    padding: 48px 24px 32px;
    background: var(--n-cream);
    margin-top: 80px;
}
.site-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.site-footer-mark {
    font-family: var(--n-font-display);
    font-size: 20px;
    color: var(--n-forest);
    text-decoration: none;
}
.site-footer-mark .dot { color: var(--n-gold); }
.site-footer-links {
    display: flex;
    gap: 24px;
    font-size: 14px;
}
.site-footer-links a {
    color: var(--n-text-muted);
    text-decoration: none;
    transition: color 0.2s var(--n-transition);
}
.site-footer-links a:hover { color: var(--n-forest); }
.site-footer-copy {
    max-width: 1180px;
    margin: 24px auto 0;
    text-align: center;
    font-size: 12.5px;
    color: var(--n-text-light);
}
