:root {
    --bg-color: #000000;
    /* Deep Midnight Blue */
    --text-color: #F7F7FF;
    /* Ice White */
    --accent-color: #c40233;
    /* Automotive Red */
    --accent-secondary: #e6002b;
    /* Deeper Red Hover */
    --card-bg: rgb(0, 0, 0);
    /* Frosted Dark Violet */
    --border-color: rgba(255, 255, 255, 0.1);
    --font-primary: 'Clash Display', 'Bebas Neue', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

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

html {
    background-color: var(--bg-color);
    /* A legalsó réteg legyen az Éjféli Kék */
}

body {
    background-color: transparent;
    /* FONTOS: Átlátszónak kell lennie, hogy lássuk a mögötte lévő canvas-t */
    color: var(--text-color);
    font-family: var(--font-secondary);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    /* Ez fontos a rétegzéshez */
    z-index: 2;
    /* A tartalom legyen az animáció fölött */
}


/* FONTOS: A fő tartalomnak relatívnak kell lennie, hogy a z-index működjön */
main,
nav,
.hero {
    position: relative;
    z-index: 10;
}

/* Base Layout Fixes: Deep black background for main sections */
.hero-cinematic,
.services-overview,
.about-section,
.work-section,
.faq-section,
.site-footer-new,
#contact,
.projects-header,
.project-list-container {
    background-color: #000;
    position: relative;
    z-index: 10;
}

/* Services overview background is now solid black as requested */
.services-overview {
    position: relative;
    overflow: hidden;
    background-color: #000 !important;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.10em;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* Navigation styling moved to the end of the file */

/* Hero Section - Cinematic Layout */
.hero-cinematic {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero-cinematic::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    pointer-events: none;
    z-index: 2;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-label {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 3rem;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3.5rem, 8vw, 8rem);
    line-height: 0.9;
    letter-spacing: 0.05em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 5rem;
    letter-spacing: 0.05em;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Webkit Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 10px;
    border: 2px solid var(--accent-color);
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-secondary);
    color: #fff;
    border-color: var(--accent-secondary);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    /* Removed for mobile perf: backdrop-filter: blur(5px); */
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
}


.scroll-ind {
    position: absolute;
    bottom: 3rem;
    font-size: 0.8rem;
    letter-spacing: 3px;
    opacity: 0.6;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* About Section Redesign - Premium Industrial */
/* About Section: Transparent Background for Canvas Reveal */
.about {
    padding: 20vh 4rem;
    min-height: 100vh;
    position: relative;
    background: transparent;
    isolation: isolate;
    /* Create stacking context for mixing */
    color: #fff;
    pointer-events: none;
    /* overflow: hidden; */
    /* Contain the giant SVG */
}

.about-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
}

.about-content,
.about-sidebar {
    pointer-events: auto;
    /* Re-enable clicks on content */
    position: relative;
    z-index: 2;
    /* Sit on top of the black ink overlay */
}

/* Ensure text is clearly visible on top */
.about-text-block,
.closing-statement,
.about-sidebar .sticky-title {
    position: relative;
    z-index: 10;
}

.about-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8rem;
    position: relative;
    z-index: 2;
}

.about-sidebar {
    width: 30%;
    position: sticky;
    top: 5rem;
    /* Or dynamic calc */
    height: fit-content;
    z-index: 10;
}

.sticky-title {
    font-size: 6vw;
    line-height: 0.9;
    color: #fff;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* Vertical Separator */
.about-layout::after {
    display: none;
}

.about-content {
    width: 65%;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-left: 4rem;
    /* Spacing from separator */
}

.about-text-block {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
}

.text-accent {
    color: var(--accent-color);
    font-weight: 400;
    /* Remove glow for cleaner look */
}

.brand-name {
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: #fff;
}

.about-closing {
    margin-top: 4rem;
}

.closing-statement {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.05em;
}

.closing-statement .bold {
    font-weight: 700;
    display: block;
    /* Break to new line for impact */
    font-size: 4rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.signature-wrapper {
    margin-top: 8rem;
    position: relative;
    overflow: hidden;
}

.signature-line {
    width: 100px;
    height: 2px;
    background: var(--accent-color);
    margin-bottom: 2rem;
}

/* Signature Legacy Styles Removed */



/* Work Section (Horizontal) */
.work-section {
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    /* Ensure it sits on top */
    background-color: #000000;
    /* Solid Black */
}

.work-container {
    display: flex;
    height: 100vh;
    align-items: center;
    width: fit-content;
    /* Important for horizontal scroll calculation */
    padding-left: 6rem;
}

.work-intro {
    min-width: 400px;
    margin-right: 6rem;
}

.work-intro h2 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 2rem;
}

.work-gallery {
    display: flex;
    gap: 4rem;
    padding-right: 6rem;
}

.work-card {
    height: 70vh;
    width: auto;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s ease;
}

.work-card:hover {
    transform: translateY(-20px);
}

.card-image {
    width: 100%;
    height: 85%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 0;
    border: 1px solid var(--border-color);
}

.card-image img {
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.work-card:hover .card-image img {
    transform: scale(1.1);
}

/* Premium Cinematic Portfolio Grid */
.featured-project:hover,
.grid-project:hover {
    border-color: var(--accent-color) !important;
    box-shadow: 0 15px 40px rgba(196, 2, 51, 0.2) !important;
    z-index: 2;
}

.featured-project:hover video,
.featured-project:hover img,
.grid-project:hover video,
.grid-project:hover img {
    filter: brightness(0.9) !important;
    transform: scale(1.05);
}

.featured-project video,
.featured-project img,
.grid-project video,
.grid-project img {
    transition: filter 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-hover-arrow {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.featured-project:hover .project-hover-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* Base Projects styling for backwards comp. */

/* --- Interactive Accordion FAQ --- */
.faq-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px !important;
    /* Overriden by inline styling, but good fallback */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 2rem;
    font-family: Arial, sans-serif;
    line-height: 1;
}

/* Base Settings */
.project-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #000;
}

.project-video:fullscreen {
    object-fit: contain;
    background-color: #000;
}

.project-video:-webkit-full-screen {
    object-fit: contain;
    background-color: #000;
}

.card-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.5rem;
}

.card-number {
    font-family: var(--font-primary);
    font-size: 1rem;
    opacity: 0.5;
    letter-spacing: 0.10em;
}

.card-info h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

/* Footer / Contact Section */
footer {
    min-height: 100vh;
    background: #000;
    color: #fff;
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

/* Background Texture/Grid (Optional premium touch) */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    padding-top: 10vh;
}

.contact-header {
    margin-bottom: auto;
    padding-top: calc(4rem + 20px);
}

.contact-title {
    font-size: 11vw;
    /* Reduced font size to fit container */
    line-height: 1.0;
    margin: 0 auto;
    /* Center with margin */
    padding: calc(1rem + 20px) 0 0 0;
    /* Add extra 20px pushdown */
    letter-spacing: 0.10em;
    font-weight: 700;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 3px rgba(255, 255, 255, 0.5);
    /* Thicker stroke */
    transition: all 0.5s ease;
    cursor: default;
    width: 100%;
    text-align: center;
    max-width: 100%;
    /* Prevent overflow */
}

.contact-title:hover {
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.contact-action {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 6rem;
    padding-top: 4rem;
    width: 100%;
}

/* Left Column: Contact Info */
.action-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: flex-start;
}

.info-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.info-text-col {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.detail-link {
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: color 0.3s, opacity 0.3s;
    font-family: var(--font-secondary);
    font-weight: 300;
}

.detail-link:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Center Column: Button */
.action-center {
    display: flex;
    justify-content: center;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

/* Right Column: CTA Text */
.action-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    text-align: right;
}

.cta-text-right {
    font-size: 1.5rem;
    font-weight: 200;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    color: #fff;
}

/* Contact Form Styles (Global) */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    margin: 0;
    text-align: left;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 234, 0, 0.15);
}

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

.submit-btn-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
}

.form-submit-btn {
    width: 100%;
    cursor: pointer;
    font-family: var(--font-primary);
    border-radius: 0;
    padding: 1.2rem;
    font-size: 1.1rem;
    letter-spacing: 0.10em;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 400;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-submit-btn:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* Magnetic Button (Rectangular Mod) */
.magnetic-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    /* Removed for mobile perf: backdrop-filter: blur(5px); */
}

/* Redesigned Contact Form Styles */
.f-input-new {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-secondary);
    font-size: 1rem;
    outline: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.f-input-new:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.07);
}

.f-submit-new {
    width: 100%;
    padding: 1.5rem;
    background: var(--accent-color);
    border: none;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.f-submit-new:hover {
    background: #e6023b;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 2, 51, 0.3);
}

.f-submit-new svg {
    transition: transform 0.3s ease;
}

.f-submit-new:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .contact-form-new {
        margin-top: 2rem;
    }

    .contact-form-new div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

.magnetic-btn.rectangular {
    width: auto;
    height: auto;
    padding: 2rem 5rem;
    border-radius: 0;
    /* Pill shape */
}

.magnetic-btn:hover {
    border-color: #fff;
    transform: scale(1.05);
}

.btn-fill {
    position: absolute;
    width: 150%;
    height: 150%;
    background: #fff;
    border-radius: 50%;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    transition: top 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 0;
}

.magnetic-btn:hover .btn-fill {
    top: -25%;
}

.btn-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.10em;
    transition: color 0.4s;
    text-align: center;
}

.magnetic-btn:hover .btn-text {
    color: #000;
}

/* Card Effects */
.card-glass {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover .card-glass {
    opacity: 1;
}

/* Services Section */
/* Services Section */
/* Services Section */
.services {
    padding: 15vh 5% 5rem 5%;
    /* Increased top padding */
    position: relative;
    z-index: 10;
    /* background: transparent; - Removed to allow canvas behind */
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 3rem;
    overflow: hidden;
    /* Contain the canvas */
}

#services-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind content */
    opacity: 0.5;
    /* Slight transparency */
    pointer-events: none;
    margin-bottom: 3rem;
}

.services-header {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
    padding: 50px 0 1rem 0;
    text-align: center;
    position: relative;
    /* Removed the 100vw hack to align with grid */
}



.spin-letter {
    display: inline-block;
}

/* ================================================== */
/* NEW CINEMATIC PRICE CARDS (MARKETPLACE STYLE)      */
/* ================================================== */

.price-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1600px;
    margin: 4rem auto 0 auto;
    align-items: stretch;
}

/* Base Card Styles */
.price-card {
    background: #060606;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        filter 0.4s ease,
        opacity 0.4s ease;
}

/* Spotlight Hover Effect */
.price-cards-grid:hover .price-card:not(:hover) {
    filter: blur(5px);
    opacity: 0.5;
}

.price-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.price-card.pc-featured:hover {
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(255, 90, 31, 0.15);
    /* Automotive Orange Glow */
}

/* Image Top Area */
.pc-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    background: #111;
    overflow: hidden;
}

.pc-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.price-card:hover .pc-image-container img {
    transform: scale(1.05);
    opacity: 1;
}

.pc-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to bottom, rgba(6, 6, 6, 0) 0%, #060606 100%);
    z-index: 1;
}

/* Badges */
.pc-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    /* Removed for mobile perf: backdrop-filter: blur(10px); */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 30px;
    z-index: 2;
    text-transform: uppercase;
}

.pc-badge-accent {
    background: var(--accent-color);
    color: #fff;
    border: none;
    font-weight: 600;
}

/* Content Area */
.pc-content {
    padding: 0 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    background: #060606;
}

.pc-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 0.8rem 0;
    transition: color 0.3s ease;
}

.price-card:hover .pc-title {
    color: var(--accent-color);
}

.pc-desc {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 3em;
}

/* Features List */
.pc-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pc-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.pc-check {
    color: var(--accent-color);
    font-weight: 600;
}

/* Bottom CTA Area */
.pc-bottom {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.pc-price {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.pc-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.25rem 0;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pc-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.08);
}

.pc-btn-accent {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.pc-btn-accent:hover {
    background: #ff7043;
    border-color: #ff7043;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 90, 31, 0.45);
}

/* Large Background Text */
.bg-text-decoration {
    font-size: 8rem;
    line-height: 1.0;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--font-primary);
    opacity: 1;
    margin-top: 2rem;
    mix-blend-mode: destination-out;
}



/* Global Mobile Responsiveness */




/* Mobile Layout (Max Width 600px) */
/* Mobile Layout (Max Width 900px) */
@media (max-width: 900px) {

    /* Global Container Padding & Safety Margins */
    .hero,
    .about,
    .work-section,
    footer,
    .container,
    .work-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100%;
        box-sizing: border-box;
    }

    .services {
        padding-left: 0 !important;
        /* Make cards wider (20px both sides gained) */
        padding-right: 0 !important;
        width: 100%;
        box-sizing: border-box;
    }

    .container,
    .about-layout,
    .work-container,
    .contact-grid {
        width: 100%;
        padding: 0;
        /* Handled by parent */
    }

    /* Headings */
    h1,
    h2,
    h3,
    .hero-title,
    .sticky-title,
    .contact-title,
    .services-header .hero-title {
        display: flex;
        justify-content: center;
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* 1. FIX TITLE SIZING (Prevent Breaking) */
    .hero-title {
        font-size: 13vw;
        /* Adjusted for single line */
        line-height: 1;
        flex-direction: row;
        /* Prevent column stacking */
        word-break: normal;
        white-space: nowrap;
        /* Never break */
    }

    .bg-text-decoration {
        font-size: 13vw;
        /* Reduced to fit 7 chars effectively */
        line-height: 1.0;
        width: 100%;
        left: 0;
        transform: none;
        text-align: center;
        white-space: normal;
        overflow: hidden;
        padding: 0 10px;
    }

    .sticky-title {
        font-size: 15vw;
        position: relative;
        top: 0;
        margin-bottom: 0.5rem;
    }

    .contact-title {
        font-size: 13vw;
        /* Requested 13vw */
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    }

    .services-header {
        width: 100%;
        margin-left: 0;
        transform: none;
        padding-top: 0;
    }

    .services-header .hero-title {
        font-size: 6vw;
        /* Reduced to fit 14 chars in viewport */
        white-space: nowrap;
        flex-direction: row;
        display: block;
        width: 100%;
        overflow: hidden;
    }

    .services-header .hero-title .line {
        display: inline-block;
        /* Ensure lines sit together if needed, though usually one per div */
    }

    /* Nav */
    .nav-links {
        display: none;
    }

    /* Layout Stacking */
    .about-layout,
    .contact-action,
    .price-cards-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .price-cards-grid:hover .price-card:not(:hover) {
        filter: none;
        /* Disable spotlight blur on mobile */
        opacity: 1;
    }


    /* 2. PROJECT SECTION ALIGNMENT (Left Align) */
    /* 2. PROJECT SECTION - SIMPLIFIED VERTICAL LAYOUT */
    .work-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .work-container {
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        /* Stack vertically */
        align-items: center;
        overflow-x: hidden;
        /* Container doesn't scroll */
        height: auto;
        /* Adapts to content */
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 2rem;
        gap: 0;
    }

    .work-container::-webkit-scrollbar {
        display: none;
    }

    /* Target .work-intro */
    .work-intro {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center !important;
        /* Centered header */
        align-items: center !important;
        margin-bottom: 2rem;
        /* Gap between header and gallery */
        margin-right: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    .work-intro h2 {
        font-size: 10vw;
        text-align: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .work-intro p {
        text-align: center;
    }

    /* Horizontal Gallery Scroll */
    .work-gallery {
        display: flex;
        /* Flex row for cards */
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        /* Enable scroll here */
        scroll-snap-type: x mandatory;
        padding-left: 20px;
        /* Start padding */
        padding-right: 20px;
        /* End padding */
        gap: 20px;
        -ms-overflow-style: none;
        /* Hide scrollbar */
        scrollbar-width: none;
    }

    .work-gallery::-webkit-scrollbar {
        display: none;
    }

    .work-card {
        flex: 0 0 85vw;
        /* Card width */
        width: 85vw;
        height: auto;
        aspect-ratio: 9 / 16;
        margin-bottom: 0;
        scroll-snap-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .work-card .card-image {
        height: 85%;
        /* Adjusted for 9:16 aspect ratio */
        width: 100%;
        margin-bottom: 1rem;
    }

    .work-card .card-info {
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .work-card h3 {
        text-align: left !important;
        justify-content: flex-start !important;
        width: 100%;
    }

    /* 3. ABOUT SECTION SPACING (Smaller Gap) */
    .about-sidebar {
        width: 100%;
        text-align: center;
        margin-bottom: 25px;
        /* Exactly half of Work Intro (50px) */
    }

    .closing-statement .bold {
        font-size: 90% !important;
        /* 10% smaller */
    }

    .signature-line {
        display: none;
        /* Remove green line on mobile */
    }

    .contact-grid {
        padding-top: 2rem;
        /* Reduce big gap (was 10vh) */
    }

    .contact-header {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .about-content {
        width: 100%;
        padding-left: 0;
        gap: 2rem;
    }

    .about-text-block {
        text-align: left;
        /* Better readability */
    }


    /* Contact / Footer Specifics */
    .contact-action {
        gap: 3rem;
        padding-top: 2rem;
        margin-bottom: 0%;
    }

    /* Action Columns */
    .action-left,
    .action-center,
    .action-right {
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .action-right {
        order: 3;
    }

    .cta-text-right {
        text-align: center;
        margin-top: 0;
    }

    .info-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .info-text-col {
        align-items: center;
    }

    .socials-large {
        flex-direction: column;
        gap: 1.5rem;
    }

    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .separator {
        display: none;
    }
}

/* Announcement Bar */
.announcement-bar {
    display: block;
    width: 100%;
    background-color: var(--accent-color);
    /* Automotive Orange */
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    z-index: 10000;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.announcement-bar span {
    text-decoration: underline;
}

.announcement-bar:hover {
    background-color: var(--accent-secondary);
    /* Hot Magenta */
    color: #fff;
}

/* ================================================== */
/* NEW SEAMLESS NAVIGATION AND MOBILE MENU            */
/* ================================================== */

/* Desktop Header */
.site-header {
    position: fixed;
    top: 45px;
    /* Gap for announcement bar */
    left: 0;
    width: 100%;
    z-index: 9000;
    padding: 1.5rem 5%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.site-header.scrolled {
    padding: 1rem 5%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Auto-hide class modified via JS */
.site-header.nav-hidden {
    transform: translateY(-200%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    pointer-events: auto;
    /* Re-enable clicks on actual content */
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.logo-img {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    color: #fff;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.desktop-nav a.nav-accent {
    color: var(--accent-color);
    opacity: 1;
    font-weight: 600;
}

.desktop-nav a:hover {
    opacity: 1;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-color);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10000;
    /* Must sit above everything else */
    position: relative;
}

.menu-toggle .bar {
    width: 30px;
    height: 2px;
    background-color: var(--text-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger active animation */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    transform: translateY(-0px) rotate(-45deg);
}

/* Mobile Menu Fullscreen Overlay */
.m-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 9990;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: none;
    /* Block clicks when hidden */
}

.m-menu.active {
    transform: translateY(0);
    pointer-events: auto;
    /* Allow clicks when visible */
}

.m-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.m-link {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.m-menu.active .m-link {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.m-menu.active .m-link:nth-child(2) {
    transition-delay: 0.3s;
}

.m-menu.active .m-link:nth-child(3) {
    transition-delay: 0.4s;
}

.m-menu.active .m-link:nth-child(4) {
    transition-delay: 0.5s;
}

/* Mobile Breakdown */
@media (max-width: 900px) {
    .site-header {
        padding: 1.5rem 2rem;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

/* FAQ Accordion Styles */
.faq-section {
    padding: 10rem 5%;
    background: #000;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-header {
    padding: 2.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-header h3 {
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    text-transform: uppercase;
    margin: 0;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-icon::before {
    width: 20px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 20px;
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon::before {
    background: #fff;
}

.faq-item.active .faq-header h3 {
    color: var(--accent-color);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-item.active .faq-content {
    max-height: 1000px;
    padding-bottom: 3rem;
}

.faq-content p {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    max-width: 800px;
}

@media (max-width: 768px) {
    .faq-header {
        padding: 2rem 0;
    }
}

/* ================================================== */
/* CINEMATIC FOOTER v3.0                              */
/* ================================================== */

.site-footer-new {
    background: #000;
    padding: 20px 5% 40px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
    /* overflow: hidden; */
    /* Removing overflow hidden to allow the pseudo-element to extend */
}

/* Fill the gap below the footer to hide the hyperspeed canvas completely at the bottom */
.site-footer-new::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 11;
}

.f-container {
    max-width: 1400px;
    margin: 0 auto;
}

.f-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 80px;
}

.f-col-brand .f-logo {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.f-col-brand .f-tagline {
    font-family: var(--font-secondary);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 320px;
    margin-bottom: 2rem;
}

.f-heading {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: var(--accent-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.f-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.f-links li {
    margin-bottom: 1.2rem;
}

.f-links a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.f-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.f-links a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.f-links a:hover::after {
    width: 100%;
}

.f-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.f-social-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.f-social-icon:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-5px) scale(1.1);
}

.f-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.f-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    font-family: var(--font-secondary);
}

.f-legal {
    display: flex;
    gap: 2.5rem;
}

.f-legal a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.f-legal a:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 1100px) {
    .f-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem 2rem;
    }
}

@media (max-width: 600px) {
    .f-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .f-bottom {
        flex-direction: column;
        text-align: center;
    }

    .f-legal {
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Projects Page Specific Styles */
.projects-header {
    padding: 160px 5% 60px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.projects-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 6rem);
    color: #fff;
    margin-bottom: 1rem;
}

.projects-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.project-list-container {
    padding: 40px 5% 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.project-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-item:last-child {
    border-bottom: none;
}

.project-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pi-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.pi-description {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 2.5rem;
    max-width: 800px;
    opacity: 0.9;
}

.pi-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pi-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.pi-link-btn:hover::before {
    left: 0;
}

.pi-link-btn:hover {
    color: #fff;
    border-color: var(--accent-color);
}

@media (min-width: 900px) {
    .project-item {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* FAQ Icon Refinement (Character-free) */
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-icon::before {
    width: 16px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 16px;
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
    /* Makes it a minus sign */
}

.faq-icon {
    font-size: 0 !important;
    line-height: 0 !important;
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Copy Toast Notification */
.copy-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--accent-color);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10000;
    white-space: nowrap;
    box-shadow: 0 15px 35px rgba(255, 61, 61, 0.4);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.copy-toast.active {
    transform: translateX(-50%) translateY(0);
}

/* ================================================== */
/* MOBILE OPTIMIZATION (600px and below)              */
/* ================================================== */
@media (max-width: 600px) {
    :root {
        font-size: 14px;
    }

    /* Safety Margins for Headlines and Containers */
    .hero-content,
    .section-header,
    .faq-container,
    .contact-container,
    .f-container,
    .projects-header,
    .project-list-container,
    .about-layout {
        padding-left: 30px !important;
        padding-right: 30px !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    /* Linear Scaling for Hero Title */
    .hero-title {
        font-size: calc(2.2rem + 6vw) !important;
        letter-spacing: 0.02em;
        line-height: 1.1;
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 2.5rem !important;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        padding: 0 !important;
        /* Managed by parent container padding */
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        margin: 0 !important;
    }

    /* About Section Scaling */
    .sticky-title {
        font-size: calc(2.5rem + 10vw) !important;
        margin-bottom: 1.5rem;
    }

    .about-text-block {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .closing-statement {
        font-size: 1.8rem;
    }

    .closing-statement .bold {
        font-size: 3rem;
    }

    /* Section Titles Scaling */
    .section-title,
    .work-intro h2,
    .contact-info-new h2,
    .projects-title {
        font-size: calc(2rem + 8vw) !important;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    /* Fix for horizontal work cards on mobile */
    .work-container {
        padding: 0 30px !important;
        height: auto;
        flex-direction: column;
    }

    .work-intro {
        min-width: 100%;
        margin-right: 0;
        margin-bottom: 3rem;
        padding: 0 !important;
    }

    .work-gallery {
        flex-direction: column;
        gap: 2rem;
        padding: 0;
    }

    .work-card {
        height: auto;
        aspect-ratio: 16/9;
        width: 100%;
    }

    /* Contact Section Layout Fix */
    section[id="contact"] {
        padding: 60px 0 !important;
    }

    section[id="contact"]>.container>div {
        grid-template-columns: 1fr !important;
        gap: 4rem !important;
        padding: 0 30px !important;
    }

    .contact-title {
        font-size: 15vw !important;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    }

    .pi-title {
        font-size: 2.2rem;
    }

    /* FAQ Refinement */
    .faq-header h3 {
        font-size: 1.3rem;
    }
}

/* Copy Toast Notification */
.copy-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--accent-color);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10000;
    white-space: nowrap;
    box-shadow: 0 15px 35px rgba(255, 61, 61, 0.4);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.copy-toast.active {
    transform: translateX(-50%) translateY(0);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 20px rgba(196, 2, 51, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(196, 2, 51, 0.5);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

/* Desktop Only Effects for Performance */
@media (min-width: 769px) {
    .btn-secondary { backdrop-filter: blur(5px); }
}
/* ================================================== */
/* MOBILE LAYOUT OPTIMIZATION - OVERRIDE BLOCK v2     */
/* All critical overrides for screens <= 900px        */
/* Desktop unchanged. Applied LAST so it takes prec.  */
/* ================================================== */

html,
body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

@media (max-width: 900px) {

    /* === HERO SECTION === */
    .hero-content {
        padding: 0 24px !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    .hero-title {
        font-size: clamp(1.8rem, 9.5vw, 3.5rem) !important;
        line-height: 1.1 !important;
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        display: block !important;
        text-align: center !important;
    }

    .hero-title .line {
        display: block !important;
        width: 100% !important;
        white-space: normal !important;
    }

    .brand-label {
        margin-bottom: 1.5rem !important;
        position: relative !important;
        z-index: 10 !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
        padding: 0 !important;
    }

    .hero-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 1rem !important;
        padding: 0 !important;
    }

    .hero-actions .btn {
        width: 100% !important;
        text-align: center !important;
    }

    /* === BACKGROUND DECORATIVE TEXT === */
    .bg-text-decoration {
        font-size: clamp(1.8rem, 13vw, 5.5rem) !important;
        white-space: normal !important;
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        padding: 0 16px !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        opacity: 0.4 !important;
        z-index: 1 !important;
        position: relative !important;
    }

    /* === SERVICES / MIT CSINALUNK === */
    .services {
        padding: 10vh 0 4rem 0 !important;
        overflow: hidden !important;
    }

    .services-header {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        transform: none !important;
        padding: 20px 24px 1rem !important;
        text-align: center !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .services-header .hero-title {
        font-size: clamp(1.4rem, 7.5vw, 3rem) !important;
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        display: block !important;
        overflow: hidden !important;
        text-align: center !important;
        padding: 0 !important;
    }

    .services-header .hero-title .line {
        display: block !important;
        white-space: normal !important;
    }

    /* === PRICE CARDS === */
    .price-cards-grid {
        grid-template-columns: 1fr !important;
        padding: 0 16px !important;
        gap: 1.5rem !important;
    }

    .price-cards-grid:hover .price-card:not(:hover) {
        filter: none !important;
        opacity: 1 !important;
    }

    /* === ABOUT SECTION === */
    .about {
        padding: 10vh 24px !important;
    }

    .about-layout {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .about-sidebar {
        width: 100% !important;
        position: static !important;
    }

    .about-content {
        width: 100% !important;
        padding-left: 0 !important;
        gap: 2rem !important;
    }

    .sticky-title {
        font-size: clamp(2rem, 13vw, 5rem) !important;
        white-space: normal !important;
        word-break: break-word !important;
        text-align: center !important;
        line-height: 1.1 !important;
    }

    .closing-statement {
        font-size: 1.4rem !important;
    }

    .closing-statement .bold {
        font-size: 2rem !important;
    }

    /* === CONTACT / FOOTER === */
    footer {
        padding: 2rem 20px !important;
        overflow: hidden !important;
    }

    .contact-title {
        font-size: clamp(1.5rem, 10.5vw, 4.5rem) !important;
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        padding: 0 20px !important;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5) !important;
        text-align: center !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact-grid {
        padding-top: 1rem !important;
    }

    .contact-header {
        padding-top: calc(2rem + 20px) !important;
        text-align: center !important;
    }

    .contact-action {
        flex-direction: column !important;
        gap: 2rem !important;
        padding-top: 1.5rem !important;
        margin-bottom: 2rem !important;
    }

    .action-left,
    .action-center,
    .action-right {
        width: 100% !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        min-width: unset !important;
        max-width: 100% !important;
    }

    /* === WORK SECTION === */
    .work-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .work-container {
        flex-direction: column !important;
        width: 100% !important;
        height: auto !important;
        padding: 0 20px !important;
        overflow-x: hidden !important;
    }

    .work-intro {
        width: 100% !important;
        min-width: unset !important;
        margin-right: 0 !important;
        text-align: center !important;
        align-items: center !important;
        padding: 0 !important;
    }

    .work-intro h2 {
        font-size: clamp(1.8rem, 9vw, 4rem) !important;
        text-align: center !important;
    }

    .work-gallery {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding: 0 20px 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .work-gallery::-webkit-scrollbar {
        display: none !important;
    }

    .work-card {
        flex: 0 0 80vw !important;
        width: 80vw !important;
        height: auto !important;
        aspect-ratio: 9/16 !important;
        scroll-snap-align: center !important;
    }

    /* === FAQ === */
    .faq-section {
        padding: 5rem 24px !important;
    }

    /* === SITE FOOTER === */
    .site-footer-new {
        padding: 20px 20px 40px !important;
        overflow: hidden !important;
    }

    .f-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }

    /* === LOGO === */
    .logo-img {
        height: 60px !important;
    }

    /* === ANNOUNCEMENT BAR === */
    .announcement-bar {
        font-size: 0.75rem !important;
        padding: 8px 12px !important;
    }

    /* === GENERAL HEADINGS === */
    h1,
    h2,
    h3 {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {

    .hero-title {
        font-size: clamp(1.6rem, 9vw, 2.8rem) !important;
    }

    .services-header .hero-title {
        font-size: clamp(1.2rem, 7.5vw, 2.2rem) !important;
    }

    .contact-title {
        font-size: clamp(1.3rem, 9.5vw, 3rem) !important;
    }

    .sticky-title {
        font-size: clamp(1.6rem, 11vw, 3.5rem) !important;
    }

    .bg-text-decoration {
        font-size: clamp(1.5rem, 12vw, 3.5rem) !important;
    }

    .f-grid {
        grid-template-columns: 1fr !important;
    }

    .price-cards-grid {
        padding: 0 12px !important;
    }

    .faq-section {
        padding: 3rem 16px !important;
    }
}
/* ================================================== */
/* HAMBURGER MENU CLOSE BUTTON + FOOTER MOBILE FIX   */
/* Appended after main override block                  */
/* ================================================== */

/* === HAMBURGER CLOSE BUTTON === */
.m-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    font-family: sans-serif;
}

.m-menu-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    transform: rotate(90deg) scale(1.1);
}

/* The .m-menu overlay must be position: relative or fixed (it already is fixed) */
.m-menu {
    position: fixed !important;
}

/* === FOOTER MOBILE CENTER ALIGNMENT === */
@media (max-width: 900px) {

    .c-footer-main {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 3rem !important;
        padding: 0 24px 60px !important;
    }

    .c-footer-list {
        align-items: center !important;
    }

    .c-col-heading {
        margin-bottom: 1rem !important;
        text-align: center !important;
    }

    .c-footer-bottom {
        text-align: center !important;
    }

    .c-footer-visual img {
        width: 60% !important;
        opacity: 0.04 !important;
    }

    /* Main page footer (<footer> built-in) */
    .site-footer-new .f-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 2.5rem !important;
    }

    .site-footer-new .f-links {
        align-items: center !important;
    }

    .site-footer-new .f-col-brand .f-tagline {
        text-align: center !important;
        margin: 0 auto 2rem !important;
    }

    .site-footer-new .f-socials {
        justify-content: center !important;
    }

    .site-footer-new .f-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }
}

/* === AMTS PAGE TITLE MOBILE FIX === */
@media (max-width: 600px) {
    .amts-title-large {
        font-size: clamp(2.2rem, 13vw, 5rem) !important;
        white-space: normal !important;
        word-break: normal !important;
        line-height: 1 !important;
    }
}
/* ================================================== */
/* CONTACT HEADING + AMTS TITLE MOBILE FIX            */
/* ================================================== */

/* Contact section: center align info on mobile */
@media (max-width: 900px) {

    .contact-info-new {
        text-align: center !important;
        width: 100% !important;
    }

    /* Force the VĂGJUNK/BELE h2 to be centered + correct size */
    .contact-info-new h2 {
        font-size: clamp(3rem, 18vw, 8rem) !important;
        line-height: 0.95 !important;
        text-align: center !important;
        width: 100% !important;
        white-space: normal !important;
        word-break: normal !important;
        /* Each word on its own line via the <br> tag */
    }

    /* The contact section grid goes single-column */
    #contact>.container>div,
    section#contact>.container>div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Contact form wrapper full width */
    .contact-form-wrapper {
        width: 100% !important;
    }

    /* The contact info flex inside goes centered */
    .contact-info-new>div {
        align-items: center !important;
    }

    .c-info-item {
        text-align: center !important;
    }
}

/* AMTS title: stack AMTS / EXCLUSIVE each on their own line */
@media (max-width: 900px) {
    .amts-title-large {
        font-size: clamp(3rem, 20vw, 8rem) !important;
        line-height: 1 !important;
        text-align: center !important;
        white-space: normal !important;
        word-break: normal !important;
        /* The <br> in HTML ensures AMTS and EXCLUSIVE are on separate lines */
    }
}
/* ================================================== */
/* CONTACT SECTION MOBILE LAYOUT FIX                  */
/* Targets classes added to inline-styled elements    */
/* ================================================== */

@media (max-width: 900px) {

    /* Section padding */
    .contact-section-main {
        padding: 8vh 20px 6vh !important;
        box-sizing: border-box !important;
    }

    /* Main two-column grid â†’ single column on mobile */
    .contact-grid-wrap {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        width: 100% !important;
    }

    /* Contact info block */
    .contact-info-new {
        text-align: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    /* The inline flex contact details (telefon/email/social) */
    .contact-info-new>div {
        align-items: center !important;
        gap: 1.5rem !important;
    }

    .c-info-item {
        text-align: center !important;
    }

    /* Social links row â€” center them */
    .c-info-item>div[style*="display: flex"] {
        justify-content: center !important;
    }

    /* Contact form wrapper */
    .contact-form-wrapper {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Contact form itself */
    .contact-form-new {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Name + Phone two-column grid â†’ single column on mobile */
    .form-inputs-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* All form inputs full width */
    .f-input-new {
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }

    /* Submit button full width */
    .f-submit-new {
        width: 100% !important;
        box-sizing: border-box !important;
        justify-content: center !important;
    }

    /* The heading VĂGJUNK BELE â€“ controlled size */
    .contact-cta-heading {
        font-size: clamp(3rem, 18vw, 7rem) !important;
        line-height: 0.95 !important;
        margin-bottom: 2rem !important;
        text-align: center !important;
        display: block !important;
    }
}
/* CONTACT HEADING FIX - correct mobile font-size */
@media (max-width: 900px) {

    .contact-cta-heading,
    .contact-info-new h2 {
        font-size: 2.8rem !important;
        line-height: 1 !important;
        margin-bottom: 2rem !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow: hidden !important;
    }
}
/* CONTACT-CTA-HEADING: Replace removed inline font-size + mobile override */
/* Desktop: the old inline style was clamp(3rem, 6vw, 5rem) */
.contact-cta-heading {
    font-size: clamp(3rem, 6vw, 5rem);
}

/* Mobile: fit within any narrow screen */
@media (max-width: 900px) {
    .contact-cta-heading {
        font-size: 2.6rem !important;
        line-height: 1 !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }
}

/* ================================================== */
/* PRICING CONDITIONS, FORM ENHANCEMENTS & INFO BOX  */
/* ================================================== */

/* --- Per-card pricing micro-note --- */
.pc-pricing-note {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.pc-pricing-note span {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* --- Árazási feltételek section --- */
.pricing-conditions-section {
    background: #000;
    padding: 6rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-conditions-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-conditions-label {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.pricing-conditions-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 400;
    margin-bottom: 3.5rem;
}

.pricing-conditions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* New card-based condition items */
.pricing-condition-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.pricing-condition-card:hover {
    background: #101010;
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-4px);
}

.pcc-icon {
    color: var(--accent-color);
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
}

.pcc-title {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    line-height: 1.35;
}

.pcc-desc {
    font-family: var(--font-secondary);
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin: 0;
}

/* --- Fontos információ compact box --- */
.pricing-info-box {
    max-width: 960px;
    margin: 0 auto;
    background: rgba(196, 2, 51, 0.04);
    border: 1px solid rgba(196, 2, 51, 0.22);
    border-radius: 12px;
    padding: 1.6rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 2.5rem;
    align-items: center;
}

.pricing-info-box-title {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 500;
    width: 100%;
    margin-bottom: 0.2rem;
}

.pricing-info-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-secondary);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.pii-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-color);
    flex-shrink: 0;
}

/* --- Form: label, select, location notice --- */
.f-label-new {
    display: block;
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 0.55rem;
}

.f-select-new {
    width: 100%;
    padding: 1.2rem 3rem 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        no-repeat right 1.3rem center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-secondary);
    font-size: 1rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.f-select-new:focus {
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.07);
}

.f-select-new option {
    background: #111;
    color: #fff;
}

.f-location-notice {
    display: none;
    margin-top: 0.7rem;
    padding: 0.85rem 1rem;
    background: rgba(196, 2, 51, 0.08);
    border: 1px solid rgba(196, 2, 51, 0.28);
    border-radius: 6px;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    gap: 0.6rem;
    align-items: flex-start;
}

.f-location-notice.visible {
    display: flex;
}

.f-location-notice svg {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 1px;
}

/* --- Responsive --- */
@media (max-width: 1100px) {
    .pricing-conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .pricing-conditions-section {
        padding: 4rem 1.25rem;
    }

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

    .pricing-condition-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-conditions-grid {
        grid-template-columns: 1fr;
    }

    .pricing-conditions-title {
        margin-bottom: 2rem;
    }
}
