/* ═══════════════════════════════════════
   DESIGN TOKENS — Lam Wellbeing-inspired
   warm, organic, trust-building palette
   ═══════════════════════════════════════ */
:root {
    --sand-light: #FBF7F2;
    --sand: #F3EBE0;
    --sand-dark: #E8DACE;
    --terracotta: #C4835B;
    --terracotta-soft: #D4A07A;
    --navy: #1B3A54;
    --navy-light: #2D5F85;
    --sage: #8BA88E;
    --sage-light: #B5CDB7;
    --text-primary: #3A3632;
    --text-secondary: #6B6560;
    --white: #FFFFFF;

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Nunito', -apple-system, sans-serif;

    --radius-soft: 24px;
    --radius-blob: 60% 40% 50% 50% / 50% 60% 40% 50%;
    --shadow-soft: 0 8px 40px rgba(27, 58, 84, 0.06);
    --shadow-card: 0 4px 24px rgba(27, 58, 84, 0.05);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.75;
    background-color: var(--sand-light);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */
h1, h2, h3 {
    font-family: var(--font-display);
    color: var(--navy);
    font-weight: 400;
    line-height: 1.25;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: 0.75rem; }

p { color: var(--text-secondary); margin-bottom: 1.25rem; font-size: 1.05rem; }

.section-label {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--terracotta);
    display: block;
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════ */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
}

section { padding: 100px 0; position: relative; }

.blob {
    position: absolute;
    z-index: 0;
    opacity: 0.35;
    pointer-events: none;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn-primary {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--navy);
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--navy);
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--navy);
    cursor: pointer;
}

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

.btn-warm {
    display: inline-block;
    background: var(--terracotta);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid var(--terracotta);
    cursor: pointer;
}

.btn-warm:hover {
    background: var(--terracotta-soft);
    border-color: var(--terracotta-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 131, 91, 0.25);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
nav {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--navy);
}

.logo span { color: var(--terracotta); }

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: var(--transition);
}

.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    font-size: 0.85rem;
    padding: 10px 24px;
    background: var(--navy);
    color: var(--white) !important;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--navy-light); opacity: 0.95; }

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0;
    border: 1.5px solid var(--sand-dark);
    border-radius: 50px;
    overflow: hidden;
    margin-left: 8px;
}

.lang-switcher button {
    background: none;
    border: none;
    padding: 6px 12px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.lang-switcher button:not(:last-child) {
    border-right: 1.5px solid var(--sand-dark);
}

.lang-switcher button.active {
    background: var(--navy);
    color: var(--white);
}

.lang-switcher button:hover:not(.active) {
    background: var(--sand);
    color: var(--navy);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 5px 0;
    transition: var(--transition);
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.hero {
    background: var(--sand-light);
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 { margin-bottom: 24px; }

.hero-text h1 em {
    font-style: italic;
    color: var(--terracotta);
}

.hero-text p {
    font-size: 1.15rem;
    max-width: 500px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Hero image with organic shape */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-wrapper {
    position: relative;
    width: 420px;
    height: 500px;
}

.hero-img-wrapper::before {
    content: '';
    position: absolute;
    inset: -12px;
    background: linear-gradient(135deg, var(--sand-dark), var(--sage-light));
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    z-index: 0;
    animation: morphBlob 8s ease-in-out infinite;
}

.hero-img-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    animation: morphBlob 8s ease-in-out infinite;
}

.hero-float-card {
    position: absolute;
    bottom: 20px;
    left: -30px;
    z-index: 2;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatY 4s ease-in-out infinite;
}

.hero-float-card .float-icon {
    width: 44px;
    height: 44px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-float-card .float-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}

.hero-float-card .float-text small {
    font-weight: 400;
    color: var(--text-secondary);
    display: block;
}

@keyframes morphBlob {
    0%, 100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
    25% { border-radius: 45% 55% 40% 60% / 60% 45% 55% 40%; }
    50% { border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%; }
    75% { border-radius: 40% 60% 45% 55% / 55% 40% 60% 45%; }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */
.trust-bar {
    padding: 50px 0;
    background: var(--white);
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item { text-align: center; }

.trust-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--navy);
    display: block;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ═══════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════ */
.about { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
}

.about-img-frame { position: relative; }

.about-img-frame img {
    border-radius: 30px 80px 30px 30px;
    box-shadow: var(--shadow-soft);
    width: 100%;
}

.about-img-frame::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border-radius: 30px 80px 30px 30px;
    border: 2px solid var(--sage-light);
    z-index: -1;
}

.about-text .highlight-box {
    background: var(--sand);
    border-left: 3px solid var(--terracotta);
    padding: 20px 24px;
    border-radius: 0 var(--radius-soft) var(--radius-soft) 0;
    margin: 24px 0;
}

.about-text .highlight-box p {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.language-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.lang-tag {
    background: var(--sand);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
}

.lang-tag:hover { background: var(--sand-dark); }

/* ═══════════════════════════════════════
   SERVICES (Solution Grid)
   ═══════════════════════════════════════ */
.services { background: var(--sand-light); }

.services-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-soft);
    padding: 44px 36px;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--sand-dark);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--sand-dark);
}

.service-card:hover::before { background: var(--terracotta); }

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card:nth-child(1) .service-icon { background: #E8F0E9; }
.service-card:nth-child(2) .service-icon { background: #FFF0E5; }
.service-card:nth-child(3) .service-icon { background: #E5EDF5; }
.service-card:nth-child(4) .service-icon { background: #F5EDE5; }
.service-card:nth-child(5) .service-icon { background: #EDE5F0; }

.service-card p { font-size: 0.95rem; margin: 0; }

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.service-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--sand-light);
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════════ */
.process { background: var(--white); }

.process-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--sand-dark), var(--terracotta-soft), var(--sage-light), var(--navy-light));
    opacity: 0.4;
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    transition: var(--transition);
}

.step:hover .step-number {
    background: var(--navy);
    color: var(--white);
}

.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; }

/* ═══════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════ */
.pricing { background: var(--sand-light); }

.pricing-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 60px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 820px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border-radius: var(--radius-soft);
    padding: 48px 40px;
    text-align: center;
    border: 2px solid var(--sand);
    transition: var(--transition);
    position: relative;
}

.price-card.featured {
    border-color: var(--terracotta);
    box-shadow: 0 12px 48px rgba(196, 131, 91, 0.12);
}

.price-card.featured::before {
    content: var(--featured-text, "Most popular");
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--terracotta);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

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

.price-emoji {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.price-card h3 { margin-bottom: 8px; }

.price-amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--navy);
    margin: 16px 0 4px;
}

.price-detail {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.price-features li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--sand);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li:last-child { border: none; }

.price-features li::before {
    content: '✓';
    color: var(--sage);
    font-weight: 700;
    font-size: 1rem;
}

.price-free {
    background: var(--sand);
    border-radius: var(--radius-soft);
    padding: 36px 40px;
    max-width: 820px;
    margin: 32px auto 0;
    text-align: center;
}

.price-free h3 { margin-bottom: 8px; }
.price-free p { margin-bottom: 20px; }

/* ═══════════════════════════════════════
   TESTIMONIALS (Carousel)
   ═══════════════════════════════════════ */
.testimonials { 
    background: var(--sand-light) !important; 
    padding-bottom: 100px !important;
}

.testimonial-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 60px;
}

/* Carousel Container */
.testimonial-carousel-container {
    position: relative;
    max-width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

/* Hide overflow for the sliding effect */
.testimonial-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0 30px;
}

/* The moving track */
.testimonial-carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s ease;
}

/* Individual Cards */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-soft);
    padding: 36px 32px;
    position: relative;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(33.333% - 18.66px); 
}

.testimonial-card::before {
    content: '❝';
    font-size: 3rem;
    color: var(--terracotta-soft);
    opacity: 0.5;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.testimonial-card p {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
}

.more-link {
    font-size: 0.85rem;
    color: var(--terracotta);
    font-weight: 600;
    cursor: pointer;
    display: block;
    margin-bottom: 20px;
}

.more-link:hover {
    text-decoration: underline;
}

.testimonial-author {
    margin-top: auto; 
    padding-top: 15px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
}

.testimonial-stars {
    color: var(--terracotta);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

/* Carousel Buttons */
.carousel-btn {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--sand);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.carousel-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}
.modal-content {
    background-color: var(--sand-light);
    margin: 15% auto;
    padding: 40px;
    border-radius: var(--radius-soft);
    width: 80%;
    max-width: 600px;
    position: relative;
    box-shadow: var(--shadow-soft);
}
.modal-content p {
    font-style: italic;
    margin-top: 20px;
}
.modal-content h3 {
    margin-top: 0;
}
.close {
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner {
    background: var(--navy);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: var(--navy-light);
    border-radius: 50%;
    opacity: 0.15;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

.cta-banner p {
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 36px;
    font-size: 1.1rem;
    position: relative;
}

.cta-banner .btn-warm { position: relative; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
    background: var(--sand);
    padding: 80px 0 40px;
}

/* Angepasst auf 5 Spalten */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-display);
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Link-Styling für "Über mich" in der Überschrift */
.footer-heading-link {
    color: var(--navy);
    transition: var(--transition);
}
.footer-heading-link:hover {
    color: var(--terracotta);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-col ul a:hover { color: var(--terracotta); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-contact-item .fc-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--sand-dark);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footer-legal a {
    color: var(--text-secondary);
    margin-left: 20px;
    transition: var(--transition);
}

.footer-legal a:hover { color: var(--terracotta); }

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-badges { justify-content: center; }
    .hero-visual { margin-top: 40px; }
    .hero-img-wrapper { width: 320px; height: 380px; }
    .hero-float-card { left: 50%; transform: translateX(-50%); bottom: -10px; }

    .about-grid { grid-template-columns: 1fr; }
    .about-img-frame { max-width: 380px; margin: 0 auto; }

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

    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }

    .pricing-cards { grid-template-columns: 1fr; max-width: 440px; }

    /* Carousel Responsive Adjustments */
    .testimonial-card { flex: 0 0 100%; }
    .carousel-btn.prev { left: -10px; }
    .carousel-btn.next { right: -10px; }
    .testimonial-carousel-container { max-width: 500px; margin: 0 auto 40px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

    .nav-links { display: none; }
    .nav-toggle { display: block; }
}

@media (max-width: 600px) {
    section { padding: 70px 0; }
    .hero { padding: 40px 0 70px; }
    .hero-img-wrapper { width: 260px; height: 320px; }
    .process-steps { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    @keyframes floatY {
        0%, 100% { transform: translate(-50%, 0); }
        50% { transform: translate(-50%, -10px); }
    }
}

/* Mobile nav open state */
.nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sand-light);
    padding: 24px 28px;
    box-shadow: var(--shadow-soft);
    border-radius: 0 0 var(--radius-soft) var(--radius-soft);
}

.nav-links.open .lang-switcher {
    align-self: flex-start;
}