/*
 Theme Name: Pazury Child
 Theme URI: https://www.sebastianpazury.com
 Description: Custom child theme for Sebastian Pazury — AI Automation Expert
 Author: Sebastian Pazury
 Author URI: https://www.sebastianpazury.com
 Template: astra
 Version: 2.0.0
 Text Domain: pazury-child
*/

/* ============================================
   DESIGN SYSTEM — Dark Cinematic (Variant A)
   Fonts: Montserrat (headings), IBM Plex Sans (body), IBM Plex Mono (data)
   Colors: Dark #111111, Accent Green #2B8838
   ============================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

:root {
    --dark: #111111;
    --dark-surface: #1a1a1a;
    --dark-card: #181818;
    --light: #F5F5F5;
    --accent: #2B8838;
    --accent-hover: #236e2d;
    --accent-glow: rgba(43, 136, 56, 0.15);
    --text-white: #FFFFFF;
    --text-white-muted: rgba(255,255,255,0.65);
    --text-white-dim: rgba(255,255,255,0.4);
    --text-dark: #111111;
    --text-dark-muted: #737373;
    --card-border: rgba(255,255,255,0.08);
    --card-border-hover: rgba(255,255,255,0.15);
    --radius-card: 1rem;
    --radius-btn: 0.5rem;
    --radius-pill: 2rem;
    --radius-img: 1.25rem;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'IBM Plex Sans', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --container: 1200px;
    --section-pad: 7rem;
    --section-pad-mobile: 4rem;
}

/* ===== BODY (homepage override) ===== */
body.pazury-home {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-white-muted);
    background: var(--dark);
    overflow-x: hidden;
}

/* Film grain overlay */
body.pazury-home::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.04;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Hide Astra's default header/footer on homepage */
body.pazury-home .site-header,
body.pazury-home .ast-primary-header-bar,
body.pazury-home .ast-above-header,
body.pazury-home .ast-below-header,
body.pazury-home .site-footer,
body.pazury-home .ast-footer-overlay,
body.pazury-home .ast-small-footer,
body.pazury-home #ast-scroll-top,
body.pazury-home .ast-header-break-point .ast-mobile-header-wrap,
body.pazury-home .entry-header {
    display: none !important;
}

/* Remove Astra container constraints on homepage */
body.pazury-home .site-content,
body.pazury-home .ast-container,
body.pazury-home .ast-separate-container .ast-article-single,
body.pazury-home .ast-separate-container .site-content > .ast-container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}
body.pazury-home #content { padding: 0 !important; }
body.pazury-home .entry-content { margin: 0 !important; }

/* ===== TYPOGRAPHY ===== */
body.pazury-home h1,
body.pazury-home h2,
body.pazury-home h3,
body.pazury-home h4,
body.pazury-home h5,
body.pazury-home h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

body.pazury-home h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; }
body.pazury-home h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
body.pazury-home h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }

body.pazury-home p { max-width: 640px; }

body.pazury-home a { color: inherit; text-decoration: none; transition: color 150ms ease, transform 150ms ease; }
body.pazury-home a:hover { color: var(--accent); transform: translateY(-1px); }

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== EYEBROW PILL ===== */
.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 1rem;
    border: 1px solid var(--accent);
    border-radius: var(--radius-pill);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 200ms ease, background 200ms ease;
    text-decoration: none;
}
.btn:hover {
    transform: scale(1.03) translateY(-1px);
    color: inherit;
}
.btn-primary {
    background: var(--accent);
    color: var(--text-white);
    box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 8px 32px rgba(43, 136, 56, 0.25);
    color: var(--text-white);
}
.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover {
    border-color: rgba(255,255,255,0.5);
    color: var(--text-white);
}
.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== EFFECT: SCROLL PROGRESS BAR (all pages) ===== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #3dba4f);
    z-index: 9998;
    transition: width 50ms linear;
    box-shadow: 0 0 10px rgba(43,136,56,0.4), 0 0 20px rgba(43,136,56,0.1);
}
.scroll-percent {
    position: fixed;
    top: 4.5rem;
    right: 2rem;
    z-index: 200;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    opacity: 0;
    transition: opacity 300ms ease;
}
.scroll-percent.visible { opacity: 1; }

/* ===== EFFECT: FLOATING PARTICLES CANVAS ===== */
.particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ===== EFFECT: CONSTELLATION CANVAS ===== */
.constellation-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ===== EFFECT: AURORA GRADIENT BANDS ===== */
.aurora-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.aurora-band {
    position: absolute;
    width: 150%;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.06;
}
.aurora-band:nth-child(1) {
    background: linear-gradient(90deg, transparent, var(--accent), rgba(61,186,79,0.5), transparent);
    top: 10%;
    left: -25%;
    animation: auroraMove1 12s ease-in-out infinite;
}
.aurora-band:nth-child(2) {
    background: linear-gradient(90deg, transparent, rgba(43,136,56,0.7), transparent);
    top: 50%;
    left: -10%;
    animation: auroraMove2 15s ease-in-out infinite;
}
.aurora-band:nth-child(3) {
    background: linear-gradient(90deg, transparent, rgba(61,186,79,0.4), var(--accent), transparent);
    top: 75%;
    left: -30%;
    animation: auroraMove3 18s ease-in-out infinite;
}
@keyframes auroraMove1 {
    0%, 100% { transform: translateX(0) rotate(-3deg); }
    50% { transform: translateX(10%) rotate(2deg); }
}
@keyframes auroraMove2 {
    0%, 100% { transform: translateX(0) rotate(2deg); }
    50% { transform: translateX(-8%) rotate(-2deg); }
}
@keyframes auroraMove3 {
    0%, 100% { transform: translateX(0) rotate(-1deg); }
    50% { transform: translateX(12%) rotate(3deg); }
}

/* ===== EFFECT: GLOWING SECTION DIVIDERS ===== */
.glow-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(43,136,56,0.4), var(--accent), rgba(43,136,56,0.4), transparent);
    position: relative;
    margin: 0;
}
.glow-divider::after {
    content: '';
    position: absolute;
    inset: -4px 20% -4px 20%;
    background: linear-gradient(90deg, transparent, rgba(43,136,56,0.15), rgba(43,136,56,0.25), rgba(43,136,56,0.15), transparent);
    filter: blur(6px);
}

/* ===== EFFECT: CARD HOVER GLOW (applied globally) ===== */
.pain-card:hover,
.service-card:hover,
.faq-card:hover,
.contact-card:hover,
.service-example-card:hover,
.knowledge-diagram:hover,
.newsletter-form-wrap:hover {
    border-color: rgba(43,136,56,0.3);
    box-shadow:
        0 0 20px rgba(43,136,56,0.08),
        0 0 60px rgba(43,136,56,0.04),
        inset 0 0 20px rgba(43,136,56,0.03);
}
.pain-card:hover h3,
.service-card:hover h3,
.faq-card:hover h4 { color: var(--accent); }
.pain-card h3,
.service-card h3,
.faq-card h4 { transition: color 300ms ease; }
.pain-card,
.service-card,
.faq-card,
.contact-card,
.service-example-card,
.knowledge-diagram,
.newsletter-form-wrap {
    transition: transform 250ms ease, box-shadow 300ms ease, border-color 300ms ease;
}
.pain-card-icon,
.service-icon { transition: background 300ms ease; }
.pain-card:hover .pain-card-icon,
.service-card:hover .service-icon { background: rgba(43,136,56,0.2); }

/* ===== EFFECT: GRADIENT TOP BORDER (step cards) ===== */
.step-card { position: relative; overflow: hidden; }

/* ===== EFFECT: RADIAL PULSE (hero breathing glow) ===== */
.hero-pulse {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43,136,56,0.08) 0%, transparent 70%);
    animation: heroPulse 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes heroPulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* ===== EFFECT: ANIMATED UNDERLINES (inline links only) ===== */
.footer-links a,
.newsletter-explore-links a,
.contact-social-link,
.footer-email {
    position: relative;
}
.footer-links a::after,
.newsletter-explore-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1.5px;
    background: linear-gradient(90deg, var(--accent), #3dba4f);
    transition: width 300ms ease;
}
.footer-links a:hover::after,
.newsletter-explore-links a:hover::after { width: 100%; }

/* ===== SECTION ===== */
body.pazury-home section {
    padding: var(--section-pad) 0;
    position: relative;
}

/* ===== 1. NAVBAR ===== */
.navbar {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    transition: background 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
    max-width: calc(var(--container) - 4rem);
    width: calc(100% - 3rem);
}
.navbar.scrolled {
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-wordmark {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8125rem;
    color: var(--text-white);
    letter-spacing: 0.12em;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}
.nav-wordmark:hover {
    color: var(--text-white);
    transform: none;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    margin: 0 auto;
    list-style: none;
}
.nav-links a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-white-muted);
    transition: color 150ms ease;
}
.nav-links a:hover { color: var(--text-white); transform: none; }
.nav-cta {
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: var(--text-white) !important;
    border-radius: var(--radius-btn);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 200ms ease, transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}
.nav-cta:hover {
    background: var(--accent-hover);
    transform: scale(1.03) translateY(-1px);
    color: var(--text-white) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: transform 300ms ease, opacity 300ms ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.97);
    backdrop-filter: blur(24px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
}

/* ===== 2. HERO ===== */
.hero {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 6rem;
    position: relative;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(43, 136, 56, 0.06) 0%, transparent 70%);
}
.hero-content { max-width: 800px; }
.hero .eyebrow-pill {
    opacity: 0;
    animation: fadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}
.hero h1 {
    opacity: 0;
    animation: fadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s forwards;
    margin-bottom: 1.25rem;
}
.hero .hero-sub {
    opacity: 0;
    animation: fadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
    font-size: 1.125rem;
    margin: 0 auto 2.5rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.65s forwards;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeUp 0.7s ease 1s forwards;
}
.scroll-indicator svg {
    animation: bounceDown 2s ease-in-out infinite;
    opacity: 0.35;
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ===== 3. PROBLEM SECTION ===== */
.problem { background: var(--dark); position: relative; }
.problem .section-header { text-align: center; margin-bottom: 3.5rem; }
.problem .section-header p { margin: 1.25rem auto 0; }
.pain-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.pain-card {
    background: var(--dark-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    padding: 2rem;
    transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.pain-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    border-color: var(--card-border-hover);
}
.pain-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43, 136, 56, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    color: var(--accent);
    font-size: 1.25rem;
}
.pain-card h3 { margin-bottom: 0.75rem; font-size: 1.125rem; }

/* ===== 4. SERVICES ===== */
.services { background: var(--dark); }
.services .section-header { text-align: center; margin-bottom: 3.5rem; }
.services .section-header p { margin: 1rem auto 0; }
.service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.service-card {
    background: var(--dark-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    border-color: var(--card-border-hover);
}
.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43, 136, 56, 0.1);
    border-radius: 0.875rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}
.service-card h3 { margin-bottom: 1rem; }
.service-card > p { margin-bottom: 1.5rem; font-size: 0.9375rem; flex-grow: 1; }
.service-checks {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}
.service-checks li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-white-muted);
}
.service-checks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
}
.service-checks li::after {
    content: '';
    position: absolute;
    left: 3px;
    top: calc(0.45em + 3px);
    width: 8px;
    height: 5px;
    border-left: 2px solid var(--dark-card);
    border-bottom: 2px solid var(--dark-card);
    transform: rotate(-45deg);
}
.service-price {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--text-white-dim);
    border-top: 1px solid var(--card-border);
    padding-top: 1.25rem;
    margin-top: auto;
}
.service-price span {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-white-muted);
}
.services-cta { text-align: center; }

/* ===== 5. MANIFESTO ===== */
.manifesto {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding: 9rem 0;
}
.manifesto::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(43,136,56,0.05) 0%, transparent 60%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.01) 2px, rgba(255,255,255,0.01) 4px);
    pointer-events: none;
}
.manifesto-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.manifesto-small {
    font-size: 1.125rem;
    color: var(--text-white-dim);
    margin-bottom: 1.5rem;
}
.manifesto-big {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}
.manifesto-big .accent { color: var(--accent); }
.manifesto-support {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== 6. KNOWLEDGE SYSTEMS ===== */
.knowledge { background: var(--dark); }
.knowledge .section-header { text-align: center; margin-bottom: 3.5rem; }
.knowledge .section-header p { margin: 1rem auto 0; }
.knowledge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.knowledge-bullets { list-style: none; }
.knowledge-bullets li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--text-white-muted);
}
.knowledge-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
}
.knowledge-bullets li::after {
    content: '';
    position: absolute;
    left: 2.5px;
    top: calc(0.5em + 2.5px);
    width: 7px;
    height: 4px;
    border-left: 1.5px solid var(--dark);
    border-bottom: 1.5px solid var(--dark);
    transform: rotate(-45deg);
}
.knowledge-price {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--text-white-dim);
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--card-border);
}
.knowledge-diagram {
    background: var(--dark-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.diagram-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}
.diagram-stage {
    flex: 1;
    text-align: center;
    padding: 1.25rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--card-border);
    background: var(--dark);
}
.diagram-stage-label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-white-dim);
    margin-bottom: 0.5rem;
}
.diagram-stage-icon { font-size: 1.5rem; margin-bottom: 0.25rem; }
.diagram-stage-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-white);
}
.diagram-stage.active {
    border-color: var(--accent);
    background: rgba(43, 136, 56, 0.08);
}
.diagram-arrow {
    color: var(--accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ===== 7. HOW IT WORKS ===== */
.how-it-works { background: var(--dark); }
.how-it-works .section-header { text-align: center; margin-bottom: 4rem; }
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    margin-bottom: 3rem;
}
/* Connecting line */
.steps::before {
    content: '';
    position: absolute;
    top: 2.75rem;
    left: calc(16.66% + 1rem);
    right: calc(16.66% + 1rem);
    height: 1px;
    background: linear-gradient(90deg, var(--card-border), var(--accent), var(--card-border));
}
.step-card { text-align: center; position: relative; }
.step-number {
    font-family: var(--font-mono);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}
.step-label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-white-dim);
    margin-bottom: 1rem;
}
.step-card h3 { margin-bottom: 0.75rem; }
.step-card p { margin: 0 auto; font-size: 0.9375rem; }
.how-it-works-cta { text-align: center; }

/* ===== 8. ABOUT ===== */
.about { background: var(--dark); }
.about .section-header { margin-bottom: 3.5rem; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}
.about-photo {
    aspect-ratio: 3/4;
    border-radius: var(--radius-img);
    background: var(--dark-card);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}
.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px);
}
.about-text h3 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.about-tagline {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--accent);
    margin-bottom: 2rem;
}
.about-text p { margin-bottom: 1.25rem; font-size: 1rem; }
.about-socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.about-socials a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--card-border);
    border-radius: 0.75rem;
    color: var(--text-white-muted);
    transition: border-color 200ms ease, color 200ms ease, transform 200ms ease;
}
.about-socials a:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ===== 9. FAQ ===== */
.faq { background: var(--dark); }
.faq .section-header { text-align: center; margin-bottom: 3.5rem; }
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.faq-card {
    background: var(--dark-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    padding: 2rem;
    transition: transform 250ms ease, border-color 250ms ease;
}
.faq-card:hover {
    transform: translateY(-2px);
    border-color: var(--card-border-hover);
}
.faq-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}
.faq-card p { font-size: 0.9375rem; line-height: 1.65; }

/* ===== NEWSLETTER ===== */
.newsletter {
    background: var(--dark);
    padding: 6rem 0;
    position: relative;
}
.newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(43,136,56,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.newsletter-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}
.newsletter-content .eyebrow-pill { margin-bottom: 1.25rem; }
.newsletter-content h2 { margin-bottom: 1rem; }
.newsletter-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-white-muted);
    margin-bottom: 1.5rem;
    max-width: 520px;
}
.newsletter-topics {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.newsletter-topics li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-white-muted);
}
.newsletter-topics li svg { color: var(--accent); flex-shrink: 0; }

.newsletter-form-wrap {
    background: var(--dark-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    padding: 2.5rem;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.newsletter-form input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    padding: 0.875rem 1rem;
    border: 1px solid var(--card-border);
    border-radius: 0.5rem;
    background: rgba(255,255,255,0.04);
    color: var(--text-white);
    box-sizing: border-box;
    transition: border-color 200ms ease;
}
.newsletter-form input::placeholder { color: var(--text-white-dim); }
.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
}
.newsletter-form .btn { width: 100%; justify-content: center; margin-top: 0.25rem; }
.newsletter-privacy {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-white-dim);
    text-align: center;
    margin-top: 0.25rem;
}
.newsletter-success {
    text-align: center;
    padding: 2rem 0;
}
.newsletter-success svg { margin-bottom: 1rem; }
.newsletter-success h4 { color: var(--accent); margin-bottom: 0.5rem; }
.newsletter-success p { color: var(--text-white-muted); font-size: 0.9375rem; }
.newsletter-error {
    color: #d63637;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 0.5rem;
}
.newsletter-explore {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--card-border);
    text-align: center;
}
.newsletter-explore span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-white-dim);
    display: block;
    margin-bottom: 0.75rem;
}
.newsletter-explore-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}
.newsletter-explore-links a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-white-muted);
    transition: color 200ms ease;
}
.newsletter-explore-links a:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .newsletter-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
    .newsletter { padding: 4rem 0; }
    .newsletter-form-wrap { padding: 2rem 1.5rem; }
}

/* ===== 10. FINAL CTA ===== */
.final-cta {
    background: var(--dark);
    text-align: center;
    padding: 8rem 0;
    position: relative;
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(43,136,56,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.final-cta h2 { margin-bottom: 1rem; position: relative; }
.final-cta > .container > p { margin: 0 auto 2.5rem; position: relative; }
.final-cta .btn { position: relative; }
.final-cta-email {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--text-white-dim);
    margin-top: 1.5rem;
    position: relative;
}
.final-cta-email a {
    color: var(--text-white-muted);
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 1px;
}
.final-cta-email a:hover { color: var(--accent); border-color: var(--accent); }

/* ===== 11. FOOTER ===== */
.footer {
    background: var(--dark-card);
    border-top: 1px solid var(--card-border);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-wordmark {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.875rem;
    color: var(--text-white);
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}
.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-white-dim);
    max-width: 280px;
}
.footer h5 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-white-dim);
    margin-bottom: 1.25rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: var(--text-white-muted); }
.footer-social-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.footer-social-row a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--card-border);
    border-radius: 0.5rem;
    color: var(--text-white-muted);
    transition: border-color 200ms ease, color 200ms ease;
}
.footer-social-row a:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.footer-email { font-size: 0.875rem; color: var(--text-white-muted); }
.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copy {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-white-dim);
}
.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-white-dim);
}
.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(43, 136, 56, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(43, 136, 56, 0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .service-cards { grid-template-columns: repeat(2, 1fr); }
    .pain-cards, .steps { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
    .steps::before { display: none; }
    .knowledge-grid { grid-template-columns: 1fr; }
    .knowledge-diagram { order: -1; }
    .about-grid { grid-template-columns: 1fr; max-width: 640px; }
    .about-photo { max-height: 400px; aspect-ratio: 16/9; }
    .faq-grid { grid-template-columns: 1fr; max-width: 640px; margin-left: auto; margin-right: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --section-pad: var(--section-pad-mobile); }
    .nav-links, .nav-cta-desktop { display: none; }
    .hamburger { display: flex; order: -1; }
    .navbar {
        padding: 0.5rem 1rem;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        background: rgba(17, 17, 17, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-color: transparent;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-wordmark {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .scroll-percent {
        top: 3.5rem;
        right: 1rem;
    }
    body.pazury-home h1 { font-size: 2rem; }
    body.pazury-home h2 { font-size: 1.5rem; }
    .hero { padding-top: 5rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
    .manifesto { padding: 6rem 0; }
    .manifesto-big { font-size: 2rem; }
    .service-cards { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .diagram-row { flex-direction: column; }
    .diagram-arrow { transform: rotate(90deg); }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .faq-card { padding: 1.5rem; }
    .service-card { padding: 1.5rem; }
    .pain-card { padding: 1.5rem; }
}

/* ===== COMING SOON PAGE STYLES ===== */
/* (Preserved from v1 — used when PAZURY_COMING_SOON is true) */
body.page-coming-soon .site-header,
body.page-coming-soon .ast-primary-header-bar,
body.page-coming-soon .ast-above-header,
body.page-coming-soon .ast-below-header,
body.page-coming-soon .site-footer,
body.page-coming-soon .ast-footer-overlay,
body.page-coming-soon .ast-small-footer,
body.page-coming-soon #ast-scroll-top {
    display: none !important;
}

/* ===== SUBPAGE STYLES ===== */

/* Page hero (About, Services, Contact pages) */
.page-hero {
    padding: 10rem 0 5rem;
    background: var(--dark);
    position: relative;
    text-align: center;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(43, 136, 56, 0.04) 0%, transparent 70%), var(--dark);
}
.page-hero-sub {
    font-size: 1.125rem;
    margin: 1rem auto 0;
    max-width: 640px;
}

/* Service detail layout (Services page) */
.service-detail { margin-bottom: 3rem; }
.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.service-detail-desc {
    font-size: 1.125rem;
    max-width: 700px;
}

/* Service example card */
.service-example-card {
    background: var(--dark-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    padding: 2rem;
}
.service-example-result {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--card-border);
}
.service-example-label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-white-dim);
}
.service-example-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--accent);
}

/* Contact page grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-method {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}
.contact-method .pain-card-icon { flex-shrink: 0; }
.contact-card {
    background: var(--dark-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    padding: 2rem;
}
.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.contact-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--card-border);
    border-radius: 0.75rem;
    color: var(--text-white-muted);
    transition: border-color 200ms ease, color 200ms ease;
    font-size: 0.9375rem;
    font-weight: 500;
}
.contact-social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: none;
}
.contact-faq-item {
    padding: 1.25rem 0;
    border-top: 1px solid var(--card-border);
}
.contact-faq-item:first-of-type { border-top: none; padding-top: 0; }

/* Contact form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.contact-input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--card-border);
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    color: var(--text-white);
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.contact-input:focus {
    outline: none;
    border-color: var(--accent);
}
.contact-input::placeholder {
    color: var(--text-muted);
}
.contact-textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-submit {
    width: 100%;
    margin-top: 0.25rem;
}
.contact-form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(43,136,56,0.1);
    border: 1px solid rgba(43,136,56,0.3);
    border-radius: 6px;
}
.contact-form-success p {
    color: var(--accent);
    font-size: 0.9375rem;
    margin: 0;
}

/* Subpage responsive */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
    .page-hero { padding: 7rem 0 3rem; }
    .page-hero h1 { font-size: 2rem; }
}

/* ===== PACKAGES GRID ===== */
.packages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
}
.packages-grid > .package-card {
    flex: 0 1 calc(33.333% - 1rem);
    min-width: 260px;
}
.package-card {
    background: var(--dark-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    transition: border-color 300ms ease, box-shadow 300ms ease;
    text-align: left;
}
.package-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}
.package-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}
.package-label {
    position: absolute;
    top: -0.75rem;
    left: 1.5rem;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-data);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}
.package-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-white-muted);
    margin-bottom: 1.5rem;
}
.package-includes {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: left;
}
.package-includes h5 {
    font-family: var(--font-data);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.package-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.package-includes li {
    font-size: 0.875rem;
    color: var(--text-white-muted);
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
    text-align: left;
}
.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}
.package-price {
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
}
.package-amount {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: var(--text-white);
    display: block;
    line-height: 1.2;
}
.package-term {
    font-family: var(--font-data);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-white-muted);
}
.package-buy {
    width: 100%;
    text-align: center;
}
.package-note {
    font-size: 0.8125rem;
    color: var(--text-white-muted);
    text-align: center;
    margin-top: 0.75rem;
}
@media (max-width: 1024px) {
    .packages-grid > .package-card { flex: 0 1 calc(50% - 0.75rem); }
}
@media (max-width: 640px) {
    .packages-grid > .package-card { flex: 0 1 100%; }
}

/* ===== BLOG PAGE ===== */
.blog-section { padding: var(--section-pad) 0; }

/* Category Tabs */
.blog-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}
.blog-tabs::-webkit-scrollbar { display: none; }

.blog-tab {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}
.blog-tab:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
}
.blog-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-white);
}

/* Post List */
.blog-list { display: flex; flex-direction: column; }

.blog-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: background 0.2s ease;
}
.blog-row:hover {
    background: rgba(255, 255, 255, 0.02);
}
.blog-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-row-title-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}
.blog-row-title {
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-row:hover .blog-row-title {
    color: var(--accent);
}

.blog-row-star {
    color: #f5c518;
    font-size: 1rem;
    flex-shrink: 0;
}

.blog-row-category {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    min-width: 120px;
}

.blog-row-date {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--text-muted);
    white-space: nowrap;
    min-width: 100px;
}

.blog-row-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
}
.blog-page-btn {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-btn);
    transition: all 0.25s ease;
}
.blog-page-btn:hover:not(.disabled) {
    color: var(--text-white);
    border-color: var(--accent);
}
.blog-page-btn.disabled {
    opacity: 0.3;
    cursor: default;
}
.blog-page-info {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Blog row hidden by filter */
.blog-row.blog-hidden {
    display: none;
}

/* Blog responsive */
@media (max-width: 768px) {
    .blog-section { padding: var(--section-pad-mobile) 0; }
    .blog-row {
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
        padding: 1rem 0;
    }
    .blog-row-title-wrap {
        flex-basis: 100%;
        order: 1;
    }
    .blog-row-category { order: 2; min-width: auto; }
    .blog-row-date { order: 3; min-width: auto; }
    .blog-row-avatar { order: 4; width: 28px; height: 28px; margin-left: auto; }
}

/* ===== SINGLE POST ===== */
.post-container { max-width: 720px; margin: 0 auto; }

.post-header {
    padding: 10rem 0 3rem;
    background: var(--dark);
}
.post-back {
    display: block;
    color: var(--text-white-muted);
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.2s;
}
.post-back:hover { color: var(--accent); }

.post-category-pill {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    border: 1px solid rgba(43,136,56,0.3);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}
.post-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.75rem) !important;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}
.post-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.post-meta-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.post-meta-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.post-meta-author {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
}
.post-meta-details {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-white-muted);
}

/* Post featured image */
.post-featured-img {
    margin: 1.5rem 0 1.25rem;
    border-radius: 8px;
    overflow: hidden;
}
.post-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Post body content */
.post-body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-white-muted);
}
.post-body > *:first-child {
    margin-top: 0;
}
.post-body p {
    margin-bottom: 1.25rem;
}
.post-body h2 {
    font-family: var(--font-body) !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: var(--text-white) !important;
    margin: 2.5rem 0 1rem !important;
}
.post-body h3 {
    font-family: var(--font-body) !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--text-white) !important;
    margin: 2rem 0 0.75rem !important;
}
.post-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}
.post-body a:hover { color: #3daf52; }
.post-body ul, .post-body ol {
    margin: 0 0 1.5rem 1.5rem;
    color: var(--text-white-muted);
}
.post-body li { margin-bottom: 0.5rem; }
.post-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(43,136,56,0.05);
    border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
    color: var(--text-white-muted);
    font-style: italic;
}
.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-card);
    margin: 1.5rem 0;
}
.post-body pre {
    background: var(--dark-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-btn);
    padding: 1.25rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--text-white-muted);
    line-height: 1.6;
}
.post-body code {
    font-family: var(--font-mono);
    font-size: 0.85em;
    background: var(--dark-card);
    padding: 0.15em 0.4em;
    border-radius: 4px;
    color: var(--accent);
}
.post-body pre code {
    background: none;
    padding: 0;
    color: inherit;
}
.post-body hr {
    border: none;
    border-top: 1px solid var(--card-border);
    margin: 2rem 0;
}

/* Post footer navigation */
.post-footer-nav {
    padding: 3rem 0 4rem;
    background: var(--dark);
    border-top: 1px solid var(--card-border);
}
.post-footer-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.post-nav-link {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-decoration: none;
    padding: 1.5rem 1.75rem;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-card);
    transition: border-color 0.2s, background 0.2s;
    max-width: 48%;
}
.post-nav-link:hover {
    border-color: var(--accent);
    background: rgba(43,136,56,0.04);
}
.post-nav-next { margin-left: auto; text-align: right; }
.post-nav-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-white-dim);
}
.post-nav-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.4;
}
.post-back-wrap {
    text-align: center;
}

/* Single post responsive */
@media (max-width: 768px) {
    .post-header { padding: 8rem 0 3rem; }
    .post-footer-row { flex-direction: column; gap: 1rem; }
    .post-nav-link { max-width: 100%; }
    .post-nav-next { margin-left: 0; text-align: left; }
}

/* ==========================================================================
   LEAD MAGNET / SQUEEZE PAGE
   ========================================================================== */

.pazury-leadmagnet {
    background: var(--dark);
    min-height: 100vh;
}
.leadmagnet-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}
.leadmagnet-card {
    max-width: 600px;
    width: 100%;
    border: 1px dashed rgba(255,255,255,0.15);
    border-radius: var(--radius-card);
    padding: 3.5rem 3rem;
    text-align: center;
}
.leadmagnet-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.leadmagnet-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-white-muted);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
}
.leadmagnet-error {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}
.leadmagnet-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.leadmagnet-input {
    flex: 1;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-white);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-btn);
    outline: none;
    transition: border-color 0.2s;
}
.leadmagnet-input::placeholder {
    color: rgba(255,255,255,0.35);
}
.leadmagnet-input:focus {
    border-color: var(--accent);
}
.leadmagnet-cta {
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}
.leadmagnet-cta:hover {
    background: #3daf52;
    transform: translateY(-1px);
}
.leadmagnet-disclaimer {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    margin-top: 0.5rem;
}
.leadmagnet-wordmark {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.2);
    text-decoration: none;
    margin-top: 2.5rem;
    transition: color 0.2s;
}
.leadmagnet-wordmark:hover {
    color: rgba(255,255,255,0.4);
}

/* Lead magnet responsive */
@media (max-width: 600px) {
    .leadmagnet-card { padding: 2.5rem 1.5rem; }
    .leadmagnet-form { flex-direction: column; }
    .leadmagnet-cta { width: 100%; }
}
