/*
 * SkupDom.pl - Nowoczesny, minimalistyczny design
 * Premium look & feel z efektami glassmorphism
 */

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

:root {
    /* Główne kolory */
    --black: #0a0a0a;
    --white: #ffffff;
    --accent: #2563eb;
    --accent-light: #3b82f6;
    --accent-dark: #1d4ed8;

    /* Szarości */
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;

    /* Fonty */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Cienie nowoczesne */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);

    /* Przejścia */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container-width: 1280px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-900);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ===== UTILITIES ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section--gray {
    background-color: var(--gray-50);
}

.section--black {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
    color: var(--white);
}

.section--gradient {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1e3a5f 50%, var(--gray-900) 100%);
    color: var(--white);
}

.text-center { text-align: center; }
.text-white { color: var(--white); }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

.lead {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section--black .section-title::after,
.section--gradient .section-title::after {
    background: linear-gradient(90deg, var(--white) 0%, var(--gray-300) 100%);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-800) 100%);
    color: var(--white);
    border-color: var(--black);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn--outline {
    background-color: transparent;
    color: var(--black);
    border-color: var(--gray-300);
}

.btn--outline:hover {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn--white {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
    box-shadow: var(--shadow-lg);
}

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

.btn--accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn--accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 1.0625rem;
}

.btn--full {
    width: 100%;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.btn:hover svg {
    transform: scale(1.1);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.header__logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.header__logo:hover {
    opacity: 0.8;
}

.header__logo img {
    height: 38px;
    width: auto;
}

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

.header__menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header__menu-item {
    position: relative;
}

.header__menu-link {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--gray-700);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.header__menu-link:hover,
.header__menu-link.active {
    color: var(--black);
    background-color: var(--gray-100);
}

/* Dropdown menu - nowoczesny styl */
.header__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-100);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 0.5rem;
}

.header__dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid var(--gray-100);
    border-top: 1px solid var(--gray-100);
}

.header__menu-item:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.header__dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.header__dropdown-link:hover {
    background-color: var(--gray-50);
    color: var(--black);
    padding-left: 1.25rem;
}

.header__cta {
    margin-left: 1rem;
}

.header__cta .btn {
    padding: 0.75rem 1.5rem;
}

/* Mobile menu */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    gap: 5px;
}

.header__burger span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--black);
    transition: var(--transition);
    transform-origin: center;
}

/* Burger active state - X animation */
.header__burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header__burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .header__burger {
        display: flex;
    }

    /* CTA na mobile - tylko ikona telefonu */
    .header__inner > .header__cta {
        margin-left: auto;
        margin-right: 0.75rem;
    }

    .header__inner > .header__cta .btn {
        padding: 0.75rem;
        min-width: 44px;
        border-radius: var(--radius-sm);
    }

    .header__inner > .header__cta .btn svg {
        width: 20px;
        height: 20px;
        margin: 0;
    }

    /* Ukryj tekst "Zadzwoń" na mobile */
    .header__inner > .header__cta .btn {
        font-size: 0;
        gap: 0;
    }

    .header__nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px);
        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 99999;
        -webkit-overflow-scrolling: touch;
    }

    .header__nav.active {
        transform: translateX(0);
    }

    .header__menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 1rem;
        gap: 0;
    }

    .header__menu-item {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }

    .header__menu-item:last-child {
        border-bottom: none;
    }

    .header__menu-link {
        display: block;
        padding: 1rem 0.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--gray-900);
        border-radius: 0;
    }

    .header__dropdown {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0.5rem 0 1rem 1rem;
        min-width: auto;
        background: transparent;
        border-radius: 0;
        margin: 0;
    }

    .header__dropdown::before {
        display: none;
    }

    .header__menu-item.active .header__dropdown {
        display: block;
    }

    .header__dropdown-link {
        display: block;
        padding: 0.6rem 0.5rem;
        font-size: 1rem;
        color: var(--gray-700);
    }

    .header__dropdown-link:hover {
        color: var(--accent);
        background: transparent;
        padding-left: 1rem;
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gray-900) 0%, #0f172a 50%, var(--black) 100%);
    color: var(--white);
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    filter: grayscale(50%);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero__subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    color: var(--accent-light);
}

.hero__title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero__title span {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 1.25rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero__stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat {
    text-align: left;
}

.hero__stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-label {
    font-size: 0.875rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 8rem 0 5rem;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .hero__stat {
        flex: 1 1 40%;
    }

    .hero__buttons {
        flex-direction: column;
    }
}

/* ===== FEATURES / BENEFITS ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.feature__icon svg {
    width: 28px;
    height: 28px;
}

.feature__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature__text {
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card__text {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.7;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9375rem;
}

.service-card__link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.service-card:hover .service-card__link {
    color: var(--accent-dark);
}

.service-card:hover .service-card__link svg {
    transform: translateX(4px);
}

/* ===== PROCESS / STEPS ===== */
.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.process__step {
    position: relative;
    padding: 2.5rem 2rem;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.process__step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-800) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
}

.process__step-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process__step-text {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial {
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.testimonial:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial__stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

.testimonial__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

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

.testimonial__author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gray-600);
}

.testimonial__author-name {
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.testimonial__author-location {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--gray-900) 0%, #0f172a 100%);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta__title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.cta__text {
    font-size: 1.125rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.cta__phone:hover {
    transform: scale(1.05);
    color: var(--accent-light);
}

.cta__phone svg {
    width: 36px;
    height: 36px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background-color: var(--white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
    color: var(--gray-400);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    cursor: pointer;
    accent-color: var(--accent);
    border-radius: 4px;
}

.form-check label {
    font-size: 0.875rem;
    color: var(--gray-600);
    cursor: pointer;
    line-height: 1.6;
}

.form-check label a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ===== LOCATIONS GRID ===== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.location-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: var(--transition);
}

.location-link::after {
    content: '→';
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}

.location-link:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.location-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ===== FAQ ===== */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--gray-200);
}

.faq__item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.0625rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-900);
}

.faq__question:hover {
    color: var(--accent);
}

.faq__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--gray-400);
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

.faq__answer-content {
    padding-bottom: 1.5rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

@media (max-width: 640px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer__description {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    color: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.footer__social-link:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer__title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer__link {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--white);
    padding-left: 0.25rem;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.footer__contact-item a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer__contact-item a:hover {
    color: var(--white);
}

.footer__contact-item svg {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    flex-shrink: 0;
    color: var(--accent-light);
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer__legal a {
    color: var(--gray-500);
    transition: var(--transition);
}

.footer__legal a:hover {
    color: var(--white);
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--gray-900) 0%, #0f172a 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.page-header__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.page-header__breadcrumb a {
    color: var(--gray-400);
    transition: var(--transition);
}

.page-header__breadcrumb a:hover {
    color: var(--white);
}

/* ===== SERVICE PAGE ===== */
.service-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .service-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.service-hero__image {
    aspect-ratio: 4/3;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.service-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-benefit__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--accent);
}

.service-benefit__text {
    font-weight: 500;
    color: var(--gray-700);
}

/* ===== SIDEBAR FORM ===== */
.sidebar-form {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.sidebar-form__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.sidebar-form__subtitle {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner__text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner__text p {
    margin-bottom: 0;
    color: var(--gray-700);
}

.cookie-banner__text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-banner__buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-banner__buttons .btn {
    padding: 0.75rem 1.5rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
}

.animate.visible {
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animation delays */
.animate[data-delay="1"] { animation-delay: 0.1s; }
.animate[data-delay="2"] { animation-delay: 0.2s; }
.animate[data-delay="3"] { animation-delay: 0.3s; }
.animate[data-delay="4"] { animation-delay: 0.4s; }

/* ===== LOADING ===== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading__spinner {
    width: 44px;
    height: 44px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== SUCCESS / ERROR STATES ===== */
.form-success {
    padding: 1.5rem;
    background: #dcfce7;
    border: 1px solid #86efac;
    border-radius: var(--radius-md);
    color: #166534;
    text-align: center;
}

.form-error {
    padding: 1.5rem;
    background: #fee2e2;
    border: 1px solid #fca5a5;
    border-radius: var(--radius-md);
    color: #991b1b;
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .btn {
        padding: 0.875rem 1.5rem;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__legal {
        justify-content: center;
    }
}

/* ===== PRINT ===== */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .btn,
    .cta {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: black;
    }

    .page-header {
        background: none !important;
        color: black !important;
        padding: 2rem 0;
    }
}
