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

:root {
    --gold: #d5c07f;
    --gold-light: #e8d8a6;
    --gold-dark: #b7a261;
    --dark: #0a0a0a;
    --darker: #000000;
    --dark-card: #111111;
    --light: #ffffff;
    --gray: #888;
    --gray-light: #999;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--light);
    background: var(--darker);
    overflow-x: hidden;
    line-height: 1.8;
}

body.intro-lock {
    overflow: hidden;
}

/* Intro overlay */
.intro-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #1b1b1b 0%, #000000 55%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
    transform-origin: center;
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.intro-overlay--hide {
    opacity: 0;
    transform: scale(1.03);
    pointer-events: none;
}

.intro-inner {
    text-align: center;
}

.intro-mark {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #ffffff;
}

.intro-line {
    width: 140px;
    height: 2px;
    margin: 1.4rem auto 1rem;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.intro-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Navigation Premium */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(213, 192, 127, 0.15);
}

nav.scrolled {
    padding: 0.8rem 0;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 10px 40px rgba(213, 192, 127, 0.1);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 20px rgba(213, 192, 127, 0.3));
}

nav.scrolled .logo-img {
    height: 55px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3.5rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: transform 0.4s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle span:nth-child(1),
.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) {
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* HERO façon maquette The Square */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background-image: url("assets/image_fondTest2.png"); /* visuel full width adapte aux grands �crans */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
}

/* voile sombre comme sur la capture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

/* bar de contact tout en haut */
.hero-topbar {
    position: absolute;
    top: 14px;
    left: 7%;
    right: 7%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
    z-index: 3;
    flex-wrap: wrap;
}

.hero-topbar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.topbar-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: #000;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(213, 192, 127, 0.25);
}

.topbar-contact-btn:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #000;
    transform: translateY(-2px);
}

/* contenu centré verticalement côté gauche */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* logo en haut à gauche sur l'image */
.hero-logo-main {
    width: 150px;
    height: auto;
    margin-bottom: 3rem;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.6));
}

/* bloc texte comme la capture */
.hero-text-block {
    max-width: 550px;
}

.hero-script {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 1.8vw + 1rem, 2.6rem);
    font-style: italic;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* titre principal : même style que la capture */
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 2.8vw + 1.2rem, 3.8rem);
    font-weight: 300;
    letter-spacing: clamp(2px, 0.6vw, 4px);
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    white-space: normal;
}

/* on n'utilise plus tagline + subtitle sur la home */
.hero .tagline,
.hero .subtitle {
    display: none;
}

/* bouton téléphone comme le rectangle jaune de la capture */
.hero-contact-btn {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    padding: 1.2rem 3.5rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.hero-contact-btn:hover {
    color: #000;
}

@media (max-width: 968px) {
    .hero {
        text-align: left;
        background-attachment: scroll;
        background-position: center;
    }

    .hero-logo-main {
        width: 120px;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 2.4rem);
        letter-spacing: 2px;
        white-space: normal;
    }

    .hero-script {
        font-size: 1.8rem;
    }

    .hero-topbar {
        font-size: 0.8rem;
        left: 1.5rem;
        right: 1.5rem;
        justify-content: center;
    }
}


.cta-button {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(213, 192, 127, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    transform: scaleX(1);
}

.cta-button:hover {
    color: var(--darker);
    border-color: var(--gold-light);
    box-shadow: 0 0 30px rgba(213, 192, 127, 0.5);
}

/* Section commune premium */
section {
    padding: 8rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 5px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--gray-light);
    margin-bottom: 5rem;
    font-weight: 200;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
    letter-spacing: 1px;
}

/* Secondary showcase section */
.showcase {
    padding-top: 6rem;
    padding-bottom: 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--darker);
}

.showcase-card {
    max-width: 1100px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.showcase-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #ffffff;
}

.showcase-nav {
    display: flex;
    gap: 2.5rem;
    font-size: 0.95rem;
}

.showcase-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.showcase-nav a.active {
    color: #ffffff;
    font-weight: 500;
}

.showcase-nav a:hover {
    color: #ffffff;
}

.showcase-visual {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 16 / 8.8;
    min-height: 480px;
    margin-bottom: 3rem;
    background:
        radial-gradient(circle at 20% 25%, rgba(213, 192, 127, 0.08), transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(213, 192, 127, 0.05), transparent 40%),
        #0c0c0c;
    border: 1px solid rgba(213, 192, 127, 0.25);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(213, 192, 127, 0.08);
    isolation: isolate;
}

.showcase-visual::before {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 20px;
    border: 1px solid rgba(213, 192, 127, 0.35);
    z-index: 2;
    pointer-events: none;
    opacity: 0.85;
}

.showcase-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;
}

.showcase-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
    transform: scale(1.02);
    filter: saturate(1.05);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.showcase-card:hover .showcase-visual img {
    transform: scale(1.06);
    filter: saturate(1.12);
}

.showcase-content {
    text-align: center;
    padding-top: 0.5rem;
}

.showcase-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--light);
    margin-bottom: 2rem;
    white-space: nowrap;
}

.showcase-button {
    display: inline-block;
    padding: 0.9rem 2.8rem;
    border-radius: 999px;
    background: #2b2b2b;
    color: #f5f5f5;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
}

.showcase-button:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Vision Section Premium */
.vision {
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 50%, var(--darker) 100%);
    position: relative;
}

.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.vision::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.vision-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.3rem;
    line-height: 2.2;
    color: var(--gray-light);
    font-weight: 300;
}

.vision-content p {
    margin-bottom: 2rem;
}

.vision-content strong {
    color: var(--gold);
    font-weight: 400;
    font-size: 1.4rem;
}

/* Services Section Premium */
.services {
    background: var(--darker);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.service-card {
    background: var(--dark-card);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(213, 192, 127, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(213, 192, 127, 0.3);
    border-color: var(--gold);
}

.service-icon {
    position: relative;
    margin: -4rem -3rem 2.5rem;
    height: 190px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1);
    opacity: 0.95;
    transform: scale(1.02);
    transition: transform 0.6s ease, filter 0.6s ease, opacity 0.6s ease;
}

.service-icon-conciergerie img,
.service-icon-entretien img {
    transform: scale(0.96);
}

.service-card:hover .service-icon-conciergerie img,
.service-card:hover .service-icon-entretien img {
    transform: scale(1.0);
}

.service-card:hover .service-icon img {
    transform: scale(1.06);
    filter: saturate(1.08);
    opacity: 1;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.service-list {
    list-style: none;
    text-align: left;
}

.service-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(213, 192, 127, 0.08);
    color: var(--gray-light);
    font-size: 1rem;
    font-weight: 300;
    position: relative;
    padding-left: 30px;
    transition: all 0.3s ease;
}

.service-list li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateY(-50%);
}

.service-list li:hover {
    color: var(--light);
    padding-left: 35px;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-note {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 2rem;
    font-weight: 300;
}

.service-badge {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, rgba(213, 192, 127, 0.15), rgba(213, 192, 127, 0.05));
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Stats Section Premium */
.stats {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    padding: 6rem 4rem;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(213, 192, 127, 0.05) 0%, transparent 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(213, 192, 127, 0.03);
    border: 1px solid rgba(213, 192, 127, 0.15);
    transition: all 0.4s ease;
}

.stat-item:hover {
    background: rgba(213, 192, 127, 0.08);
    transform: scale(1.05);
    border-color: var(--gold);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 4vw + 1rem, 4.4rem);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.05;
    white-space: nowrap;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Contact Section Premium */
.contact {
    background: var(--darker);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-text {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 4rem;
    color: var(--gray-light);
    font-weight: 300;
}

/* FAQ Section Premium */
.faq {
    background: var(--dark);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(213, 192, 127, 0.08), transparent 55%);
    opacity: 0.8;
}

.faq-grid {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.faq-item {
    background: rgba(0, 0, 0, 0.65);
    border-radius: 18px;
    padding: 2.5rem 2.25rem;
    border: 1px solid rgba(213, 192, 127, 0.18);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.7;
}

.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 0.98rem;
    color: var(--gray-light);
    line-height: 1.9;
    font-weight: 300;
}

/* Footer Premium */
footer {
    background: linear-gradient(180deg, var(--darker) 0%, #000000 100%);
    padding: 4rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(213, 192, 127, 0.15);
}

.footer-logo {
    width: 200px;
    margin-bottom: 2rem;
    opacity: 0.6;
    filter: drop-shadow(0 0 20px rgba(213, 192, 127, 0.2));
}

footer p {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gray);
    margin-top: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Premium */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 2rem;
    }

    .hero {
        background-attachment: scroll; /* fiabilise l'affichage sur tablettes */
    }

    section {
        padding: 6rem 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2.5rem;
    }

    .faq-grid {
        max-width: 900px;
    }
}

@media (max-width: 968px) {
    .faq-grid {
        margin-top: 3rem;
    }
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 968px) {
    .showcase {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .showcase-card {
        border-radius: 24px;
        padding: 2rem 1.5rem 2.5rem;
    }

    .showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .showcase-nav {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .showcase-visual {
        aspect-ratio: 4 / 3;
        min-height: 360px;
        margin-bottom: 2.4rem;
    }

    .showcase-content h2 {
        font-size: 2.1rem;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: clamp(1.9rem, 6vw + 1rem, 2.2rem);
        letter-spacing: 1.5px;
    }

    .hero-text-block {
        max-width: 100%;
    }

    .hero-topbar {
        justify-content: center;
        gap: 0.75rem;
        left: 1rem;
        right: 1rem;
    }

    .topbar-contact-btn {
        width: 100%;
        justify-content: center;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .hero .subtitle {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 0.75rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 3rem 2rem;
    }

    .service-icon {
        margin: -3rem -2rem 2rem;
        height: 170px;
    }

    .faq-item {
        padding: 2rem 1.5rem;
    }

    .vision-content {
        font-size: 1.1rem;
    }

    .showcase {
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 4rem;
        align-items: flex-start;
    }

    .showcase-visual {
        aspect-ratio: 4 / 5;
        min-height: 260px;
        margin-bottom: 1.8rem;
        border-radius: 22px;
    }

    .showcase-visual::before {
        inset: 12px;
        border-radius: 14px;
    }

    .showcase-content h2 {
        font-size: 1.9rem;
        white-space: normal;
        line-height: 1.3;
    }
}

/* Mobile navigation */
@media (max-width: 968px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        background: rgba(0, 0, 0, 0.96);
        padding: 2.5rem 2rem;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        min-width: 60%;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .menu-toggle {
        display: flex;
    }
}


















