/* =============================================
   SUBPAGE SHARED STYLES
   ============================================= */

/* Nav CTA button */
.btn-nav-cta {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

.btn-nav-cta:hover {
    color: var(--accent);
}

/* Close Button (replaces Burger) */
.close-btn {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.close-line {
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: transform 0.3s ease, background-color 0.5s var(--transition);
}

.top-nav-container.nav-dark .close-line {
    background-color: #000000;
}

.top-nav-container.nav-light .close-line {
    background-color: #ffffff;
}

.close-line:first-child {
    transform: rotate(45deg);
}

.close-line:last-child {
    transform: rotate(-45deg);
}

.close-btn:hover .close-line {
    background-color: var(--accent);
    transform: rotate(135deg);
}

.close-btn:hover .close-line:last-child {
    transform: rotate(45deg);
}

/* =============================================
   SUBPAGE HERO
   ============================================= */
.subpage-hero {
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 10% 10%;
    position: sticky;
    top: 0;
    z-index: 1;
    overflow: hidden;
    background: #000; /* fallback while hero image loads */
}

.subpage-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 50%;
    filter: brightness(0.35);
    transform: scale(1.05);
    transition: transform 10s ease;
    will-change: background-position;
}

/* Hero hover effect removed to keep images static as requested */
.subpage-hero-bg {
    transform: scale(1.05); /* Constant scale, no hover change */
}

.subpage-hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 800px;
}

.subpage-hero-content h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    margin: 1rem 0;
}

.subpage-hero-content p {
    font-size: 1.1rem;
    opacity: 0.7;
    letter-spacing: 0.1em;
}

/* =============================================
   REDESIGNED SERVICE BENEFITS & PRICING
   ============================================= */
.service-benefits-section {
    padding: 10rem 10%;
    background: var(--white);
    color: var(--black);
}

.benefits-sticky-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-sidebar {
    position: sticky;
    top: 15vh;
}

.benefits-sidebar h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 1rem 0 2rem;
}

.benefits-sidebar p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.benefit-card {
    background: var(--bg);
    padding: 4rem;
    border-radius: 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: var(--accent);
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card li {
    padding: 1rem 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card li:last-child {
    border-bottom: none;
}

/* PREMIUM PRICING BENTO */
.premium-pricing-section {
    padding: 0 10% 10rem;
    background: var(--white);
}

.pricing-bento {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Subtle glow effect behind pricing */
.pricing-bento::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-top: 1rem;
}

.pricing-amount .price-big {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 100;
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.pricing-amount .price-sub {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.75;
}

.pricing-action {
    text-align: center;
    margin-top: 2rem;
}

.premium-btn {
    background: var(--black);
    color: var(--white);
    padding: 1.5rem 3rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.premium-btn:hover {
    background: var(--accent);
    color: var(--white);
    /* removed transform: translateY(-5px) */
}

@media (max-width: 1024px) {
    .benefits-sticky-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .benefits-sidebar {
        position: relative;
        top: 0;
    }

    .pricing-bento {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 2rem;
    }

    .pricing-action {
        text-align: center;
    }
}

/* =============================================
   STATS SECTION
   ============================================= */
.subpage-stats {
    padding: 8rem 10%;
    background: var(--white);
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
}

/* =============================================
   MASONRY GALLERY
   ============================================= */
.subpage-gallery {
    padding: 10rem 5%;
    background: var(--bg);
}

.gallery-heading {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 5rem;
    font-weight: 300;
}

.masonry-grid {
    column-count: 4;
    column-gap: 16px;
    max-width: 1600px;
    margin: 0 auto;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 16px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    background: var(--bg-light);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: auto; /* Enable clicking */
    transition: transform 0.5s var(--ease-out);
    opacity: 1; /* Remove previous hover opacity effect */
}

.masonry-item:hover img {
    transform: scale(1.02); /* Slight scale on hover for feedback */
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 4rem;
}

.btn-load-more {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text);
    padding: 1rem 3rem;
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border-radius: 50px;
}

.btn-load-more:hover {
    background: var(--text);
    color: var(--bg);
}

/* =============================================
   EDITING REVEAL SECTION
   ============================================= */
.editing-process-section {
    height: 400vh;
    /* Scroll length */
    position: relative;
    background: var(--bg-dark-green);
    color: var(--white);
}

.sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.editing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
    padding: 0 10%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.editing-text h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    margin: 1.5rem 0;
    line-height: 1.1;
    color: var(--white);
}

.editing-text p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 400px;
    color: rgba(255, 255, 255, 0.9);
}

.editing-visual {
    position: relative;
    aspect-ratio: 3/4;
    width: auto;
    height: 60vh;
    margin: 0 auto;
    background: var(--bg-dark-green);
    overflow: hidden;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Scroll Indicator Dot */
.editing-visual::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 10px var(--accent);
}

.edit-step {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inset(0 0 100% 0);
    /* Removed transition for direct scroll-driven reveal */
    z-index: 1;
}

.edit-step.active {
    /* active class will now be used more for state tracking if needed, 
       but clip-path is handled by JS */
    z-index: 2;
}

/* Ensure the first image (original) is always at the base */
.edit-step:first-child {
    clip-path: inset(0 0 0 0);
    z-index: 0;
}



/* =============================================
   ABOUT PAGE SPECIFIC
   ============================================= */
.about-hero .subpage-hero-bg {
    filter: brightness(0.3);
}

.about-intro {
    background: var(--white);
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 8rem;
    align-items: center;
}

.about-split.reverse {
    grid-template-columns: 1.4fr 1fr;
}

.about-split.reverse .about-split-text {
    order: 1;
}

.about-split.reverse .about-split-img {
    order: 2;
}

@media (max-width: 1024px) {

    .about-split.reverse .about-split-text,
    .about-split.reverse .about-split-img {
        order: unset;
    }
}

.about-split-img img {
    width: 100%;
    display: block;
    pointer-events: none;
}

.about-split-text h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    margin: 1rem 0 2.5rem;
    line-height: 1.1;
}

.about-split-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 540px;
}

.skills-section {
    background: var(--accent-light);
}

.skills-heading {
    margin-bottom: 5rem;
}

.skills-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-top: 1rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.skill-card {
    text-align: center;
}

.skill-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 1rem 0;
}

.skill-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.subpage-cta-section {
    padding: 10rem 10% 5rem 10%;
    background: var(--bg);
    color: var(--text);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.subpage-cta-section h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.subpage-cta-section p {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.subpage-cta-section .btn-cta {
    display: inline-block;
    padding: 1.8rem 5rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 1rem;
    transition: all 0.4s var(--ease-out);
    position: relative;
    z-index: 1;
    border-radius: 50px;
}

.subpage-cta-section .btn-cta:hover {
    background: var(--accent);
    letter-spacing: 0.4em;
    /* removed transform: translateY(-5px) */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .subpage-hero {
        height: 100vh;
        height: 100dvh;
        padding: 5rem 5%;
    }

    .subpage-hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .benefits-sticky-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .benefits-sidebar {
        position: relative;
        top: 0;
    }

    .about-split,
    .about-split.reverse {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .subpage-stats {
        padding: 4rem 5%;
        gap: 2.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    /* Editing Section Optimization handled below in consolidated block */

    .subpage-cta-section {
        padding: 6rem 5%;
    }

    .subpage-cta-section .btn-cta {
        padding: 1.5rem 3rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        column-count: 1;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   ABOUT PAGE OVERHAUL (CLEANED UP)
   ============================================= */

/* 3. EXPERTISE & REFERENCES */
.about-expertise {
    padding: 10rem 10%;
    background: var(--bg);
    /* Soft gray/off-white */
    color: var(--text);
}

.expertise-text {
    max-width: 800px;
    margin-bottom: 6rem;
}

.expertise-text h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    margin: 1.5rem 0 3rem;
}

.expertise-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* PARTNER MARQUEE */
.partner-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 2rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.partner-marquee-container {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem 0;
    margin-bottom: 4rem;
}

.partner-marquee {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 4rem;
    padding-right: 4rem;
    animation: marquee-scroll 30s linear infinite;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.marquee-logo {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--black);
    opacity: 0.2;
    transition: opacity 0.4s ease, color 0.4s ease;
    text-decoration: none;
    cursor: pointer;
}

.marquee-logo:hover {
    opacity: 1;
    color: var(--accent);
}

/* 4. PERSONAL VALUES INTERACTIVE */
.about-personal {
    padding: 5rem 0 0 0;
    background: var(--bg);
}

.personal-main-title {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    color: var(--black);
    opacity: 0.05;
    margin-bottom: -6rem;
    position: relative;
    z-index: 10;
    pointer-events: none;
    line-height: 1;
}

.personal-interactive-sections {
    display: flex;
    flex-direction: column;
}

.interactive-block {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10%;
}

/* KLAVIER */
.block-klavier {
    background: var(--bg-dark-green);
    color: var(--white);
    overflow: hidden;
}

.piano-overlay-text {
    position: relative;
    z-index: 10;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    text-align: center;
    max-width: 800px;
    pointer-events: none;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 10vh;
}

.piano-keys {
    position: absolute;
    bottom: -5vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    opacity: 0.5;
    pointer-events: auto;
}

.key {
    position: relative;
    border-radius: 0 0 4px 4px;
    transition: transform 0.1s cubic-bezier(0.1, 0.7, 0.1, 1), background-color 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.white-key {
    background-color: #222;
    border: 1px solid #111;
    width: clamp(40px, 6vw, 80px);
    height: clamp(200px, 30vw, 400px);
    margin: 0 2px;
    z-index: 1;
    box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.5);
}

.black-key {
    background-color: #000;
    width: clamp(24px, 3.6vw, 48px);
    height: clamp(120px, 18vw, 240px);
    position: absolute;
    left: calc(100% - clamp(12px, 1.8vw, 24px) + 2px);
    z-index: 2;
    border-bottom: 2px solid #222;
    box-shadow: inset 0 -5px 10px rgba(255, 255, 255, 0.1);
}

.white-key:hover,
.black-key:hover {
    /* removed transform: translateY(15px) */
}

.white-key:hover {
    background-color: #333;
}

.black-key:hover {
    background-color: var(--accent);
}

/* WANDERN */
.block-wandern {
    background: #e8e6e1;
    color: var(--black);
    overflow: hidden;
    cursor: crosshair;
}

.wandern-overlay-text {
    position: relative;
    z-index: 10;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    text-align: center;
    max-width: 800px;
    pointer-events: none;
}

.trail-footprint {
    position: absolute;
    width: 30px;
    height: 45px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="%23000" opacity="0.1" xmlns="http://www.w3.org/2000/svg"><path d="M7 21c-1.5 0-2.5-1-3-3s-1-4 0-6c.8-1.5 2-2 3-2s2.2.5 3 2c1 2 1.5 4 0 6s-1.5 3-3 3zm10-2c-1.5 0-2.5-1-3-3s-1-4 0-6c.8-1.5 2-2 3-2s2.2.5 3 2c1 2 1.5 4 0 6s-1.5 3-3 3zM10.5 8C9 8 8 6.5 8 5s1.5-3 3-3 3 1.5 3 3-1.5 3-3 3z"/></svg>');
    background-size: cover;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: fadeFootprint 2s forwards;
}

@keyframes fadeFootprint {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
    }
}

/* GLAUBE */
.block-glaube {
    background: var(--white);
    color: var(--black);
}

.glaube-content {
    max-width: 900px;
    text-align: center;
}

.glaube-content p:first-child {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 5rem;
}

.bible-verse {
    font-family: Georgia, serif;
    position: relative;
    padding: 3rem;
}

.bible-verse::before {
    content: '†';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
}

.verse-text {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.8;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.verse-ref {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    font-weight: 700;
}

/* ANIMATION CLASSES */
.reveal-up {
    opacity: 1;
    transform: none;
}

.reveal-stagger>* {
    opacity: 1;
    transform: none;
}

/* Responsive adjustments */
@media screen and (max-width: 900px) {
    .narrative-container {
        grid-template-columns: 1fr;
    }

    .narrative-visual {
        height: 100vh;
        margin-top: 4rem;
    }

    .reference-logos {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
}

@media (max-width: 1024px) {
    .editing-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 5%;
        text-align: center;
    }

    .editing-text p {
        margin: 0 auto;
    }

    .editing-visual {
        height: 40vh;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .editing-process-section {
        height: 250vh;
    }
}

/* =============================================
   ABOUT PORTFOLIO INLINE REPLACEMENTS
   ============================================= */
.about-dynamic-focus {
    padding: 10rem 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-portfolio-preview {
    padding: 10rem 10%;
    background: var(--white);
}

.portfolio-preview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-preview-layout.centered {
    display: block;
    text-align: center;
}

.portfolio-preview-layout.centered .portfolio-preview-text {
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-preview-layout.centered h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin: 1.5rem 0 2rem;
}

.portfolio-preview-layout.centered .btn-text-link {
    margin: 3rem auto 0;
}



/* =============================================
   MOBILE OPTIMIZATION (SUBPAGE)
   ============================================= */
@media (max-width: 768px) {

    .about-dynamic-focus,
    .about-portfolio-preview {
        padding: 5rem 5% !important;
    }

    .portfolio-preview-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .portfolio-preview-tickers {
        height: 100vh;
        width: 100%;
    }

    .subpage-hero {
        padding: 25% 5% 10%;
    }

    .subpage-hero-content h1 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .subpage-hero-content p {
        font-size: 1rem;
    }

    .service-benefits-section {
        padding: 5rem 5%;
    }

    .benefits-sticky-container {
        gap: 3rem;
    }

    .benefits-sidebar h2 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin: 0.5rem 0 1rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .benefit-card li {
        font-size: 1rem;
    }

    .premium-pricing-section {
        padding: 0 5% 5rem;
    }

    .pricing-bento {
        padding: 3rem 1.5rem;
        gap: 2rem;
    }

    .pricing-header h2 {
        font-size: 2rem;
    }

    .pricing-amount .price-big {
        font-size: 2.5rem;
    }

    .subpage-stats {
        padding: 4rem 5%;
        gap: 2rem;
        flex-direction: column;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .subpage-gallery {
        padding: 3rem 5% 5rem;
    }

    .editing-process-section {
        height: 300vh;
        min-height: 300vh;
    }

    .sticky-container {
        position: sticky;
        top: 0;
        height: 100dvh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem 5%;
    }

    .editing-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        width: 100%;
    }

    .editing-text h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
    }

    .editing-text p {
        margin: 0 auto;
        font-size: 1rem;
        line-height: 1.5;
        max-width: 90%;
        opacity: 0.9;
    }

    .editing-visual {
        width: 100%;
        height: auto;
        aspect-ratio: 4/5;
        max-height: 40vh;
        margin: 0 auto;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .partner-marquee-container {
        width: 100%;
        left: 0;
        transform: none;
        margin-left: 0;
        margin-right: 0;
    }

    /* About Specific */
    .about-expertise {
        padding: 5rem 5%;
    }

    .about-split {
        gap: 3rem;
    }

    .about-split-text h2 {
        font-size: 2rem;
        margin: 0.5rem 0 1.5rem;
    }

    .skills-section {
        padding: 4rem 5%;
    }

    .skills-heading {
        margin-bottom: 3rem;
    }

    .skills-heading h2 {
        font-size: 2rem;
    }

    .subpage-cta-section {
        padding: 6rem 5%;
    }

    .subpage-cta-section h2 {
        font-size: 2rem;
    }

    .subpage-cta-section .btn-submit {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .portfolio-preview-text h2 {
        font-size: 2.5rem !important;
    }

    .about-portfolio-preview {
        padding: 5rem 5% !important;
    }

    .interactive-block {
        padding: 5rem 5%;
        min-height: 100vh;
    }

    /* Subpage hero full height on mobile */
    .subpage-hero {
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        padding: 15% 5% 10%;
        display: flex;
        align-items: flex-end;
    }

    .subpage-hero-content {
        text-align: center;
        max-width: 100%;
    }

    .subpage-hero-content h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .subpage-hero-content p {
        font-size: 0.95rem;
    }

    /* Portfolio preview smaller */
    .portfolio-preview-tickers {
        height: 35vh;
    }

    .portfolio-preview-text h2 {
        font-size: clamp(1.6rem, 5vw, 2.2rem) !important;
    }

    .portfolio-preview-text p {
        font-size: 1rem;
    }

    /* Stats smaller */
    .subpage-stats {
        padding: 3rem 5%;
    }

    .stat-item {
        min-width: auto;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Gallery smaller padding */
    .subpage-gallery {
        padding: 2rem 5% 3rem;
    }

    /* Benefits smaller */
    .benefits-sidebar h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .benefit-card {
        padding: 1.5rem 1rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .benefit-card li {
        font-size: 0.9rem;
    }

    /* Pricing smaller */
    .pricing-bento {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .pricing-header h2 {
        font-size: 1.6rem;
    }

    .pricing-amount .price-big {
        font-size: 2rem;
    }

    /* Section labels smaller */
    .section-label {
        font-size: 0.7rem;
    }
}