:root {
    --snow: #F6F7FB;
    --ice: #E4E5F0;
    --stone: #3A3A50;
    --granite: #262262;
    --peak: #6067FF;
    --peak-soft: #6067FF15;
    --glacier: #59D7FE;
    --glacier-soft: #59D7FE12;
    --mist: #8E8EA0;
    --serif: 'DM Sans', system-ui, sans-serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
    font-family: var(--sans);
    background: var(--snow);
    color: var(--stone);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--peak); color: white; }

/* ─── NAV ─── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.25rem 3rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.5s var(--ease);
    mix-blend-mode: normal;
}
nav.scrolled {
    background: rgba(246,247,251,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 0.9rem 3rem;
}
.nav-logo {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--granite);
    text-decoration: none;
    display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
    font-size: 0.875rem; font-weight: 400;
    color: var(--stone); text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; width: 0; height: 1.5px;
    background: var(--peak);
    transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--granite); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--granite) !important; color: white !important;
    padding: 0.6rem 1.5rem; border-radius: 100px;
    font-size: 0.8rem !important; font-weight: 500 !important;
    letter-spacing: 0.04em;
    transition: transform 0.3s var(--ease), box-shadow 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.nav-lang {
    font-size: 0.8rem !important; font-weight: 600 !important;
    color: var(--mist) !important; letter-spacing: 0.06em;
    padding: 0.4rem 0.8rem; border: 1.5px solid var(--ice);
    border-radius: 100px; transition: all 0.3s var(--ease) !important;
}
.nav-lang:hover { color: var(--granite) !important; border-color: var(--granite); }
.nav-lang::after { display: none !important; }

/* Hamburger toggle - hidden on desktop */
.nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px;
    padding: 4px; z-index: 110;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--granite); border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1260px;
    margin: 0 auto;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
}
/* Subtle mountain silhouette BG */
.hero-bg {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 45%;
    pointer-events: none; z-index: 0;
    opacity: 0.035;
}
/* Gradient orbs */
.hero::before {
    content: '';
    position: absolute; top: -20%; right: -10%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(96,103,255,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite alternate;
}
.hero::after {
    content: '';
    position: absolute; bottom: -15%; left: -10%;
    width: 45vw; height: 45vw;
    background: radial-gradient(circle, rgba(89,215,254,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 10s ease-in-out infinite alternate-reverse;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.15); opacity: 1; }
}

.hero-text { position: relative; z-index: 2; }

/* ─── ROTATING TEXT ─── */
.rotating-text-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
    height: 1.15em;
}
.rotating-text {
    display: inline-block;
    position: relative;
    animation: textRotateIn 0.6s var(--ease) both;
}
.rotating-text.slide-out {
    animation: textRotateOut 0.2s var(--ease) both;
}
.rotating-text.slide-in {
    animation: textRotateIn 0.25s var(--ease) both;
}
@keyframes textRotateOut {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-100%); opacity: 0; }
}
@keyframes textRotateIn {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.hero-badge-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 4.5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -0.03em;
    color: var(--granite);
    max-width: 560px;
    position: relative; z-index: 1;
    animation: fadeUp 0.8s var(--ease) 0.2s both;
}
.hero h1 em {
    font-style: normal;
    color: var(--peak);
    font-weight: 600;
}
.hero-text > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--mist);
    max-width: 460px;
    margin: 1.5rem 0 2rem;
    position: relative; z-index: 1;
    animation: fadeUp 0.8s var(--ease) 0.35s both;
}
.hero-buttons {
    display: flex; gap: 1rem; flex-wrap: wrap;
    position: relative; z-index: 1;
    animation: fadeUp 0.8s var(--ease) 0.5s both;
}

/* ─── HERO MOCKUP (right side) ─── */
.hero-mockup {
    position: relative; z-index: 2;
    display: flex; justify-content: center; align-items: center;
    animation: fadeUp 1s var(--ease) 0.4s both;
}
.hero-mockup-wrapper {
    position: relative;
    width: 100%; max-width: 480px;
}
/* Glow behind mockup */
.hero-mockup-wrapper::before {
    content: '';
    position: absolute; inset: -20%;
    background: radial-gradient(circle, rgba(96,103,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
/* Main dashboard card */
.mock-dashboard {
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
    padding: 1.8rem;
    position: relative; z-index: 2;
    border: 1px solid rgba(0,0,0,0.04);
}
.mock-dash-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem;
}
.mock-dash-title { font-size: 0.9rem; font-weight: 600; color: var(--granite); }
.mock-dash-subtitle { font-size: 0.72rem; color: var(--mist); margin-top: 2px; }
.mock-dash-dots { display: flex; gap: 5px; }
.mock-dash-dots span { width: 8px; height: 8px; border-radius: 50%; }

/* Mini chart bars */
.mock-chart {
    display: flex; align-items: flex-end; gap: 8px;
    height: 90px; margin-bottom: 1.5rem;
    padding: 0 0.25rem;
}
.mock-bar {
    flex: 1; border-radius: 6px 6px 3px 3px;
    background: var(--ice);
    transition: height 0.6s var(--ease);
    position: relative;
}
.mock-bar.active { background: var(--peak); }
.mock-bar.accent { background: var(--glacier); }

/* Appointment rows */
.mock-rows { display: flex; flex-direction: column; gap: 0.6rem; }
.mock-row {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    background: var(--snow);
    border: 1px solid transparent;
    transition: border-color 0.3s;
}
.mock-row:first-child { border-color: rgba(96,103,255,0.12); background: rgba(96,103,255,0.03); }
.mock-avatar {
    width: 34px; height: 34px; border-radius: 10px;
    flex-shrink: 0;
}
.mock-row-text { flex: 1; }
.mock-row-name { font-size: 0.78rem; font-weight: 600; color: var(--granite); }
.mock-row-detail { font-size: 0.68rem; color: var(--mist); margin-top: 1px; }
.mock-row-badge {
    font-size: 0.62rem; padding: 0.2rem 0.55rem;
    border-radius: 100px; font-weight: 600;
    letter-spacing: 0.02em;
}
.badge-confirmed { background: #E8F5E9; color: #2E7D32; }
.badge-progress { background: #E3F2FD; color: #1565C0; }
.badge-pending { background: #FFF3E0; color: #E65100; }

/* Floating notification card */
.mock-notif {
    position: absolute;
    top: -18px; right: -24px;
    background: white;
    border-radius: 14px;
    padding: 0.75rem 1rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    display: flex; align-items: center; gap: 0.6rem;
    z-index: 5;
    animation: floatNotif 3s ease-in-out infinite alternate;
    border: 1px solid rgba(0,0,0,0.04);
}
.mock-notif-icon {
    width: 32px; height: 32px; border-radius: 10px;
    background: #E8F5E9;
    display: grid; place-items: center;
    font-size: 0.85rem;
}
.mock-notif-text { font-size: 0.72rem; font-weight: 600; color: var(--granite); }
.mock-notif-sub { font-size: 0.65rem; color: var(--mist); margin-top: 1px; }

/* Floating stat pill */
.mock-stat-pill {
    position: absolute;
    bottom: 30px; left: -30px;
    background: white;
    border-radius: 14px;
    padding: 0.7rem 1rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    z-index: 5;
    animation: floatNotif 4s ease-in-out 0.5s infinite alternate;
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
}
.mock-stat-num { font-size: 1.3rem; font-weight: 700; color: var(--peak); line-height: 1; }
.mock-stat-label { font-size: 0.62rem; color: var(--mist); margin-top: 3px; letter-spacing: 0.04em; }

@keyframes floatNotif {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}
.btn-primary {
    background: var(--peak); color: white;
    padding: 0.9rem 2.2rem; border-radius: 100px;
    font-size: 0.9rem; font-weight: 500;
    text-decoration: none; border: none; cursor: pointer;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
    letter-spacing: 0.01em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(96,103,255,0.25); }
.btn-secondary {
    background: white; color: var(--peak);
    padding: 0.9rem 2.2rem; border-radius: 100px;
    font-size: 0.9rem; font-weight: 500;
    text-decoration: none; border: 2px solid var(--peak);
    transition: all 0.3s var(--ease);
}
.btn-secondary:hover { background: var(--peak); color: white; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(96,103,255,0.25); }

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

/* ─── STATS STRIP ─── */
.stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    max-width: 1000px; margin: 0 auto;
    padding: 0 2rem 6rem;
    position: relative; z-index: 1;
}
.stat {
    text-align: center;
    padding: 1.5rem;
    border-right: 1px solid var(--ice);
    animation: fadeUp 0.8s var(--ease) calc(0.6s + var(--i) * 0.1s) both;
}
.stat:last-child { border-right: none; }
.stat-num {
    font-family: var(--serif);
    font-size: 2.8rem;
    color: var(--granite);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--mist);
    margin-top: 0.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ─── SECTIONS (shared) ─── */
section { padding: 7rem 2rem; }
.section-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--peak);
    margin-bottom: 1.2rem;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--granite);
    line-height: 1.15;
    max-width: 640px;
    margin: 0;
}
.section-desc {
    color: var(--mist);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 540px;
    margin-top: 1.2rem;
}

/* ─── ABOUT ─── */
.about {
    background: var(--granite);
    color: white;
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
            radial-gradient(ellipse at 20% 50%, rgba(96,103,255,0.08) 0%, transparent 60%),
            radial-gradient(ellipse at 80% 80%, rgba(89,215,254,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.about .section-title { color: white; }
.about .section-desc { color: rgba(255,255,255,0.5); }
.about-grid {
    max-width: 1200px; margin: 4rem auto 0;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.value-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
}
.value-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}
.value-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--peak);
    display: grid; place-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}
.value-card h3 {
    font-family: var(--sans);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}
.value-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.45);
}

/* ─── SERVICES ─── */
.services { max-width: 1200px; margin: 0 auto; }
.services-header { margin-bottom: 4rem; }
.services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: white;
    border: 1px solid var(--ice);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border-color: transparent;
}
.service-num {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--ice);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.4s;
}
.service-card:hover .service-num { color: var(--peak-soft); }
.service-card h3 {
    font-size: 1.1rem; font-weight: 600;
    margin-bottom: 0.75rem; color: var(--granite);
}
.service-card p {
    font-size: 0.9rem; line-height: 1.65; color: var(--mist);
}

/* ─── PRODUCTS ─── */
.products {
    background: linear-gradient(180deg, var(--snow) 0%, white 100%);
}
.products-inner { max-width: 1200px; margin: 0 auto; }
.products-header { margin-bottom: 4rem; }
.products-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.product-card {
    background: white;
    border: 1px solid var(--ice);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.5s var(--ease);
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
    text-decoration: none; color: inherit;
    cursor: pointer;
}
.product-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--card-accent, var(--peak));
    opacity: 0;
    transition: opacity 0.4s;
}
.product-card:hover::before { opacity: 1; }
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.07);
    border-color: transparent;
}
.product-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--card-bg, var(--peak-soft));
    display: grid; place-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem; font-weight: 700;
    color: var(--card-accent, var(--peak));
    font-family: var(--sans);
    letter-spacing: -0.03em;
}
.product-icon-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 5px;
}
.product-card h3 {
    font-size: 1.25rem; font-weight: 600;
    color: var(--granite);
    margin-bottom: 0.5rem;
}
.product-industry {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--card-accent, var(--peak));
    font-weight: 500;
    margin-bottom: 1rem;
}
.product-card p {
    font-size: 0.9rem; line-height: 1.65;
    color: var(--mist); flex: 1;
}
.product-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 1.5rem;
    font-size: 0.85rem; font-weight: 500;
    color: var(--card-accent, var(--peak));
    transition: gap 0.3s var(--ease);
}
.product-card:hover .product-link { gap: 0.7rem; }

.product-featured {
    grid-column: span 2;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0;
}
.product-featured .product-info { padding: 2.5rem; display: flex; flex-direction: column; }
.product-featured .product-visual {
    background: var(--peak-soft);
    border-radius: 0 24px 24px 0;
    display: grid; place-items: center;
    padding: 3rem;
    position: relative; overflow: hidden;
}
.product-featured .product-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(96,103,255,0.05) 0%, rgba(89,215,254,0.05) 100%);
}
.booking-mockup {
    width: 100%; max-width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    padding: 1.5rem;
    position: relative; z-index: 1;
}
.mockup-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.5rem; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-title { font-weight: 600; font-size: 0.85rem; color: var(--granite); }
.mockup-row {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--ice);
}
.mockup-row:last-child { border-bottom: none; }
.mockup-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--ice);
}
.mockup-text { flex: 1; }
.mockup-name { font-size: 0.78rem; font-weight: 500; color: var(--granite); }
.mockup-time { font-size: 0.7rem; color: var(--mist); }
.mockup-status {
    font-size: 0.65rem; padding: 0.25rem 0.6rem;
    border-radius: 100px; font-weight: 500;
    background: #E8F5E9; color: #2E7D32;
}
.mockup-status.pending { background: #FFF3E0; color: #E65100; }

/* ─── CTA SECTION ─── */
.cta-section {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 3rem;
    background: linear-gradient(145deg, #2d2a6e 0%, #3a3775 40%, #44418a 100%);
    border-radius: 32px;
    z-index: 0;
}
.cta-section::after {
    content: '';
    position: absolute; inset: 3rem;
    background:
            radial-gradient(ellipse at 30% 30%, rgba(96,103,255,0.15) 0%, transparent 60%),
            radial-gradient(ellipse at 70% 70%, rgba(89,215,254,0.1) 0%, transparent 60%);
    border-radius: 32px;
    pointer-events: none; z-index: 0;
}
.cta-content { position: relative; z-index: 1; }
.cta-content .section-title { color: white; margin: 0 auto; text-align: center; max-width: 500px; }
.cta-content p {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem; line-height: 1.7;
    max-width: 440px; margin: 1.2rem auto 2.5rem;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white {
    background: white; color: var(--granite);
    padding: 0.9rem 2.2rem; border-radius: 100px;
    font-size: 0.9rem; font-weight: 500;
    text-decoration: none; border: none; cursor: pointer;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,255,255,0.15); }
.btn-ghost {
    background: transparent; color: rgba(255,255,255,0.7);
    padding: 0.9rem 2.2rem; border-radius: 100px;
    font-size: 0.9rem; font-weight: 500;
    text-decoration: none; border: 1.5px solid rgba(255,255,255,0.15);
    transition: all 0.3s var(--ease);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: white; }

/* ─── FOOTER ─── */
footer {
    padding: 4rem 2rem 2rem;
    max-width: 1200px; margin: 0 auto;
}
.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--ice);
}
.footer-brand p {
    font-size: 0.85rem; color: var(--mist);
    line-height: 1.6; margin-top: 0.75rem; max-width: 280px;
}
.footer-sms-link {
    display: inline-block;
    margin-top: 1.2rem;
    position: relative;
    z-index: 1;
}
.footer-sms-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.footer-sms-link:hover .footer-sms-logo { opacity: 1; }
.footer-col h4 {
    font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 0.12em; font-weight: 600;
    color: var(--granite); margin-bottom: 1.2rem;
}
.footer-col a {
    display: block; font-size: 0.85rem; color: var(--mist);
    text-decoration: none; margin-bottom: 0.7rem;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--granite); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 2rem 0;
    font-size: 0.78rem; color: var(--mist);
}
.footer-address { font-style: normal; font-size: 0.78rem; color: var(--mist); }

/* ─── CONTACT SECTION ─── */
.contact-section {
    padding: 7rem 2rem;
    background: white;
}
.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}
.contact-details {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.contact-detail-item h4 {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--granite);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}
.contact-detail-item p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--mist);
}
.contact-detail-item a {
    color: var(--peak);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-detail-item a:hover { color: var(--granite); }

.contact-form-wrap {
    background: var(--snow);
    border: 1px solid var(--ice);
    border-radius: 20px;
    padding: 2.5rem;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.contact-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
.contact-form .form-row .form-group {
    margin-bottom: 0;
}
.contact-form label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--granite);
    margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form textarea {
    font-family: var(--sans);
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    border: 1px solid var(--ice);
    border-radius: 12px;
    background: white;
    color: var(--stone);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--peak);
    box-shadow: 0 0 0 3px rgba(96,103,255,0.08);
}
.contact-form .form-captcha {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}
.contact-form .form-status {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}
.contact-form .form-loading {
    color: var(--mist);
    padding: 0.75rem;
}
.contact-form .form-error {
    color: #D32F2F;
    background: #FFEBEE;
    border: 1px solid #FFCDD2;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
}
.contact-form .form-success {
    color: #2E7D32;
    background: #E8F5E9;
    border: 1px solid #C8E6C9;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .contact-section { padding: 5rem 1rem; }
    .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 1.5rem; border-radius: 16px; }
    .contact-form .form-captcha { overflow-x: auto; justify-content: flex-start; }
}

/* ─── IMPRESSUM / LEGAL PAGES ─── */
.impressum-section {
    padding: 10rem 2rem 6rem;
    max-width: 800px;
    margin: 0 auto;
}
.impressum-card {
    background: white;
    border: 1px solid var(--ice);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
}
.impressum-card h2 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--granite);
    margin-bottom: 1rem;
}
.impressum-card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--granite);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.impressum-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--mist);
}
.impressum-card a {
    color: var(--peak);
    text-decoration: none;
    transition: color 0.3s;
}
.impressum-card a:hover {
    color: var(--granite);
}

/* ─── SCROLL REVEALS ─── */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: all 0.8s var(--ease);
}
.reveal.visible {
    opacity: 1; transform: translateY(0);
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 9999;
    background: white;
    border: 1px solid var(--ice);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 680px;
    width: calc(100% - 3rem);
    opacity: 0;
    transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.cookie-banner.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.cookie-text {
    flex: 1;
}
.cookie-text strong {
    font-size: 0.9rem;
    color: var(--granite);
    display: block;
    margin-bottom: 0.3rem;
}
.cookie-text p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--mist);
    margin: 0;
}
.cookie-text a {
    color: var(--peak);
    text-decoration: none;
}
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}
.cookie-btn-accept {
    background: var(--peak);
    color: white;
    border: none;
    padding: 0.55rem 1.3rem;
    border-radius: 100px;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(96,103,255,0.25);
}
.cookie-btn-decline {
    background: transparent;
    color: var(--mist);
    border: 1px solid var(--ice);
    padding: 0.55rem 1.3rem;
    border-radius: 100px;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.cookie-btn-decline:hover {
    border-color: var(--stone);
    color: var(--stone);
}

@media (max-width: 550px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        bottom: 1rem;
    }
    .cookie-actions { width: 100%; justify-content: center; }
}

/* ─── ERROR PAGE ─── */
.error-section {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    background: var(--snow);
}
.error-content { max-width: 520px; }
.error-code {
    font-size: 8rem; font-weight: 700; line-height: 1;
    background: linear-gradient(135deg, var(--peak), var(--glacier));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.error-content h1 {
    font-size: 2rem; font-weight: 600; color: var(--granite);
    margin-bottom: 0.75rem;
}
.error-content p {
    color: var(--mist); font-size: 1.1rem; line-height: 1.6;
    margin-bottom: 2rem;
}
.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-toggle { display: flex; }
    nav.nav-open {
        bottom: 0; height: 100vh;
        background: rgba(246,247,251,0.97);
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        align-items: flex-start;
    }
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        position: absolute; top: 0; left: 0; right: 0; bottom: 0;
        flex-direction: column; align-items: center; justify-content: center;
        gap: 2rem;
    }
    .nav-links a { font-size: 1.25rem; }
    .nav-links a::after { display: none; }
    .nav-cta { font-size: 1rem !important; padding: 0.8rem 2rem; }
    .hero { grid-template-columns: 1fr; text-align: center; padding: 7rem 1.5rem 3rem; gap: 3rem; }
    .hero-text { display: flex; flex-direction: column; align-items: center; }
    .hero-text > p { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-mockup-wrapper { max-width: 360px; }
    .mock-notif { right: -10px; top: -12px; }
    .mock-stat-pill { left: -10px; bottom: 20px; }
    .about-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card { padding: 1.5rem; }
    .product-featured { grid-column: span 1; grid-template-columns: 1fr; }
    .product-featured .product-info { padding: 1.5rem; }
    .product-featured .product-visual { border-radius: 0 0 24px 24px; padding: 1.5rem; }
    .booking-mockup { padding: 1.25rem; }
    .mockup-avatar { width: 26px; height: 26px; }
    .mockup-row { gap: 0.5rem; padding: 0.6rem 0; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat { border-right: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .cta-section::before, .cta-section::after { inset: 1rem; border-radius: 20px; }
    .hero { padding: 7rem 1.5rem 4rem; }
}

@media (max-width: 550px) {
    .stats { grid-template-columns: 1fr 1fr; gap: 0; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}