/* ================================================
   PEAU NEUVE - PREMIUM DESIGN SYSTEM V2.5
   Aesthetic: Refined Swiss Medical Spa - Ultra Premium
   ================================================ */

/* === CSS RESET & VARIABLES === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Palette */
    --noir: #1A1A1A;
    --charcoal: #2D2D2D;
    --taupe: #6B5B4F;
    --bronze: #8B7355;
    --champagne: #F5F0E8;
    --cream: #FAF8F5;
    --white: #FFFFFF;
    --gold-accent: #C9A962;
    
    /* Typography */
    --font-display: 'Bodoni Moda', 'Didot', 'Times New Roman', serif;
    --font-body: 'Bellefair', 'Georgia', serif;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 64px;
    --space-xl: 120px;
    
    /* Effects */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
    --shadow-subtle: 0 4px 20px rgba(26, 26, 26, 0.04);
    --shadow-elevated: 0 20px 60px rgba(26, 26, 26, 0.08);
    --shadow-hover: 0 30px 80px rgba(26, 26, 26, 0.12);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--noir);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

p {
    font-size: 1.05rem;
    max-width: 65ch;
}

/* === LAYOUT === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

section {
    padding: var(--space-xl) 0;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-subtle);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.nav-logo .logo-image {
    height: 50px;
    width: auto;
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-logo .logo-image {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-fast);
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bronze);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bronze);
}

.nav-cta {
    margin-left: 20px;
}


/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.btn-primary {
    background: var(--noir);
    color: var(--white);
    border-color: var(--noir);
}

.btn-primary:hover {
    background: transparent;
    color: var(--noir);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--noir);
    border-color: var(--noir);
}

.btn-secondary:hover {
    background: var(--noir);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* === HERO SECTION - SPLIT SCREEN === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--cream);
    overflow: hidden;
    padding-top: 0; /* Remove padding for split screen */
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    flex: 1;
}

.hero-text-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--cream);
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--noir);
}

.hero-title span {
    display: block;
    font-style: italic;
    color: var(--bronze);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--taupe);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero-image-side {
    position: relative;
    overflow: hidden;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--taupe);
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--bronze), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

/* === TRUST BAR === */
.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--champagne);
    border-bottom: 1px solid var(--champagne);
    padding: var(--space-md) 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--taupe);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--bronze);
    flex-shrink: 0;
}

/* === SECTION STYLING === */
.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--bronze);
}

.section-header p {
    color: var(--taupe);
    font-size: 1.1rem;
    margin: var(--space-md) auto 0;
}

/* === STUDIO SECTION === */
.studio {
    background: var(--white);
}

.studio-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.studio-text p {
    margin-bottom: var(--space-md);
    color: var(--charcoal);
}

.studio-description {
    font-size: 1.4rem;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--noir);
    line-height: 1.5;
}

.studio-philosophy {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--bronze);
    border-left: 2px solid var(--gold-accent);
    padding-left: var(--space-md);
    margin-top: var(--space-md);
}

.studio-image {
    position: relative;
}

.studio-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.studio-image:hover img {
    transform: scale(1.02);
}

/* === TECHNOLOGY SECTION === */
.technology {
    background: var(--champagne);
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
    align-items: center;
}

.tech-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.tech-image:hover img {
    transform: scale(1.02);
}

/* === RESULTS / AVANT-APRES SECTION === */
.results {
    background: var(--white);
}

.results-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.result-card {
    position: relative;
    overflow: hidden;
    background: var(--champagne);
    transition: var(--transition-smooth);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.result-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.result-card:hover .result-image img {
    transform: scale(1.05);
}

.result-info {
    padding: var(--space-sm) var(--space-md);
    background: var(--white);
    text-align: center;
}

.result-label {
    font-size: 0.85rem;
    color: var(--taupe);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.results-cta {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: var(--champagne);
    margin-top: var(--space-lg);
    border-radius: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.results-cta p {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

/* === WHY CHOOSE SECTION === */
.why-choose {
    background: var(--cream);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
}

.reason-card {
    text-align: center;
    padding: var(--space-md);
    transition: var(--transition-smooth);
    background: transparent;
}

.reason-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow-elevated);
}

.reason-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--space-sm);
    color: var(--bronze);
}

.reason-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1;
}

.reason-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.reason-card p {
    font-size: 0.9rem;
    color: var(--taupe);
    line-height: 1.6;
}

/* === ABOUT US SECTION === */
.about-us {
    background: var(--champagne);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.founder-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.founder-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-5px);
}

.founder-image {
    height: 320px;
    overflow: hidden;
    background: var(--champagne);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.founder-info {
    padding: var(--space-md);
}

/* === TESTIMONIALS === */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonial-card {
    padding: var(--space-md);
    background: var(--cream);
    text-align: center;
    transition: var(--transition-smooth);
}

.testimonial-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

/* === PRICING SECTION === */
.pricing {
    background: var(--cream);
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.pricing-form {
    background: var(--white);
    padding: var(--space-lg);
    box-shadow: var(--shadow-subtle);
}

.pricing-info h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--noir);
}

.pricing-info p {
    color: var(--taupe);
    margin-bottom: var(--space-sm);
}

.pricing-features-list {
    list-style: none;
    margin: var(--space-md) 0;
    padding: 0;
}

.pricing-features-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--charcoal);
}

.pricing-features-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--bronze);
    border-radius: 50%;
}

.privacy-notice {
    margin-top: var(--space-md);
    padding: var(--space-sm);
    background: var(--champagne);
    border-radius: 4px;
}

.privacy-notice h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--noir);
}

.privacy-notice p {
    font-size: 0.85rem;
    color: var(--taupe);
    margin: 0;
}

/* === FORM STYLES === */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--champagne);
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--noir);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bronze);
    background: var(--white);
}

/* === PROCESS SECTION === */
.process {
    background: var(--champagne);
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 var(--space-sm);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--noir);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bronze);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--noir);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--taupe);
    max-width: 200px;
    margin: 0 auto;
}

.process-connector {
    width: 100%;
    height: 1px;
    background: var(--bronze);
    position: absolute;
    top: 20px;
    left: 50%;
    z-index: 1;
}

.process-step:last-child .process-connector {
    display: none;
}

/* === FAQ SECTION === */
.faq {
    background: var(--white);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--champagne);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--noir);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--bronze);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--bronze);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--taupe);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer ul {
    list-style: none;
    margin: var(--space-sm) 0;
    padding-left: 0;
}

.faq-answer li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--taupe);
    font-size: 0.95rem;
}

.faq-answer li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--bronze);
}

/* === CONTACT SECTION === */
.contact {
    background: var(--champagne);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-option {
    background: var(--white);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    transition: var(--transition-smooth);
    border-radius: 8px;
    box-shadow: var(--shadow-subtle);
}

.contact-option:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

.contact-option .option-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--champagne);
    border-radius: 50%;
    color: var(--bronze);
}

.contact-option .option-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.contact-option h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--noir);
}

.contact-option p {
    font-size: 0.9rem;
    color: var(--taupe);
    margin-bottom: var(--space-sm);
}

.contact-info {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-subtle);
}

.info-section h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    color: var(--noir);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.info-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bronze);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-item p {
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* === FOOTER === */
.footer {
    background: var(--noir);
    color: var(--white);
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--gold-accent);
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--white);
}

.footer-brand h3 span {
    color: var(--gold-accent);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-certifications .certification {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold-accent);
    color: var(--noir);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    color: white;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 2000;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--noir);
    transition: var(--transition-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-timeline {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
    
    .process-connector {
        display: none;
    }
    
    .process-step {
        flex: 0 0 calc(50% - var(--space-md));
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 80px;
        --space-lg: 48px;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        width: 100vw;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        z-index: 1999;
        padding: var(--space-xl) var(--space-md);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu .nav-link {
        font-size: 1.5rem;
        padding: 5px;
        font-family: var(--font-display);
    }

    .nav-cta {
        display: none !important;
    }

    body.menu-open {
        overflow: hidden;
    }
    
    /* Hero Mobile */
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-text-side {
        padding: calc(var(--space-xl) + 40px) var(--space-md) var(--space-lg);
        order: 1;
    }
    
    .hero-image-side {
        order: 2;
        height: 50vh;
        position: relative;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .hero-scroll {
        display: none;
    }
    
    /* Trust Bar Mobile */
    .trust-items {
        gap: var(--space-md);
    }
    
    .trust-item {
        flex: 0 0 calc(50% - var(--space-sm));
        justify-content: center;
    }
    
    /* Results Mobile */
    .results-gallery {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    /* General Grids */
    .studio-content,
    .tech-content,
    .pricing-content {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Process Mobile */
    .process-step {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-form {
        padding: var(--space-md);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .trust-item {
        flex: 0 0 100%;
        font-size: 0.8rem;
    }
}
