:root {
    --bg: #0a0a0c;
    --surface: #141418;
    --surface-2: #1c1c22;
    --border: #2a2a31;
    --border-hover: #3d3d47;
    --blue: #1b5a97;
    --blue-light: #2572c0;
    --blue-deep: #0f3d6e;
    --blue-glow: rgba(37, 114, 192, 0.35);
    --orange: #f38b20;
    --orange-dim: rgba(243, 139, 32, 0.12);
    --text: #f0f0f2;
    --text-dim: #7a7a82;
    --text-mid: #b0b0b8;
    --radius-lg: 20px;
    --radius-md: 14px;
    --google-yellow: #fbbc05;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

html { scroll-behavior: smooth; }

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.15s ease;
}
.skip-link:focus {
    top: 0;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(ellipse 55% 42% at 75% 5%, rgba(37, 114, 192, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 32% at 5% 90%, rgba(243, 139, 32, 0.07) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M0 0h1v1H0zM20 20h1v1h-1z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Animated gradient orbs */
body::after {
    content: '';
    position: fixed;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(27, 90, 151, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, 80px) scale(1.1); }
    66% { transform: translate(30px, -40px) scale(0.95); }
}

/* Scroll-triggered animation base */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.animate-from-left {
    transform: translateX(-40px);
}
.animate-on-scroll.animate-from-left.animate-visible {
    transform: translateX(0);
}

.animate-on-scroll.animate-from-right {
    transform: translateX(40px);
}
.animate-on-scroll.animate-from-right.animate-visible {
    transform: translateX(0);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.9);
}
.animate-on-scroll.animate-scale.animate-visible {
    transform: scale(1);
}

/* Stagger delays for grid items */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }
.stagger-7 { transition-delay: 0.35s; }
.stagger-8 { transition-delay: 0.4s; }

.bento-grid {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(160px, auto);
    gap: 16px;
}

.tile {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(37, 114, 192, 0.08),
        0 4px 20px rgba(37, 114, 192, 0.12),
        0 16px 48px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s var(--transition-smooth), transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
    animation: fadeUp 0.55s var(--transition-smooth) both;
}

.tile::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(37, 114, 192, 0.2) 50%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
    pointer-events: none;
}

.tile:hover::before {
    opacity: 1;
}

.tile:hover {
    border-color: var(--blue-light);
    transform: translateY(-3px);
    box-shadow:
        0 0 0 1px rgba(37, 114, 192, 0.25),
        0 8px 32px rgba(37, 114, 192, 0.3),
        0 24px 60px rgba(0, 0, 0, 0.5);
}

/* Magnetic hover effect for tiles */
.tile {
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.tile:hover {
    background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y),
        rgba(37, 114, 192, 0.06),
        transparent 40%
    ), var(--surface);
}

.tile:nth-child(1)  { animation-delay: 0.05s; }
.tile:nth-child(2)  { animation-delay: 0.1s; }
.tile:nth-child(3)  { animation-delay: 0.15s; }
.tile:nth-child(4)  { animation-delay: 0.2s; }
.tile:nth-child(5)  { animation-delay: 0.25s; }
.tile:nth-child(6)  { animation-delay: 0.3s; }
.tile:nth-child(7)  { animation-delay: 0.35s; }
.tile:nth-child(8)  { animation-delay: 0.4s; }
.tile:nth-child(9)  { animation-delay: 0.45s; }
.tile:nth-child(10) { animation-delay: 0.5s; }

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

/* Hero */
.hero-tile {
    grid-column: span 3;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    background-image: linear-gradient(to top, rgba(10,10,12,0.97) 0%, rgba(10,10,12,0.75) 50%, rgba(10,10,12,0.4) 100%), url('images/bild1.webp');
    background-size: cover;
    background-position: center;
    border-color: rgba(37, 114, 192, 0.5);
    min-height: 460px;
    animation: heroIn 0.8s var(--transition-smooth) both;
}

.hero-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 0% 100%, rgba(27,90,151,0.15) 0%, transparent 60%);
    pointer-events: none;
    opacity: 1;
}

/* Hero parallax overlay */
.hero-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 50% 50%, transparent 0%, rgba(10, 10, 12, 0.3) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s var(--transition-smooth);
}

.hero-tile:hover::after {
    opacity: 1;
}

@keyframes heroIn {
    from { opacity: 0; transform: scale(0.98); }
    to   { opacity: 1; transform: scale(1); }
}

.logo-wrapper {
    position: absolute;
    top: 32px;
    left: 40px;
    z-index: 2;
}

.logo-wrapper img {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.8));
    transition: transform 0.3s var(--transition-smooth);
}

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

.logo-fallback { display: none; align-items: center; gap: 10px; }
.logo-img.error { display: none; }
.logo-img.error + .logo-fallback { display: flex; }

.logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 800; font-size: 1.1rem; color: white; letter-spacing: -1px;
}

.logo-name {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 800; font-size: 1.05rem; color: var(--text); letter-spacing: -0.5px;
}

.hero-label {
    font-family: 'Archivo', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-label::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--orange); border-radius: 2px;
}

/* SEO H1 */
.seo-h1 {
    font-family: 'Archivo', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin: 0 0 16px 0;
    line-height: 1.3;
    max-width: 560px;
}

/* Hero Display */
.hero-display {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 0.95;
    margin: 0 0 8px 0;
    color: var(--text);
    position: relative;
    text-transform: uppercase;
}

.hero-display .outline {
    -webkit-text-stroke: 2px var(--text);
    color: transparent;
    display: inline-block;
}

.hero-display .accent-italic {
    color: var(--orange);
    font-style: italic;
    display: inline-block;
}

.rolling-wrap {
    display: inline-block;
    height: 0.95em;
    overflow: hidden;
    vertical-align: bottom;
}

.rolling-list {
    margin: 0; padding: 0; list-style: none;
    animation: roll 12s var(--transition-smooth) infinite;
}

.rolling-list li {
    line-height: 0.95em;
    color: var(--orange);
    font-style: italic;
    white-space: nowrap;
}

@keyframes roll {
    0%,  14% { transform: translateY(0); }
    20%, 34% { transform: translateY(-0.95em); }
    40%, 54% { transform: translateY(-1.90em); }
    60%, 74% { transform: translateY(-2.85em); }
    80%, 94% { transform: translateY(-3.80em); }
    100%     { transform: translateY(-4.75em); }
}

.hero-sub {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.6;
    margin: 16px 0 28px;
    max-width: 520px;
    position: relative;
}

.hero-sub strong { color: var(--text); font-weight: 500; }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }

.btn {
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s var(--transition-smooth);
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Button ripple effect */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.4s, transform 0.4s var(--transition-smooth);
    pointer-events: none;
}

.btn:active::after {
    opacity: 1;
    transform: scale(2);
    transition: opacity 0s, transform 0s;
}

.btn-blue { background: var(--blue); color: white; border-color: var(--blue-light); }
.btn-blue:hover { background: var(--blue-light); box-shadow: 0 4px 20px rgba(27,90,151,0.45); transform: translateY(-1px); }

.btn-outline {
    background: rgba(255,255,255,0.06);
    color: var(--text);
    border-color: var(--border-hover);
    backdrop-filter: blur(10px);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }

/* Booking */
.tile-booking {
    background: linear-gradient(135deg, #c97418 0%, #e8801a 50%, #f38b20 100%);
    border-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tile-booking::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--transition-smooth);
    pointer-events: none;
}

.tile-booking:hover::before {
    transform: translateX(100%);
}

.tile-booking:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(243,139,32,0.3); }

.tile-booking h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: white;
    margin: 0 0 8px;
}

.tile-booking p { color: rgba(255,255,255,0.85); margin: 0 0 20px; font-size: 0.9rem; }

.btn-white {
    background: white; color: var(--orange);
    border-radius: 12px; padding: 12px 20px;
    font-weight: 700; text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.25s var(--transition-smooth); font-size: 0.95rem;
}
.btn-white:hover { transform: scale(1.03); box-shadow: 0 4px 16px rgba(0,0,0,0.25); }

/* Service tiles */
.tile-label {
    display: flex; align-items: center; gap: 8px;
    font-family: 'Archivo', sans-serif;
    font-size: 0.68rem; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--blue-light); margin-bottom: 12px;
}
.tile-label::before { content: ''; width: 14px; height: 2px; background: var(--blue-light); border-radius: 2px; }

.tile h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.2rem; font-weight: 700;
    letter-spacing: -0.5px; color: var(--text);
    margin: 0 0 10px;
}

.tile p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.65; margin: 0; }

.step-num {
    font-family: 'Archivo', sans-serif;
    font-size: 4.5rem; font-weight: 700;
    color: rgba(255,255,255,0.04);
    position: absolute; bottom: 8px; right: 16px;
    line-height: 1; pointer-events: none; user-select: none;
    letter-spacing: -0.05em;
    transition: color 0.3s var(--transition-smooth);
}

.tile:hover .step-num {
    color: rgba(243, 139, 32, 0.08);
}

.tile-fullservice { grid-column: span 2; background: var(--surface); border-color: rgba(37, 114, 192, 0.3); }
.tile-fullservice::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 80% at 100% 0%, var(--blue-glow), transparent 60%);
    pointer-events: none;
}

/* SEO Content Tile */
.tile-seo {
    grid-column: span 4;
    background: var(--surface);
    padding: 40px;
}

.tile-seo h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text);
    margin: 0 0 20px;
}

.tile-seo .seo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 8px;
}

.tile-seo p, .tile-seo li {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.75;
}
.tile-seo a {
    color: var(--text);
    text-decoration-color: rgba(243, 139, 32, 0.55);
    text-underline-offset: 3px;
}
.tile-seo a:hover { color: var(--orange); }

.tile-seo h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: var(--text);
}

.tile-seo ul {
    margin: 0; padding-left: 20px;
}

.tile-seo strong { color: var(--text); font-weight: 500; }

@media (max-width: 720px) {
    .tile-seo .seo-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Google */
.tile-google {
    grid-column: span 2;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; gap: 8px;
}

.google-logo {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 800; font-size: 1.1rem;
    letter-spacing: -0.5px; margin-bottom: 4px;
}
.google-logo span:nth-child(1) { color: #4285F4; }
.google-logo span:nth-child(2) { color: #EA4335; }
.google-logo span:nth-child(3) { color: #FBBC05; }
.google-logo span:nth-child(4) { color: #4285F4; }
.google-logo span:nth-child(5) { color: #34A853; }
.google-logo span:nth-child(6) { color: #EA4335; }

.stars { color: var(--google-yellow); font-size: 1.6rem; letter-spacing: 3px; }
.google-sub { color: var(--text-mid); font-size: 0.85rem; margin: 4px 0 16px; }

.btn-ghost {
    background: var(--surface-2); color: var(--text-mid);
    border: 1px solid var(--border-hover); border-radius: 10px;
    padding: 10px 20px; font-size: 0.85rem; font-weight: 500;
    text-decoration: none; transition: all 0.25s var(--transition-smooth);
}
.btn-ghost:hover { color: var(--text); border-color: var(--blue-light); background: rgba(37, 114, 192, 0.1); }

/* FAQ */
.tile-faq { grid-column: span 4; }

.faq-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.4rem; font-weight: 800;
    letter-spacing: -0.75px; color: var(--text);
    margin: 0 0 24px;
}

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

.faq-question {
    width: 100%; background: none; border: none;
    color: var(--text-mid); padding: 18px 0;
    font-size: 1rem; font-weight: 500;
    font-family: 'Archivo', sans-serif;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    text-align: left; transition: color 0.2s var(--transition-smooth);
}
.faq-question:hover { color: var(--text); }

.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-hover);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1rem;
    color: var(--text-dim);
    background: transparent;
    transition: all 0.25s var(--transition-smooth);
}

.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s var(--transition-smooth), padding 0.35s var(--transition-smooth);
    color: var(--text-dim); font-size: 0.925rem; line-height: 1.7;
}

.faq-item.active .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-item.active .faq-question { color: var(--text); }
.faq-item.active .faq-icon { background: var(--blue); border-color: var(--blue); color: white; transform: rotate(90deg); }

/* Cities */
.tile-cities { grid-column: span 2; }
.city-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

.city-tag {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--surface-2); border: 1px solid var(--border);
    border-radius: 8px; padding: 6px 12px;
    font-size: 0.82rem; color: var(--text-mid);
    transition: all 0.2s var(--transition-smooth);
    text-decoration: none;
    cursor: pointer;
}
.city-tag:hover { border-color: var(--blue-light); color: var(--text); background: rgba(37, 114, 192, 0.1); transform: translateY(-1px); }

/* Contact */
.tile-contact {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--surface) 60%, #172838 100%);
    border-color: rgba(37, 114, 192, 0.35);
}

.contact-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.6rem; font-weight: 800;
    letter-spacing: -1px; color: var(--text);
    text-decoration: none; display: inline-block;
    margin: 10px 0 6px; transition: color 0.2s var(--transition-smooth);
}
.contact-number:hover { color: var(--blue-light); }

/* Footer */
.site-footer {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 32px auto 0;
    padding: 20px 0; border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: var(--text-dim); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
    font-size: 0.8rem; color: var(--text-dim);
    text-decoration: none; transition: color 0.2s var(--transition-smooth); cursor: pointer;
}
.footer-links a:hover { color: var(--text-mid); }

/* Responsive */
@media (max-width: 900px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-tile { grid-column: span 2; }
    .tile-faq { grid-column: span 2; }
    .tile-fullservice { grid-column: span 2; }
    .tile-google { grid-column: span 2; }
    .tile-seo { grid-column: span 2; }
}

@media (max-width: 600px) {
    body { padding: 12px; }
    .bento-grid { grid-template-columns: 1fr; gap: 12px; }
    .tile { grid-column: span 1 !important; padding: 24px; }
    .hero-tile { min-height: 500px; }
    .logo-wrapper img { height: 80px; }
    .hero-display { font-size: 2rem; letter-spacing: -1.5px; }
    .btn-group { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .site-footer { flex-direction: column; align-items: flex-start; }
    .tile-seo { padding: 24px; }
}

/* WhatsApp Floating Button */
.wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 9999;
    display: flex; align-items: center; gap: 12px;
    background: #25D366; color: white;
    border-radius: 50px; padding: 14px 22px 14px 18px;
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-weight: 700; font-size: 0.9rem;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
    transition: all 0.3s var(--transition-smooth);
    animation: waPulse 2.5s infinite ease-in-out;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6); }
.wa-float svg { width: 24px; height: 24px; flex-shrink: 0; }
.wa-label { white-space: nowrap; }

@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45); }
    50%      { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7); }
}

@media (max-width: 600px) {
    .wa-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
    .wa-label { display: none; }
}

/* Marquee */
.marquee-wrap {
    grid-column: 1 / -1;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0; position: relative;
    display: flex; align-items: center;
    min-height: 80px;
}

.marquee-wrap::before, .marquee-wrap::after {
    content: ''; position: absolute;
    top: 0; bottom: 0; width: 80px; z-index: 2;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--surface), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--surface), transparent); }

.marquee-track {
    display: flex; align-items: center; gap: 28px;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: 'Archivo', sans-serif;
    font-size: 1.25rem; font-weight: 400;
    color: var(--text-dim); letter-spacing: 0.04em;
}
.marquee-track .dot { color: var(--border-hover); font-size: 0.85rem; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* TOP MARQUEE */
.top-marquee {
    background: linear-gradient(90deg, var(--orange) 0%, #d97515 50%, var(--orange) 100%);
    color: var(--bg);
    padding: 10px 0;
    overflow: hidden; position: relative;
    margin: -20px -20px 24px -20px;
}
@media (max-width: 720px) {
    .top-marquee { margin: -12px -12px 16px -12px; }
}

.top-marquee-track {
    display: flex; gap: 36px;
    width: max-content;
    animation: topMarquee 45s linear infinite;
}
.top-marquee:hover .top-marquee-track { animation-play-state: paused; }

.top-marquee-item {
    font-family: 'Archivo', sans-serif;
    font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.03em; white-space: nowrap;
    color: var(--bg);
    display: inline-flex; align-items: center; gap: 8px;
}
.top-marquee-item .sep { color: rgba(10,10,12,0.5); font-size: 0.75rem; }

@keyframes topMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Service tile illustrations */
.tile.has-illu { overflow: hidden; position: relative; }

.tile-illu {
    position: absolute; bottom: -15px; right: -15px;
    width: 150px; height: 150px;
    opacity: 0.2;
    transition: all 0.4s var(--transition-bounce);
    pointer-events: none; z-index: 0;
}

.tile-illu svg { width: 100%; height: 100%; display: block; }

.tile-illu svg path,
.tile-illu svg circle,
.tile-illu svg rect,
.tile-illu svg line,
.tile-illu svg polyline,
.tile-illu svg polygon {
    stroke: var(--orange); fill: none;
    stroke-width: 1.8;
    stroke-linecap: round; stroke-linejoin: round;
}

.tile.has-illu:hover .tile-illu {
    opacity: 0.5;
    transform: translate(-8px, -8px) rotate(-4deg) scale(1.06);
}

.tile.has-illu > *:not(.tile-illu) { position: relative; z-index: 1; }

.tile-fullservice.has-illu .tile-illu { opacity: 0.25; }
.tile-fullservice.has-illu:hover .tile-illu { opacity: 0.5; }
.tile-fullservice.has-illu .tile-illu svg path,
.tile-fullservice.has-illu .tile-illu svg circle,
.tile-fullservice.has-illu .tile-illu svg rect,
.tile-fullservice.has-illu .tile-illu svg line { stroke: #fff; }

@media (max-width: 720px) {
    .tile-illu { width: 110px; height: 110px; }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 560px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid rgba(37, 114, 192, 0.4);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow:
        0 0 0 1px rgba(37, 114, 192, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.6);
    z-index: 10000;
    transform: translateY(calc(100% + 40px));
    opacity: 0;
    transition: transform 0.5s var(--transition-bounce), opacity 0.4s var(--transition-smooth);
    backdrop-filter: blur(20px);
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-banner p {
    color: var(--text-mid);
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0 0 16px;
}

.cookie-banner p a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 11px 18px;
    border-radius: 10px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s var(--transition-smooth);
    text-align: center;
}

.cookie-btn-accept {
    background: var(--blue);
    color: white;
    border-color: var(--blue-light);
}
.cookie-btn-accept:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-mid);
    border-color: var(--border-hover);
}
.cookie-btn-decline:hover {
    color: var(--text);
    border-color: var(--blue-light);
    background: rgba(37, 114, 192, 0.1);
}

@media (max-width: 600px) {
    .cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 20px;
    }
    .cookie-actions { flex-direction: column; }
    .cookie-btn { width: 100%; }
}

/* Cookie settings button */
.cookie-reopen {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9998;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border-hover);
    color: var(--text-mid);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: all 0.25s var(--transition-smooth);
}
.cookie-reopen.visible { display: flex; }
.cookie-reopen:hover { color: var(--text); border-color: var(--blue-light); box-shadow: 0 4px 20px rgba(37, 114, 192, 0.3); }

@media (max-width: 600px) {
    .cookie-reopen { bottom: 20px; left: 20px; width: 38px; height: 38px; }
}

/* Price Signals */
.price-signals {
    margin: 28px 0 32px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(243, 139, 32, 0.08) 0%, rgba(27, 90, 151, 0.06) 100%);
    border: 1px solid rgba(243, 139, 32, 0.25);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.price-signals::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(243, 139, 32, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Animated shimmer on price signals */
.price-signals::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

.price-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 14px;
    margin-bottom: 20px;
    position: relative;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--orange);
    color: var(--bg);
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-headline {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--orange);
    letter-spacing: -1px;
    line-height: 1;
}

.price-sub {
    color: var(--text-mid);
    font-size: 0.92rem;
    font-weight: 500;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
    position: relative;
}

.price-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
    transition: border-color 0.25s var(--transition-smooth), transform 0.25s var(--transition-smooth);
}

.price-card:hover {
    border-color: rgba(243, 139, 32, 0.5);
    transform: translateY(-2px);
}

.price-card--mid {
    border-color: rgba(243, 139, 32, 0.4);
    background: linear-gradient(180deg, rgba(243, 139, 32, 0.06) 0%, var(--surface-2) 100%);
    position: relative;
}

.price-card--mid::after {
    content: 'Beliebt';
    position: absolute;
    top: -9px;
    right: 14px;
    background: var(--orange);
    color: var(--bg);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-type {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.price-range {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.4rem;
    color: var(--text);
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.price-note {
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.price-disclaimer {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.55;
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    position: relative;
}

.price-disclaimer strong { color: var(--text); }

@media (max-width: 720px) {
    .price-signals { padding: 22px 18px; }
    .price-grid { grid-template-columns: 1fr; }
    .price-intro { gap: 8px; }
}

/* Helper classes */
.hero-content {
    position: relative;
}

.hero-connector {
    color: var(--text-dim);
    font-style: italic;
}

.seo-closing {
    margin-top: 24px;
}

.google-rezensionen-label {
    color: var(--text-mid);
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 6px;
}

.tile-label-on-dark {
    color: #ffffff !important;
}
.tile-label-on-dark::before {
    background: rgba(255,255,255,0.6) !important;
}

.seo-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(100%);
    white-space: nowrap;
    border: 0;
}

.contact-person {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin: 4px 0 0;
}

.contact-hours {
    color: var(--text-mid);
    font-size: 0.9rem;
    margin: 14px 0 0;
    font-weight: 500;
}

.contact-emergency {
    color: var(--orange);
    font-size: 0.85rem;
    margin: 6px 0 0;
    font-weight: 600;
}

/* Bottom CTA Tile */
.tile-cta-bottom {
    grid-column: span 4;
    background: linear-gradient(135deg, #1b5a97 0%, #2572c0 50%, #1b5a97 100%);
    border-color: transparent;
    position: relative;
    overflow: hidden;
}

.tile-cta-bottom::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 100% 0%, rgba(243, 139, 32, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 0% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated gradient shift on CTA */
.tile-cta-bottom::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: ctaShimmer 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaShimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-title {
    font-family: 'Archivo Black', 'Archivo', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    letter-spacing: -1px;
    color: #ffffff;
    margin: 4px 0 8px;
    line-height: 1.15;
}

.cta-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0;
    max-width: 540px;
}

.cta-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-white-solid {
    background: #ffffff;
    color: #1b5a97;
    border-color: #ffffff;
}
.btn-white-solid:hover {
    background: #f5f7fa;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
    .tile-cta-bottom { grid-column: span 2; }
    .cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .cta-buttons { width: 100%; }
    .cta-buttons .btn { flex: 1; justify-content: center; }
}

@media (max-width: 600px) {
    .tile-cta-bottom { grid-column: span 1; }
    .cta-buttons .btn { width: 100%; flex: none; }
}

/* Instagram Feed */
.tile-instagram {
    grid-column: span 2;
}

.tile-instagram h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.insta-sub {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.insta-clip {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 10px;
}

.insta-clip .sk-instagram-feed {
    width: 100%;
}

@media (max-width: 900px) {
    .tile-instagram { grid-column: span 2; }
    .insta-clip { height: 140px; }
}
@media (max-width: 600px) {
    .tile-instagram { grid-column: span 1; }
    .insta-clip { height: 120px; }
}

/* Calculator Toggle + Embedded Calculator */
.calc-toggle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 15px 24px;
    background: linear-gradient(135deg, var(--orange) 0%, #d97515 100%);
    color: #0c0c0d;
    border: none;
    border-radius: 100px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(243,139,32,0.3);
    transition: all 0.25s var(--transition-smooth);
}
.calc-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(243,139,32,0.4);
}
.calc-toggle-arrow {
    margin-left: auto;
    font-size: 0.8rem;
    transition: transform 0.3s var(--transition-smooth);
}

.calc-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--transition-smooth);
    margin-top: 0;
}
.calc-wrapper.calc-open {
    max-height: 2400px;
    margin-top: 20px;
}

/* Calculator Internal */
.cr-wrap {
    background: #0f1829;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 32px 28px;
    color: #f0f4ff;
    font-family: 'Archivo', sans-serif;
}

.cr-progress {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    gap: 0;
}
.cr-step { display: flex; align-items: center; flex-shrink: 0; }
.cr-dot {
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700;
    border: 2px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.05);
    transition: all 0.3s var(--transition-smooth);
    flex-shrink: 0;
}
.cr-dot.cr-done { background: var(--orange); border-color: var(--orange); color: #0c0c0d; }
.cr-dot.cr-active { border-color: var(--orange); color: var(--orange); background: rgba(243,139,32,0.12); }
.cr-step-label {
    font-size: 10px; color: rgba(255,255,255,0.3);
    margin-left: 6px; font-weight: 500; white-space: nowrap;
}
.cr-step-label.cr-active { color: var(--orange); }
.cr-connector { flex: 1; height: 2px; background: rgba(255,255,255,0.1); margin: 0 6px; min-width: 12px; }
.cr-connector.cr-done { background: var(--orange); }

.cr-section { animation: crFadeIn 0.3s var(--transition-smooth); }
@keyframes crFadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.cr-title { font-family: 'Archivo Black', sans-serif; font-size: 1.3rem; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 20px; color: #fff; }

.cr-grid { display: grid; gap: 10px; margin-bottom: 4px; }
.cr-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cr-grid-2 { grid-template-columns: repeat(2, 1fr); }

.cr-card, .cr-size-card {
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 16px 12px;
    cursor: pointer; transition: all 0.2s var(--transition-smooth);
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 6px; position: relative; overflow: hidden;
}
.cr-card:hover, .cr-size-card:hover { border-color: rgba(243,139,32,0.4); background: rgba(243,139,32,0.06); }
.cr-card.cr-selected, .cr-size-card.cr-selected { border-color: var(--orange); background: rgba(243,139,32,0.1); }
.cr-card.cr-selected::after, .cr-size-card.cr-selected::after {
    content: '✓'; position: absolute; top:7px; right:9px;
    width:18px; height:18px; background: var(--orange); border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:10px; color:#0c0c0d; font-weight:700;
}
.cr-card-icon { font-size: 28px; }
.cr-card-title { font-size: 13px; font-weight: 700; color: #fff; }
.cr-card-sub { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.3; }
.cr-size-title { font-size: 15px; font-weight: 700; color: #fff; }
.cr-size-desc { font-size: 12px; color: rgba(255,255,255,0.4); }
.cr-size-price { font-size: 13px; color: var(--orange); font-weight: 600; margin-top: 4px; }

.cr-list { display: flex; flex-direction: column; gap: 8px; }
.cr-fill-card, .cr-extra-card {
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 14px 16px;
    cursor: pointer; transition: all 0.2s var(--transition-smooth);
    display: flex; align-items: center; gap: 14px;
}
.cr-fill-card:hover, .cr-extra-card:hover { border-color: rgba(243,139,32,0.4); background: rgba(243,139,32,0.06); }
.cr-fill-card.cr-selected, .cr-extra-card.cr-selected { border-color: var(--orange); background: rgba(243,139,32,0.1); }

.cr-dots { display: flex; gap: 3px; flex-shrink: 0; }
.cr-dot-pip { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.cr-dot-pip.cr-pip-on, .cr-dot-pip.cr-pip- { background: var(--orange); }
.cr-dot-pip.cr-pip-up { background: #f97316; }
.cr-dot-pip.cr-pip-down { background: #22c55e; }
.cr-dot-pip.cr-pip-warn { background: #ef4444; }

.cr-fill-info, .cr-extra-info { flex: 1; }
.cr-fill-title, .cr-extra-title { font-size: 14px; font-weight: 600; color: #fff; display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.cr-fill-desc, .cr-extra-desc { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.cr-messie { font-size:10px; background:rgba(239,68,68,0.15); border:1px solid rgba(239,68,68,0.3); border-radius:4px; padding:2px 7px; color:#f87171; }
.cr-fill-mult { font-size:12px; font-weight:700; white-space:nowrap; color:rgba(255,255,255,0.4); }
.cr-fill-mult.cr-up { color:#f97316; }
.cr-fill-mult.cr-down { color:#22c55e; }
.cr-fill-mult.cr-warn { color:#ef4444; }
.cr-check, .cr-checkbox {
    width:20px; height:20px; border-radius:50%; border:2px solid rgba(255,255,255,0.15);
    flex-shrink:0; transition:all 0.2s var(--transition-smooth); display:flex; align-items:center; justify-content:center;
}
.cr-checkbox { border-radius: 5px; }
.cr-fill-card.cr-selected .cr-check,
.cr-extra-card.cr-selected .cr-checkbox { background:var(--orange); border-color:var(--orange); }
.cr-fill-card.cr-selected .cr-check::after,
.cr-extra-card.cr-selected .cr-checkbox::after { content:'✓'; font-size:10px; color:#0c0c0d; font-weight:700; }

.cr-extra-icon { font-size:24px; flex-shrink:0; }
.cr-extra-price { font-size:13px; font-weight:700; white-space:nowrap; }
.c-green { color:#22c55e; }
.c-orange { color:#f97316; }

.cr-wert-note {
    margin-top:14px; padding:12px 16px;
    background:rgba(34,197,94,0.08); border:1px solid rgba(34,197,94,0.2); border-radius:10px;
    font-size:12px; color:#4ade80; line-height:1.5;
}

.cr-nav { display:flex; gap:10px; margin-top:24px; }
.cr-btn-pri {
    flex:1; padding:13px 22px; background:var(--orange); color:#0c0c0d;
    border:none; border-radius:10px; font-family:'Archivo Black',sans-serif;
    font-size:0.95rem; text-transform:uppercase; cursor:pointer; transition:all 0.2s var(--transition-smooth);
}
.cr-btn-pri:hover:not(:disabled) { background:#ff9a2e; transform:translateY(-1px); }
.cr-btn-pri:disabled { opacity:0.35; cursor:not-allowed; }
.cr-btn-sec {
    padding:13px 20px; background:rgba(255,255,255,0.05);
    color:rgba(255,255,255,0.6); border:1px solid rgba(255,255,255,0.1);
    border-radius:10px; font-size:0.9rem; cursor:pointer; transition:all 0.2s var(--transition-smooth);
}
.cr-btn-sec:hover { background:rgba(255,255,255,0.1); color:#fff; }

.cr-chips { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:20px; }
.cr-chip {
    background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1);
    border-radius:20px; padding:4px 12px; font-size:12px; color:rgba(255,255,255,0.6);
}
.cr-result { background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.1); border-radius:16px; overflow:hidden; }
.cr-result-head { background:linear-gradient(135deg,rgba(243,139,32,0.15),rgba(243,139,32,0.05)); padding:24px 26px; border-bottom:1px solid rgba(255,255,255,0.08); }
.cr-result-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--orange); margin-bottom:8px; }
.cr-result-price { font-family:'Archivo Black',sans-serif; font-size:2.8rem; line-height:1; color:#fff; }
.cr-result-price span { font-size:1.4rem; color:rgba(255,255,255,0.4); font-family:'Archivo',sans-serif; font-weight:400; }
.cr-result-hint { font-size:12px; color:rgba(255,255,255,0.4); margin-top:6px; }
.cr-result-body { padding:22px 26px; }
.cr-breakdown-title { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:rgba(255,255,255,0.3); margin-bottom:12px; }
.cr-row { display:flex; justify-content:space-between; align-items:center; padding:9px 0; border-bottom:1px solid rgba(255,255,255,0.06); font-size:13px; }
.cr-row span { color:rgba(255,255,255,0.5); }
.cr-row strong { color:#fff; }
.cr-total-row { display:flex; justify-content:space-between; align-items:center; padding:14px 0 0; border-top:2px solid rgba(255,255,255,0.1); margin-top:6px; font-size:14px; }
.cr-total-row span { font-weight:700; color:#fff; }
.cr-total-row strong { font-family:'Archivo Black',sans-serif; font-size:1.6rem; color:var(--orange); }
.cr-result-cta { padding:20px 26px; border-top:1px solid rgba(255,255,255,0.08); display:flex; gap:10px; flex-wrap:wrap; }
.cr-cta-btn { flex:1; min-width:140px; padding:13px 18px; border-radius:10px; font-size:14px; font-weight:700; cursor:pointer; border:none; text-align:center; text-decoration:none; display:flex; align-items:center; justify-content:center; gap:7px; transition:all 0.2s var(--transition-smooth); }
.cr-cta-primary { background:var(--orange); color:#0c0c0d; }
.cr-cta-primary:hover { background:#ff9a2e; transform:translateY(-1px); }
.cr-cta-wa { background:#25d366; color:#fff; }
.cr-cta-wa:hover { background:#1ebe5b; transform:translateY(-1px); }
.cr-restart { background:none; border:none; color:rgba(255,255,255,0.3); font-size:13px; cursor:pointer; margin-top:16px; transition:color 0.2s var(--transition-smooth); }
.cr-restart:hover { color:rgba(255,255,255,0.6); }

@media (max-width: 700px) {
    .cr-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .cr-wrap { padding: 22px 16px; }
    .cr-step-label { display: none; }
    .cr-result-price { font-size: 2rem; }
}
@media (max-width: 440px) {
    .cr-grid-4, .cr-grid-2 { grid-template-columns: 1fr; }
}

/* Loading skeleton animation */
@keyframes skeletonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.skeleton {
    background: linear-gradient(90deg, var(--surface-2) 25%, var(--surface) 50%, var(--surface-2) 75%);
    background-size: 200% 100%;
    animation: skeletonPulse 1.5s ease-in-out infinite;
    border-radius: 8px;
}

/* ═══ STICKY HEADER / NAVIGATION ═══ */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 24px;
    background: rgba(10, 10, 12, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(37, 114, 192, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.35s var(--transition-smooth), opacity 0.35s var(--transition-smooth);
    pointer-events: none;
}
.sticky-header.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.sticky-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.sticky-logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}
.sticky-logo-text {
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.3px;
    white-space: nowrap;
}
.sticky-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.sticky-nav-link {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.2s var(--transition-smooth);
    white-space: nowrap;
}
.sticky-nav-link:hover {
    color: var(--text);
    background: rgba(37, 114, 192, 0.12);
}
.sticky-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.sticky-cta {
    padding: 8px 16px;
    font-size: 0.78rem;
    border-radius: 10px;
    white-space: nowrap;
}
@media (max-width: 900px) {
    .sticky-nav { display: none; }
    .sticky-header { padding: 10px 16px; }
}
@media (max-width: 600px) {
    .sticky-cta { font-size: 0.72rem; padding: 7px 12px; }
    .sticky-logo-text { font-size: 0.76rem; }
}

/* Google Maps Wrapper */
.map-wrapper {
    margin-top: 18px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: 0;
}
@media (max-width: 600px) {
    .map-wrapper iframe { height: 200px; }
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
