/* 
  stepvero | Professional Avant-Garde Redesign
  STRICT RULE: Class selectors ONLY.
*/

:root {
    /* Color Palette */
    --c-lichen: #8a9a88;
    --c-coffee: #2a221f;
    --c-black: #050505;
    --c-dark-grey: #121212;
    --c-white: #ffffff;
    --c-off-white: #f2f2f2;
    --c-text-muted: #888888;

    /* Typography */
    --f-display: 'Bebas Neue', sans-serif;
    --f-heading: 'Archivo', sans-serif;
    --f-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --spacing-container: clamp(20px, 5vw, 60px);
    --spacing-section: clamp(80px, 10vh, 160px);

    /* Animations */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --anim-reveal: 0.8s var(--ease-out-expo) forwards;
}

/* RESET */
.stepvero-html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

.stepvero-body {
    margin: 0;
    padding: 0;
    font-family: var(--f-body);
    background-color: var(--c-white);
    color: var(--c-black);
    overflow-x: hidden;
    opacity: 0;
    /* JS will fade in */
    animation: pageLoad 1s ease forwards;
}

@keyframes pageLoad {
    to {
        opacity: 1;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* UTILITIES */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

.container-narrow {
    max-width: 800px;
}

.container-medium {
    max-width: 1000px;
}

.bg-dark {
    background-color: var(--c-dark-grey);
    color: var(--c-white);
}

.bg-off-white {
    background-color: var(--c-off-white);
}

.text-center {
    text-align: center;
}

/* SCROLL REVEAL UTILS */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* LOADER */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--c-black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s var(--ease-out-expo);
}

.loader-wrapper.loaded {
    transform: translateY(-100%);
}

.loader-content {
    text-align: center;
    color: var(--c-white);
}

.loader-text {
    font-family: var(--f-display);
    font-size: 3rem;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 20px;
}

.loader-line {
    width: 0;
    height: 2px;
    background: var(--c-white);
    animation: loadLine 1.5s ease forwards;
}

@keyframes loadLine {
    to {
        width: 100%;
    }
}

/* HEADER - FLOATING HUD DESIGN */
.site-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: top 0.4s ease;
    pointer-events: none;
    /* Let clicks pass through outside the bar */
}

/* Hide header when scrolling down? No, let's keep it sticky/floating */
.site-header.scrolled {
    top: 10px;
}

.header-inner {
    max-width: 1200px;
    /* Compact width */
    width: 90%;
    margin: 0 auto;
    padding: 15px 30px;

    /* The HUD Look */
    background: rgba(10, 10, 10, 0.85);
    /* Dark background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    /* Pill shape */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
    /* Re-enable clicks */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .header-inner {
    padding: 12px 25px;
    background: rgba(5, 5, 5, 0.95);
    border-color: rgba(255, 255, 255, 0.15);
    width: 95%;
    /* Expand slightly */
    max-width: 1440px;
}

.brand-logo {
    font-family: var(--f-display);
    font-weight: 400;
    /* Bebas is bold by default, let's keep it clean */
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: var(--c-white);
    text-transform: uppercase;
    position: relative;
    z-index: 1002;
    transition: transform 0.3s;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--c-white);
}

.nav-link.active {
    color: var(--c-white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-button {
    background: var(--c-white);
    color: var(--c-black);
    border: 1px solid var(--c-white);
    padding: 10px 24px;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    border-radius: 50px;
    /* Pill button to match container */
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--c-lichen);
    border-color: var(--c-lichen);
    color: var(--c-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(138, 154, 136, 0.4);
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
    padding: 5px;
}

.nav-close-btn {
    display: none;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--c-white);
    transition: 0.3s;
    border-radius: 2px;
}

/* HERO SECTION - MAGAZINE STYLE */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-container);
    position: relative;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--f-display);
    font-size: 40vw;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
    white-space: nowrap;
    z-index: -1;
    line-height: 1;
}

.hero-image-wrapper {
    position: relative;
    order: 2;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(0.95);
    transition: transform 1.5s var(--ease-out-expo);
}

.scroll-reveal.visible .hero-image {
    transform: scale(1);
}

.hero-content-wrapper {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-title {
    font-family: var(--f-display);
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.85;
    margin: 0 0 40px 0;
    color: var(--c-coffee);
}

.title-line {
    display: block;
}

.title-line.indent {
    margin-left: 1ch;
    color: var(--c-black);
}

.hero-details {
    margin-left: 5px;
}

.hero-subtitle {
    font-family: var(--f-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 5px;
}

.hero-colorway {
    font-family: var(--f-body);
    color: var(--c-lichen);
    margin: 0 0 30px;
    font-size: 1rem;
}

.cta-link {
    text-decoration: none;
    color: var(--c-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

.cta-link:hover {
    gap: 15px;
}

/* MARQUEE */
.marquee-section {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marqueeScroll 20s linear infinite;
    padding-left: 100%;
}

.marquee-item {
    font-family: var(--f-body);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.marquee-separator {
    color: var(--c-lichen);
    margin: 0 30px;
}

@keyframes marqueeScroll {
    to {
        transform: translateX(-100%);
    }
}

/* ABOUT SECTION - MANIFESTO STYLE */
/* ABOUT SECTION - EDITORIAL STYLE */
.about-section {
    padding: 5rem 0;
    background-color: #f4f4f4;
    /* Muted off-white/light-grey */
    color: #111;
    /* Dark text for contrast on light bg */
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about-content-wrapper {
    padding-right: 0;
}

.about-heading {
    /* Kept for legacy if needed, but we use .section-heading now */
    font-family: var(--f-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 2rem;
}

.about-paragraph-primary {
    font-family: var(--f-heading);
    font-size: 1.6rem;
    /* Larger for impact */
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    color: #111;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-paragraph-secondary {
    font-family: var(--f-body);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-decorative-element {
    width: 60px;
    height: 2px;
    background-color: var(--c-lichen);
    margin: 3rem auto;
    /* Centered */
}

/* Removed Image Wrapper Styles */

/* TOP DISCLAIMER */
.top-disclaimer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    z-index: 2001;
    font-family: var(--f-body);
    font-size: 0.7rem;
    line-height: 1.4;
    transition: transform 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-disclaimer.hidden {
    transform: translateY(-100%);
}

/* Header Adjustment for Disclaimer */
.site-header {
    top: 80px;
    /* Pushed down by disclaimer */
    transition: top 0.4s ease, padding 0.4s ease;
}

.site-header.scrolled {
    top: 20px !important;
    /* Force return to original pill position */
}



@media (max-width: 900px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content-wrapper {
        padding-right: 0;
    }
}

/* CONCEPT SECTION */
.content-section {
    padding: var(--spacing-section) 0;
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-heading {
    font-family: var(--f-display);
    font-size: clamp(3rem, 6vw, 5rem);
    margin: 0 0 40px 0;
    line-height: 0.9;
}

.body-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
    max-width: 500px;
}

.image-frame {
    position: relative;
    overflow: hidden;
}

.concept-image {
    width: 100%;
    display: block;
    transition: transform 1s ease;
}

.image-frame:hover .concept-image {
    transform: scale(1.05);
}

.image-caption {
    display: block;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #888;
    font-family: var(--f-heading);
}

/* FEATURES MASONRY */
.features-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 30px;
}

.feature-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.block-large {
    grid-column: 1 / 7;
    grid-row: 1 / 2;
    min-height: 300px;
}

.block-image {
    grid-column: 7 / 13;
    grid-row: 1 / 3;
    padding: 0;
    border: none;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s;
}

.feature-img:hover {
    filter: grayscale(0%);
}

.block-medium {
    grid-column: span 3;
    grid-row: 2 / 3;
    min-height: 250px;
}

/* Adjust for medium: 1-3 is large, 4-6 med, 7-12 image */
.block-medium:nth-of-type(3) {
    grid-column: 1 / 4;
}

.block-medium:nth-of-type(4) {
    grid-column: 4 / 7;
}

.feature-heading {
    font-family: var(--f-heading);
    font-size: 2.5rem;
    margin: 0 0 20px;
    line-height: 1;
}

.feature-icon {
    display: block;
    font-size: 2rem;
    color: var(--c-lichen);
    margin-bottom: 20px;
}

.feature-body {
    font-size: 1.1rem;
    color: #ccc;
}

.feature-subheading {
    font-size: 1.25rem;
    color: var(--c-lichen);
    margin: 0 0 10px;
}

.feature-body-sm {
    font-size: 0.95rem;
    color: #999;
}

/* TESTIMONIALS SLIDER */
.section-heading-center {
    font-family: var(--f-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 60px;
}

.testimonials-slider {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.testimonial-card {
    min-width: 300px;
    flex: 1;
    border-left: 1px solid var(--c-black);
    padding-left: 30px;
}

.quote-text {
    font-family: var(--f-heading);
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 0 0 30px;
}

.quote-author {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-muted);
}

/* INFO GRID */
.info-grid {
    display: flex;
    justify-content: center;
    text-align: center;
}

.info-grid.single-col .info-list {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.info-grid.single-col .info-item {
    border-bottom: none;
    padding: 0;
}

.info-heading {
    font-family: var(--f-heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-item {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid var(--c-black);
}

.input-field {
    flex: 1;
    border: none;
    padding: 15px 0;
    background: transparent;
    font-family: var(--f-body);
    font-size: 1rem;
    outline: none;
}

.btn-submit {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-submit:hover {
    transform: translateX(5px);
}

/* FAQ */
.faq-list {
    border-top: 1px solid #ddd;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--f-heading);
    font-size: 1.25rem;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 25px;
    color: #666;
}

.faq-trigger.active .icon {
    transform: rotate(45deg);
}

.icon {
    transition: transform 0.3s;
    font-size: 1.5rem;
}

/* FOOTER */
.site-footer {
    background: var(--c-black);
    color: var(--c-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-large-text {
    font-family: var(--f-display);
    font-size: 5rem;
    line-height: 1;
    display: block;
    margin-bottom: 30px;
    color: #333;
}

.footer-address {
    font-style: normal;
    color: #888;
    line-height: 1.6;
}

.footer-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.footer-link,
.footer-link-btn {
    display: block;
    color: #aaa;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 10px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-link:hover,
.footer-link-btn:hover {
    color: var(--c-white);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #555;
}

/* COOKIE & MODALS */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 300px;
    background: var(--c-white);
    padding: 25px;
    z-index: 9500;
    border: 1px solid #eee;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(20vh);
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.cookie-msg {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    flex: 1;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
}

.btn-accept {
    background: var(--c-black);
    color: white;
}

.btn-reject {
    background: #f0f0f0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    /* Glassmorphism blur on backdrop */
    z-index: 10000;
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    animation: fadeInBackdrop 0.3s ease forwards;
}

.modal-backdrop.open {
    display: flex;
}

@keyframes fadeInBackdrop {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-card {
    background: #ffffff;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    padding: 60px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    border-radius: 36px;
    /* Round shape */
    overflow: hidden;
    /* Clip content to curves */
    /* Entry Animation */
    animation: slideUpModal 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    transform: translateY(40px);
    opacity: 0;
}

@keyframes slideUpModal {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-inner {
    overflow-y: auto;
    max-height: calc(85vh - 120px);
    /* Subtract padding */
    padding-right: 10px;
    /* Space for scrollbar */
}

/* Custom Scrollbar for Modal */
.modal-inner::-webkit-scrollbar {
    width: 4px;
}

.modal-inner::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 4px;
}

.modal-heading {
    font-family: var(--f-display);
    /* Use the main display font */
    margin-bottom: 30px;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #111;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.modal-inner p {
    font-family: var(--f-body);
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.modal-inner strong {
    color: #111;
    font-weight: 600;
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: #f4f4f4;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #111;
    color: #fff;
    transform: rotate(90deg);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .site-header {
        padding: 20px 0;
    }

    .nav-menu {
        position: fixed;
        top: 10px;
        left: 10px;
        right: 10px;
        width: auto;
        height: auto;
        min-height: 350px;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 60px 20px;
        transform: translateY(-120%);
        transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 3000;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    /* Staggered Animation for Links */
    .nav-item {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .nav-item:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active .nav-item:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active .nav-item:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        width: 100%;
    }

    .nav-link {
        font-family: var(--f-display);
        /* Use display font for impact */
        font-size: 2rem;
        color: #111;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        display: block;
        width: 100%;
    }

    .hamburger-btn {
        display: flex;
        font-size: 1.5rem;
    }

    .nav-close-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        background: #f0f0f0;
        border-radius: 50%;
        border: none;
        font-size: 1.5rem;
        color: #333;
        cursor: pointer;
        z-index: 3001;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background 0.3s;
    }

    .nav-close-btn:hover {
        background: #e0e0e0;
    }



    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .hero-bg-text {
        display: none;
    }

    .hero-image-wrapper {
        order: 1;
    }

    .hero-content-wrapper {
        order: 2;
    }

    .hero-details {
        margin: 0;
    }

    .cta-link {
        margin: 0 auto;
    }

    .concept-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-masonry {
        display: flex;
        flex-direction: column;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}