/* ==========================================================================
   Freedom Nieruchomości - Premium Landing Page
   Based on Brand Manual Guidelines
   ========================================================================== */

/* ==========================================================================
   Fonts - Mont (główny font marki)
   ========================================================================== */

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    src: url('../fonts/Mont-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   CSS Custom Properties (Brand Colors z brandbooka)
   ========================================================================== */

:root {
    /* Primary Colors - z brandbooka */
    --color-pink: #E50071;
    --color-pink-rgb: 229, 0, 113;
    --color-pink-dark: #BF0254;
    --color-pink-darker: #9C0D52;
    --color-pink-light: #FF3596;
    --color-pink-lighter: rgba(229, 0, 113, 0.08);
    --color-dark: #212121;
    --color-dark-rgb: 33, 33, 33;

    /* Complementary Colors - z brandbooka */
    --color-burgundy: #720033;
    --color-burgundy-dark: #4C003D;
    --color-plum: #701C59;
    --color-wine: #360D2B;

    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-gray-50: #FAFAFA;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #EEEEEE;
    --color-gray-300: #E0E0E0;
    --color-gray-400: #BDBDBD;
    --color-gray-500: #9E9E9E;
    --color-gray-600: #757575;
    --color-gray-700: #616161;
    --color-gray-800: #424242;

    /* Typography */
    --font-primary: 'Mont', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    --spacing-5xl: 8rem;

    /* Border Radius - z brandbooka (zaokrąglone kształty) */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Shadows - Enhanced */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.2);
    --shadow-3xl: 0 32px 80px rgba(0, 0, 0, 0.25);
    --shadow-pink: 0 8px 24px rgba(229, 0, 113, 0.25);
    --shadow-pink-lg: 0 16px 48px rgba(229, 0, 113, 0.3);
    --shadow-pink-glow: 0 0 60px rgba(229, 0, 113, 0.4);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-bg-dark: rgba(33, 33, 33, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-blur: blur(20px);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Z-index scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
}

/* ==========================================================================
   Container
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 50%, var(--color-burgundy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Premium text effects */
.text-shimmer {
    background: linear-gradient(90deg, var(--color-pink) 0%, var(--color-pink-light) 50%, var(--color-pink) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

/* ==========================================================================
   FREEDOM DECORATIVE SHAPES - Global Component
   Zgodnie z brandbookiem: zaokrąglone kwadraty/romby pod kątami 0°, 30°, 45°, 60°, 90°
   ========================================================================== */

.freedom-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.freedom-shape {
    position: absolute;
    border-radius: 20%;
    opacity: 0.6;
}

/* Różne warianty kształtów */
.freedom-shape--gradient {
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.08) 0%, rgba(114, 0, 51, 0.03) 100%);
}

.freedom-shape--outline {
    background: transparent;
    border: 2px solid rgba(229, 0, 113, 0.12);
}

.freedom-shape--solid {
    background: var(--color-pink);
    opacity: 0.05;
}

.freedom-shape--light {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.freedom-shape--light-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Rozmiary */
.freedom-shape--xs { width: 60px; height: 60px; border-radius: 12px; }
.freedom-shape--sm { width: 100px; height: 100px; border-radius: 16px; }
.freedom-shape--md { width: 180px; height: 180px; border-radius: 24px; }
.freedom-shape--lg { width: 300px; height: 300px; border-radius: 40px; }
.freedom-shape--xl { width: 500px; height: 500px; border-radius: 60px; }

/* Kąty rotacji zgodne z brandbookiem */
.freedom-shape--rotate-0 { transform: rotate(0deg); }
.freedom-shape--rotate-30 { transform: rotate(30deg); }
.freedom-shape--rotate-45 { transform: rotate(45deg); }
.freedom-shape--rotate-60 { transform: rotate(60deg); }
.freedom-shape--rotate-90 { transform: rotate(90deg); }

/* Animacje */
.freedom-shape--float {
    animation: freedomFloat 12s ease-in-out infinite;
}

.freedom-shape--float-slow {
    animation: freedomFloat 20s ease-in-out infinite;
}

.freedom-shape--float-reverse {
    animation: freedomFloat 15s ease-in-out infinite reverse;
}

@keyframes freedomFloat {
    0%, 100% {
        transform: var(--base-rotation, rotate(45deg)) translateY(0) scale(1);
    }
    33% {
        transform: var(--base-rotation, rotate(45deg)) translateY(-20px) scale(1.02);
    }
    66% {
        transform: var(--base-rotation, rotate(45deg)) translateY(-10px) scale(0.98);
    }
}

.text-pink {
    color: var(--color-pink);
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    text-align: center;
}

.btn svg {
    transition: transform var(--transition-normal);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 100%);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-pink);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-pink-dark) 0%, var(--color-burgundy) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-pink-lg), var(--shadow-pink-glow);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
}

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

.btn-outline-light {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline-light:hover {
    background-color: var(--color-white);
    color: var(--color-pink);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-xl {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--color-pink);
    letter-spacing: -0.5px;
}

.logo-subtext {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 0.6875rem;
    color: var(--color-dark);
    margin-top: 2px;
    text-align: right;
}

.nav {
    display: none;
}

@media (min-width: 1024px) {
    .nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    gap: var(--spacing-xl);
}

.nav-list a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-dark);
    position: relative;
    padding: var(--spacing-sm) 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-burgundy) 100%);
    transition: width var(--transition-normal);
}

.nav-list a:hover {
    color: var(--color-pink);
}

.nav-list a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-phone {
    display: none;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    color: var(--color-dark);
}

.header-phone:hover {
    color: var(--color-pink);
}

@media (min-width: 768px) {
    .header-phone {
        display: flex;
    }
}

.header .btn {
    display: none;
}

@media (min-width: 1024px) {
    .header .btn {
        display: inline-flex;
    }
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-sm);
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: all var(--transition-normal);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: var(--spacing-4xl);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #fafafa 50%, #fff5f9 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(229, 0, 113, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(114, 0, 51, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 60% 80%, rgba(229, 0, 113, 0.03) 0%, transparent 50%);
}

/* Freedom Signature Rhombus/Square Shapes - zgodnie z brandbookiem */
.hero-shape {
    position: absolute;
    border-radius: var(--radius-xl);
}

/* Główny duży romb - 45° */
.hero-shape-1 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.07) 0%, rgba(191, 2, 84, 0.04) 50%, transparent 100%);
    top: -350px;
    right: -200px;
    transform: rotate(45deg);
    border-radius: 60px;
    animation: floatRotate 20s ease-in-out infinite;
}

/* Średni romb z obramówką - 30° */
.hero-shape-2 {
    width: 400px;
    height: 400px;
    border: 3px solid rgba(229, 0, 113, 0.12);
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.02) 0%, transparent 100%);
    bottom: 5%;
    left: -150px;
    transform: rotate(30deg);
    border-radius: 40px;
    animation: floatRotate 15s ease-in-out infinite reverse;
}

/* Mały wypełniony romb - 60° */
.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(114, 0, 51, 0.1) 0%, rgba(76, 0, 61, 0.05) 100%);
    top: 35%;
    right: 8%;
    transform: rotate(60deg);
    border-radius: 24px;
    animation: floatRotate 12s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(114, 0, 51, 0.1);
    animation-delay: -3s;
}

/* Mały akcent - 0° (bez rotacji) */
.hero-shape-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 100%);
    opacity: 0.08;
    top: 18%;
    left: 8%;
    transform: rotate(0deg);
    border-radius: 20px;
    animation: floatRotate 10s ease-in-out infinite;
    animation-delay: -5s;
}

/* Dodatkowy mały romb - 90° */
.hero-shape-5 {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(229, 0, 113, 0.2);
    background: transparent;
    top: 60%;
    right: 15%;
    transform: rotate(90deg);
    border-radius: 16px;
    animation: floatRotate 8s ease-in-out infinite;
    animation-delay: -2s;
}

/* Duży delikatny romb w tle */
.hero-shape-6 {
    width: 500px;
    height: 500px;
    border: 1px solid rgba(229, 0, 113, 0.05);
    background: transparent;
    bottom: -200px;
    right: 20%;
    transform: rotate(45deg);
    border-radius: 50px;
    animation: floatRotate 25s ease-in-out infinite reverse;
}

@keyframes floatRotate {
    0%, 100% {
        transform: rotate(var(--rotation, 45deg)) translateY(0) scale(1);
    }
    25% {
        transform: rotate(var(--rotation, 45deg)) translateY(-15px) scale(1.02);
    }
    50% {
        transform: rotate(var(--rotation, 45deg)) translateY(-25px) scale(1.01);
    }
    75% {
        transform: rotate(var(--rotation, 45deg)) translateY(-10px) scale(1.03);
    }
}

.hero-shape-1 { --rotation: 45deg; }
.hero-shape-2 { --rotation: 30deg; }
.hero-shape-3 { --rotation: 60deg; }
.hero-shape-4 { --rotation: 0deg; }
.hero-shape-5 { --rotation: 90deg; }
.hero-shape-6 { --rotation: 45deg; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-4xl);
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.1) 0%, rgba(114, 0, 51, 0.05) 100%);
    border: 1px solid rgba(229, 0, 113, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-pink);
    margin-bottom: var(--spacing-xl);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(229, 0, 113, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 100%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(229, 0, 113, 0.5);
}

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

.hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -1px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--color-dark);
}

/* Hero Form - Premium Glassmorphism */
.hero-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-2xl);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
    border: 1px solid rgba(229, 0, 113, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-pink), var(--color-pink-dark), var(--color-burgundy));
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.hero-form .form-row {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .hero-form .form-row {
        flex-direction: row;
    }
}

.hero-form .form-group {
    flex: 1;
}

.hero-form .form-group.hero-autocomplete {
    flex: 2;
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all var(--transition-normal);
    background: var(--color-white);
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    border-color: var(--color-pink);
    box-shadow: 0 0 0 4px rgba(229, 0, 113, 0.1);
}

.hero-form .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .hero-form .btn {
        width: 100%;
    }
}

/* Hero Form Vertical Layout */
.hero-form--vertical {
    max-width: 480px;
}

.hero-form__fields {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.hero-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-form__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-form__input,
.hero-form__select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    font-size: 1.0625rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    background: var(--color-white);
    color: var(--color-gray-900);
}

.hero-form__input::placeholder {
    color: var(--color-gray-500);
    font-weight: 400;
}

.hero-form__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

.hero-form__input:focus,
.hero-form__select:focus {
    outline: none;
    border-color: var(--color-pink);
    box-shadow: 0 0 0 4px rgba(229, 0, 113, 0.15);
}

.hero-form__input[readonly] {
    background: var(--color-gray-100);
    color: var(--color-gray-600);
    cursor: not-allowed;
}

.hero-form__submit {
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
}

/* Hero autocomplete inside vertical form */
.hero-form--vertical .hero-autocomplete {
    position: relative;
}

.hero-form--vertical .hero-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 100;
    max-height: 280px;
    overflow-y: auto;
    display: none;
}

.hero-form--vertical .hero-suggestions.active {
    display: block;
}

.hero-form--vertical .hero-suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    cursor: pointer;
    border-bottom: 1px solid var(--color-gray-100);
    transition: background var(--transition-fast);
    font-size: 0.9375rem;
    color: var(--color-dark);
}

.hero-form--vertical .hero-suggestion-item::before {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23E50071' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-form--vertical .hero-suggestion-item:last-child {
    border-bottom: none;
}

.hero-form--vertical .hero-suggestion-item:hover,
.hero-form--vertical .hero-suggestion-item.selected {
    background: var(--color-pink-light);
}

.hero-form--vertical .hero-suggestion-item--info {
    color: var(--color-gray-500);
    font-style: italic;
    cursor: default;
}

.hero-form--vertical .hero-suggestion-item--info::before {
    display: none;
}

.hero-form--vertical .hero-suggestion-item--info:hover {
    background: transparent;
}

.form-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-gray-200);
}

.form-trust span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.8125rem;
    color: var(--color-gray-600);
}

.form-trust svg {
    color: var(--color-pink);
}

/* Hero Autocomplete */
.hero-autocomplete {
    position: relative;
}

.hero-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: none;
    max-height: 250px;
    overflow-y: auto;
}

.hero-suggestions.active {
    display: block;
}

.hero-suggestion {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    cursor: pointer;
    border-bottom: 1px solid var(--color-gray-100);
    transition: background 0.2s ease;
    font-size: 0.9375rem;
    color: var(--color-dark);
}

.hero-suggestion:last-child {
    border-bottom: none;
}

.hero-suggestion:hover {
    background: var(--color-gray-50);
}

.hero-suggestion svg {
    color: var(--color-pink);
    flex-shrink: 0;
}

.hero-suggestion--info {
    color: var(--color-gray-500);
    cursor: default;
    font-style: italic;
}

.hero-suggestion--info:hover {
    background: transparent;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
    }
}

.hero-image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image-shape-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-burgundy) 100%);
    border-radius: var(--radius-2xl);
    transform: rotate(6deg);
    top: 20px;
    left: 20px;
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.hero-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

/* Floating Cards - Premium */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(229, 0, 113, 0.08);
    animation: floatCard 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-floating-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(229, 0, 113, 0.2);
}

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

.hero-floating-card-1 {
    bottom: 100px;
    left: -80px;
    animation-delay: -2s;
}

.hero-floating-card-2 {
    top: 80px;
    right: -60px;
}

.hero-floating-card-3 {
    bottom: 200px;
    right: -30px;
    animation-delay: -4s;
}

.floating-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.1) 0%, rgba(114, 0, 51, 0.05) 100%);
    border-radius: var(--radius-lg);
    color: var(--color-pink);
    position: relative;
}

.floating-card-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-pink), var(--color-burgundy));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.hero-floating-card:hover .floating-card-icon::after {
    opacity: 0.1;
}

.floating-card-icon.icon-pink {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 8px 20px rgba(229, 0, 113, 0.3);
}

.floating-card-content {
    display: flex;
    flex-direction: column;
}

.floating-card-value {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
}

.floating-card-label {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
    margin-top: 2px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-gray-500);
    font-size: 0.75rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-pink);
    border-radius: var(--radius-full);
    animation: scrollDown 2s ease-in-out infinite;
}

@media (max-width: 1023px) {
    .scroll-indicator {
        display: none;
    }
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trust-bar {
    padding: var(--spacing-2xl) 0;
    background: var(--color-gray-50);
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
}

/* ==========================================================================
   SERVICES SECTION - Premium Grid
   ========================================================================== */

.services-section {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(180deg, #fff 0%, var(--color-gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.04) 0%, transparent 60%);
    border-radius: 80px;
    transform: rotate(45deg);
    top: -250px;
    right: -150px;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(229, 0, 113, 0.08);
    border-radius: 40px;
    transform: rotate(30deg);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-2xl);
    }
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.service-card--primary {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 50%, var(--color-burgundy) 100%);
    color: var(--color-white);
    box-shadow: 0 20px 60px rgba(229, 0, 113, 0.3);
    border: none;
}

.service-card--primary:hover {
    box-shadow: 0 30px 80px rgba(229, 0, 113, 0.4);
    transform: translateY(-12px) scale(1.02);
}

.service-card__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.1) 0%, rgba(114, 0, 51, 0.05) 100%);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-lg);
    color: var(--color-pink);
    position: relative;
    transition: all 0.4s ease;
}

.service-card__icon svg {
    width: 36px;
    height: 36px;
}

.service-card:hover .service-card__icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card--primary .service-card__icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.service-card__badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card--primary .service-card__badge {
    background: var(--color-white);
    color: var(--color-pink);
}

.service-card__title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.service-card--primary .service-card__title {
    color: var(--color-white);
}

.service-card__description {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.service-card--primary .service-card__description {
    color: rgba(255, 255, 255, 0.9);
}

.service-card__features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
    flex-grow: 1;
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    font-size: 0.9375rem;
    color: var(--color-gray-700);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card__features li:last-child {
    border-bottom: none;
}

.service-card__features li svg {
    width: 18px;
    height: 18px;
    color: var(--color-pink);
    flex-shrink: 0;
}

.service-card--primary .service-card__features li {
    color: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.service-card--primary .service-card__features li svg {
    color: var(--color-white);
}

.service-card .btn {
    margin-top: auto;
}

.service-card--primary .btn-primary {
    background: var(--color-white);
    color: var(--color-pink);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card--primary .btn-primary:hover {
    background: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.trust-bar-title {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
}

.trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity var(--transition-normal);
    filter: grayscale(100%);
}

.trust-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.trust-logo img {
    height: 24px;
    width: auto;
}

.trust-logo-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray-700);
    text-align: center;
    line-height: 1.2;
}

.trust-logo.award {
    display: flex;
    gap: var(--spacing-sm);
    opacity: 0.8;
}

.award-badge {
    font-size: 1.5rem;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.section-header-light {
    color: var(--color-white);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.1) 0%, rgba(114, 0, 51, 0.05) 100%);
    color: var(--color-pink);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(229, 0, 113, 0.15);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-pink);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(229, 0, 113, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.section-badge-light::before {
    background: var(--color-white);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.section-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    position: relative;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

.section-header-light .section-title {
    color: var(--color-white);
}

.section-header-light .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   PROBLEMS SECTION
   ========================================================================== */

.problems-section {
    padding: var(--spacing-5xl) 0;
    background: var(--color-white);
}

.problems-grid {
    display: grid;
    gap: var(--spacing-xl);
}

@media (min-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(229, 0, 113, 0.05);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.problem-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(229, 0, 113, 0.1);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-side,
.solution-side {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    width: 100%;
}

.problem-side {
    background: var(--color-gray-50);
    margin-bottom: var(--spacing-md);
}

.solution-side {
    background: rgba(229, 0, 113, 0.05);
}

.problem-icon,
.solution-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin: 0 auto var(--spacing-md);
}

.problem-icon {
    background: var(--color-gray-200);
    color: var(--color-gray-500);
}

.solution-icon {
    background: var(--color-pink);
    color: var(--color-white);
}

.problem-label,
.solution-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.problem-label {
    color: var(--color-gray-500);
}

.solution-label {
    color: var(--color-pink);
}

.problem-text,
.solution-text {
    font-size: 1rem;
    font-weight: 500;
}

.problem-text {
    color: var(--color-gray-600);
    text-decoration: line-through;
}

.solution-text {
    color: var(--color-dark);
}

.solution-text strong {
    color: var(--color-pink);
}

.solution-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-pink);
    color: var(--color-white);
    border-radius: 50%;
    margin: var(--spacing-md) 0;
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */

.stats-section {
    position: relative;
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-burgundy) 100%);
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.stats-shape {
    position: absolute;
    border-radius: var(--radius-2xl);
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.05);
}

.stats-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
}

.stats-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: translateX(100%);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-card-highlight {
    background: var(--color-white);
    color: var(--color-dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stat-card-highlight:hover {
    background: var(--color-white);
    box-shadow: 0 30px 80px rgba(229, 0, 113, 0.2);
}

.stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.stat-card-highlight .stat-icon {
    color: var(--color-pink);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-card-highlight .stat-number {
    color: var(--color-pink);
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.stat-card-highlight .stat-suffix {
    color: var(--color-pink);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-white);
    margin-top: var(--spacing-sm);
}

/* Wymuś biały kolor dla sekcji statystyk (strona miasta) */
.stats-section .stat-label {
    color: var(--color-white) !important;
}

.stat-card-highlight .stat-label {
    color: var(--color-dark);
}

.stat-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-top: var(--spacing-sm);
    color: #FFD700;
    font-size: 1rem;
}

/* ==========================================================================
   HOME STAGING SECTION
   ========================================================================== */

.homestaging-section {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(180deg, var(--color-gray-50) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative shapes */
.homestaging-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.03) 0%, transparent 60%);
    border-radius: 60px;
    transform: rotate(45deg);
    top: -200px;
    left: -100px;
    pointer-events: none;
}

.homestaging-slider {
    max-width: 1000px;
    margin: 0 auto;
}

.before-after-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    cursor: ew-resize;
    user-select: none;
}

.before-after-container.dragging {
    cursor: grabbing;
}

.before-after-container.dragging .handle-circle {
    transform: scale(1.15);
    box-shadow: 0 10px 40px rgba(229, 0, 113, 0.4);
}

.after-image {
    position: relative;
    width: 100%;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (min-width: 768px) {
    .before-image img,
    .after-image img {
        height: 550px;
    }
}

.before-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.05s ease-out;
}

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

.before-label,
.after-label {
    position: absolute;
    bottom: var(--spacing-lg);
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.before-label {
    left: var(--spacing-lg);
    background: rgba(33, 33, 33, 0.9);
    color: var(--color-white);
}

.after-label {
    right: var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(229, 0, 113, 0.4);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 5px;
    background: var(--color-white);
    z-index: 3;
    cursor: ew-resize;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.05s ease-out;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.handle-line {
    flex: 1;
    width: 100%;
    background: var(--color-white);
}

.handle-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-white) 0%, #f8f8f8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-pink);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 3px solid var(--color-pink);
}

.handle-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(229, 0, 113, 0.3);
}

.handle-circle svg {
    width: 28px;
    height: 28px;
}

.homestaging-info {
    display: flex;
    justify-content: center;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.homestaging-stat {
    text-align: center;
}

.homestaging-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-pink);
}

.homestaging-stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.homestaging-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.homestaging-cta p {
    margin-bottom: var(--spacing-md);
    color: var(--color-gray-600);
}

/* ==========================================================================
   PROCESS SECTION - Premium Timeline
   ========================================================================== */

.process-section {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(180deg, #fff 0%, var(--color-gray-50) 50%, #fff 100%);
    position: relative;
    /* NO overflow:hidden here - it breaks sticky positioning! */
}

.process-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.03) 0%, transparent 50%);
    border-radius: 80px;
    transform: rotate(45deg);
    top: -300px;
    left: -200px;
    pointer-events: none;
}

.process-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(229, 0, 113, 0.06);
    border-radius: 50px;
    transform: rotate(60deg);
    bottom: -150px;
    right: -100px;
    pointer-events: none;
}

/* ===== PROCESS CARDS STACK - Sticky Overlay Effect ===== */
.process-cards-stack {
    display: block;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.process-card {
    position: sticky;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 -10px 40px rgba(0, 0, 0, 0.08),
        0 30px 60px rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;
    transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.process-card[data-step="1"] { z-index: 1; top: 100px; }
.process-card[data-step="2"] { z-index: 2; top: 120px; }
.process-card[data-step="3"] { z-index: 3; top: 140px; }
.process-card[data-step="4"] { z-index: 4; top: 160px; }

@media (min-width: 768px) {
    .process-card {
        flex-direction: row;
        min-height: 380px;
    }
}

.process-card:hover {
    box-shadow:
        0 -10px 50px rgba(0, 0, 0, 0.1),
        0 40px 80px rgba(0, 0, 0, 0.15);
}

/* Card Image Section - 33% width */
.process-card__image {
    position: relative;
    width: 100%;
    min-height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);
}

@media (min-width: 768px) {
    .process-card__image {
        width: 33.333%;
        min-height: auto;
        flex-shrink: 0;
    }
}

.process-card__image-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-card__image-content svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-card__step-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-burgundy) 100%);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(229, 0, 113, 0.4);
    z-index: 2;
}

/* Card Content Section - 67% width */
.process-card__content {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .process-card__content {
        padding: 48px;
    }
}

.process-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.process-card__label {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.1) 0%, rgba(114, 0, 51, 0.05) 100%);
    color: var(--color-pink);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
}

.process-card__time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-500);
}

.process-card__time svg {
    width: 16px;
    height: 16px;
    color: var(--color-pink);
}

.process-card__title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-gray-900);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .process-card__title {
        font-size: 2rem;
    }
}

.process-card__description {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.process-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.process-card__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-700);
}

.process-card__features li svg {
    width: 20px;
    height: 20px;
    color: var(--color-pink);
    flex-shrink: 0;
}

/* Old styles kept for backwards compatibility */
.process-timeline {
    display: none;
}

.timeline-line {
    display: none;
}

.process-step {
    display: none;
}

.step-number {
    display: none;
}

.step-content {
    display: none;
}

.step-icon {
    display: none;
}

.step-title {
    display: none;
}

.step-description {
    display: none;
}

.step-time {
    display: none;
}

/* ==========================================================================
   USP SECTION
   ========================================================================== */

.usp-section {
    padding: var(--spacing-5xl) 0;
    background: var(--color-gray-50);
}

.usp-grid {
    display: grid;
    gap: var(--spacing-lg);
}

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

@media (min-width: 1024px) {
    .usp-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.usp-card {
    padding: var(--spacing-2xl);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--color-pink), var(--color-burgundy));
    transition: height 0.4s ease;
    border-radius: 0 0 4px 0;
}

.usp-card:hover::before {
    height: 100%;
}

.usp-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(229, 0, 113, 0.08);
}

.usp-card-highlight {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 50%, var(--color-burgundy) 100%);
    color: var(--color-white);
    box-shadow: 0 20px 60px rgba(229, 0, 113, 0.3);
    border: none;
}

.usp-card-highlight::before {
    display: none;
}

.usp-card-highlight:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(229, 0, 113, 0.4);
}

.usp-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.1) 0%, rgba(114, 0, 51, 0.05) 100%);
    color: var(--color-pink);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-lg);
    transition: all 0.4s ease;
    position: relative;
}

.usp-card:hover .usp-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.15) 0%, rgba(114, 0, 51, 0.08) 100%);
}

.usp-card-highlight .usp-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    backdrop-filter: blur(10px);
}

.usp-card-highlight:hover .usp-icon {
    background: rgba(255, 255, 255, 0.3);
}

.usp-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.usp-description {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.usp-card-highlight .usp-description {
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   PORTFOLIO SECTION
   ========================================================================== */

.portfolio-section {
    padding: var(--spacing-5xl) 0;
    background: var(--color-white);
}

.portfolio-grid {
    display: grid;
    gap: var(--spacing-xl);
}

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

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--color-pink), var(--color-burgundy)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.portfolio-card:hover::after {
    opacity: 1;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--color-pink);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-time {
    position: absolute;
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.portfolio-content {
    padding: var(--spacing-lg);
}

.portfolio-title {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.portfolio-location {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
}

.portfolio-location svg {
    color: var(--color-pink);
}

.portfolio-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-pink);
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */

.reviews-section {
    padding: var(--spacing-5xl) 0;
    background: var(--color-gray-50);
    overflow: hidden;
}

.reviews-slider {
    margin: 0 calc(-1 * var(--spacing-md));
    padding: var(--spacing-md);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.reviews-track {
    display: flex;
    gap: var(--spacing-lg);
    animation: scrollReviews 30s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    flex: 0 0 380px;
    padding: var(--spacing-2xl);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(229, 0, 113, 0.08);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(229, 0, 113, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

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

.review-author {
    flex: 1;
}

.review-name {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.review-stars {
    color: #FFD700;
    font-size: 0.875rem;
}

.review-google {
    height: 20px;
    width: auto;
}

.review-text {
    font-size: 0.9375rem;
    color: var(--color-gray-700);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.review-date {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
}

.reviews-footer {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.reviews-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    color: var(--color-pink);
}

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

/* ==========================================================================
   VIDEO CTA SECTION
   ========================================================================== */

.video-cta-section {
    position: relative;
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-wine) 100%);
    overflow: hidden;
}

.video-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.video-cta-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(229, 0, 113, 0.2);
    border-radius: var(--radius-2xl);
    transform: rotate(45deg);
    right: -200px;
    top: -100px;
}

.video-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.video-cta-quote {
    position: relative;
    margin-bottom: var(--spacing-3xl);
}

.video-cta-quote svg {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-pink);
}

.video-cta-quote blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    padding-top: var(--spacing-2xl);
}

@media (min-width: 768px) {
    .video-cta-quote blockquote {
        font-size: 1.5rem;
    }
}

.video-cta-quote cite {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
}

.video-cta-title {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
    .video-cta-title {
        font-size: 2.5rem;
    }
}

.video-cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-2xl);
}

.video-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
    padding: var(--spacing-5xl) 0;
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    gap: var(--spacing-3xl);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-4xl);
    }
}

.contact-info .section-title {
    text-align: left;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-2xl);
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.contact-benefit {
    display: flex;
    gap: var(--spacing-md);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 0, 113, 0.1);
    color: var(--color-pink);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
}

.benefit-text strong {
    font-size: 1rem;
    margin-bottom: 2px;
}

.benefit-text span {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.contact-direct {
    padding: var(--spacing-lg);
    background: var(--color-gray-50);
    border-radius: var(--radius-xl);
}

.contact-direct p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-sm);
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-pink);
}

.contact-phone:hover {
    color: var(--color-pink-dark);
}

/* Contact Form - Premium Design */
.contact-form-wrapper {
    background: var(--color-white);
    padding: var(--spacing-2xl) var(--spacing-3xl);
    border-radius: var(--radius-2xl);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(229, 0, 113, 0.08);
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-pink), var(--color-pink-dark), var(--color-burgundy), var(--color-pink));
    background-size: 300% 100%;
    animation: gradientMove 4s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.05) 0%, transparent 60%);
    border-radius: 30px;
    transform: rotate(45deg);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.contact-form .form-row {
    margin-bottom: var(--spacing-md);
}

.contact-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .contact-form .form-row-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.contact-form .form-group label .required {
    color: var(--color-pink);
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all var(--transition-normal);
    background: var(--color-white);
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-pink);
    box-shadow: 0 0 0 4px rgba(229, 0, 113, 0.1);
}

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

.form-group-checkbox {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    cursor: pointer;
    position: relative;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.checkbox-custom {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    max-width: 22px;
    max-height: 22px;
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--color-pink);
    border-color: var(--color-pink);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
}

.checkbox-text {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--color-pink);
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xs);
}

.radio-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.radio-label:hover {
    border-color: var(--color-pink);
    background: rgba(229, 0, 113, 0.02);
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.radio-custom {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    max-width: 22px;
    max-height: 22px;
    border: 2px solid var(--color-gray-300);
    border-radius: 50%;
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
}

.radio-label input:checked + .radio-custom {
    border-color: var(--color-pink);
}

.radio-label input:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--color-pink);
    border-radius: 50%;
}

.radio-label input:checked ~ .radio-text {
    color: var(--color-dark);
    font-weight: 500;
}

.radio-label:has(input:checked) {
    border-color: var(--color-pink);
    background: rgba(229, 0, 113, 0.05);
}

.radio-text {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    transition: all var(--transition-fast);
}

.form-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-gray-200);
}

.form-trust-badges span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

.form-trust-badges svg {
    color: var(--color-pink);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--spacing-4xl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-text {
    color: var(--color-white);
}

.footer-logo .logo-subtext {
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

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

.footer-social a:hover {
    background: var(--color-pink);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-white);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-pink);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-pink);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--color-pink);
}

/* Footer Cities SEO Grid */
.footer-cities {
    padding-top: var(--spacing-xl);
    margin-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cities h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.footer-cities__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm) var(--spacing-md);
}

@media (min-width: 480px) {
    .footer-cities__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .footer-cities__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-cities__grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.footer-cities__link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-cities__link:hover {
    color: var(--color-pink);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

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

.footer-legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

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

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */

.back-to-top {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-pink);
    color: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-pink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: var(--z-fixed);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-pink-dark);
    transform: translateY(-4px);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes float {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

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

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

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

/* AOS-like reveal animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 767px) {
    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   FLOATING PHONE BUTTON - Premium CTA
   ========================================================================== */

.floating-phone {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-phone__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow:
        0 8px 30px rgba(229, 0, 113, 0.4),
        0 0 0 0 rgba(229, 0, 113, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    animation: phonePulse 2s ease-in-out infinite;
}

.floating-phone__icon svg {
    width: 28px;
    height: 28px;
    animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 8px 30px rgba(229, 0, 113, 0.4),
            0 0 0 0 rgba(229, 0, 113, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow:
            0 8px 30px rgba(229, 0, 113, 0.4),
            0 0 0 12px rgba(229, 0, 113, 0);
    }
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

.floating-phone__text {
    background: var(--color-dark);
    color: white;
    padding: 0.875rem 1.5rem;
    padding-right: 1.75rem;
    border-radius: 50px 0 0 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    white-space: nowrap;
    transform: translateX(30px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-right: -30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.floating-phone__text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2px;
}

.floating-phone:hover .floating-phone__text {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    margin-right: -15px;
}

.floating-phone:hover .floating-phone__icon {
    transform: scale(1.1);
    box-shadow:
        0 12px 40px rgba(229, 0, 113, 0.5),
        0 0 0 0 rgba(229, 0, 113, 0);
}

/* Mobile - always show text */
@media (max-width: 768px) {
    .floating-phone {
        bottom: 20px;
        right: 20px;
    }

    .floating-phone__icon {
        width: 56px;
        height: 56px;
    }

    .floating-phone__text {
        display: none;
    }

    /* Mobile: show compact label */
    .floating-phone::after {
        content: 'Zadzwoń';
        position: absolute;
        bottom: -24px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--color-dark);
        color: white;
        padding: 4px 10px;
        border-radius: 12px;
        font-size: 0.6875rem;
        font-weight: 600;
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */

.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 40px;
    width: 46px;
    height: 46px;
    background: var(--color-dark);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top svg {
    stroke: white;
    width: 20px;
    height: 20px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 0, 113, 0.4);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 100px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff 0%, #fff5f9 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__logo {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--color-pink);
    margin-bottom: 2rem;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader__spinner {
    width: 60px;
    height: 60px;
    position: relative;
}

.preloader__spinner::before,
.preloader__spinner::after {
    content: '';
    position: absolute;
    border-radius: 12px;
}

.preloader__spinner::before {
    inset: 0;
    background: linear-gradient(135deg, var(--color-pink), var(--color-burgundy));
    animation: preloaderRotate 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    transform: rotate(45deg);
}

.preloader__spinner::after {
    inset: 8px;
    background: white;
    border-radius: 8px;
    transform: rotate(45deg);
}

@keyframes preloaderRotate {
    0% { transform: rotate(45deg) scale(1); }
    50% { transform: rotate(225deg) scale(0.8); }
    100% { transform: rotate(405deg) scale(1); }
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.98); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    flex-wrap: wrap;
}

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

.cookie-banner__text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.cookie-banner__accept {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-banner__accept:hover {
    background: var(--color-primary-dark);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .cookie-banner__accept {
        width: 100%;
    }
}

/* ==========================================================================
   FORM STATES
   ========================================================================== */

input.error,
textarea.error,
select.error {
    border-color: #e53e3e !important;
    background-color: rgba(229, 62, 62, 0.05);
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

button.success {
    background: #38a169 !important;
    pointer-events: none;
}

/* Input focus states */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(229, 0, 113, 0.1);
}

/* ==========================================================================
   MOBILE MENU - EXTENDED STYLES
   ========================================================================== */

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

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

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

@media (max-width: 991px) {
    .nav {
        display: block; /* Override display:none for mobile menu */
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: white;
        padding: 100px 2rem 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1001; /* Above overlay (999) */
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li {
        border-bottom: 1px solid #eee;
    }

    .nav-list a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}

/* ==========================================================================
   NAV ACTIVE STATE
   ========================================================================== */

.nav-list a.active {
    color: var(--color-primary);
}

.nav-list a.active::after {
    width: 100%;
}

/* ==========================================================================
   BEFORE/AFTER SLIDER IMPROVEMENTS
   ========================================================================== */

.staging__slider {
    cursor: ew-resize;
}

.staging__slider.dragging {
    cursor: grabbing;
}

.staging__slider.dragging .staging__handle {
    transform: translate(-50%, -50%) scale(1.1);
}

/* ==========================================================================
   REVIEWS NAVIGATION
   ========================================================================== */

.reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.reviews__nav:hover {
    background: var(--color-primary);
    color: white;
}

.reviews__nav--prev {
    left: -25px;
}

.reviews__nav--next {
    right: -25px;
}

.reviews__nav--prev::before,
.reviews__nav--next::before {
    content: '';
    width: 10px;
    height: 10px;
    border-left: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

.reviews__nav--prev::before {
    transform: rotate(45deg) translateX(2px);
}

.reviews__nav--next::before {
    transform: rotate(-135deg) translateX(2px);
}

.reviews__nav:hover::before {
    border-color: white;
}

@media (max-width: 768px) {
    .reviews__nav {
        display: none;
    }
}

/* ==========================================================================
   PORTFOLIO OVERLAY
   ========================================================================== */

.portfolio-card__overlay.visible {
    opacity: 1;
}

/* ==========================================================================
   ADDITIONAL FIXES
   ========================================================================== */

/* Ensure smooth transitions */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Better image loading */
img.loaded {
    animation: fadeIn 0.3s ease;
}

/* Header CTA button on mobile */
@media (max-width: 991px) {
    .header__cta {
        display: none;
    }
}

/* ==========================================================================
   CONVERSION ELEMENTS - Exit Popup, Social Proof, Urgency
   ========================================================================== */

/* Exit Intent Popup */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.exit-popup.visible {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.exit-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.exit-popup__content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl) var(--spacing-xl);
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.exit-popup__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-pink), var(--color-pink-dark), var(--color-burgundy));
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.exit-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-popup__close:hover {
    background: var(--color-pink);
    color: var(--color-white);
    transform: rotate(90deg);
}

.exit-popup__close svg {
    width: 20px;
    height: 20px;
}

.exit-popup__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.1) 0%, rgba(114, 0, 51, 0.05) 100%);
    border: 1px solid rgba(229, 0, 113, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-pink);
    margin-bottom: var(--spacing-lg);
}

.exit-popup__badge-icon {
    font-size: 1.2rem;
}

.exit-popup__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.exit-popup__subtitle {
    font-size: 1rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.exit-popup__form {
    margin-bottom: var(--spacing-lg);
}

.exit-popup__form-group {
    margin-bottom: var(--spacing-md);
}

.exit-popup__form input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.exit-popup__form input:focus {
    outline: none;
    border-color: var(--color-pink);
    box-shadow: 0 0 0 4px rgba(229, 0, 113, 0.1);
}

.exit-popup__trust {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-gray-200);
}

.exit-popup__trust span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.8125rem;
    color: var(--color-gray-600);
}

.exit-popup__trust svg {
    width: 16px;
    height: 16px;
    color: var(--color-pink);
}

.exit-popup__urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, #FFF5E6 0%, #FFECD2 100%);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    color: #B85C00;
}

.exit-popup__urgency-icon {
    font-size: 1.25rem;
}

/* Exit Popup - Wycena Version */
.exit-popup__content--wide {
    max-width: 480px;
}

.exit-popup__form--wycena {
    text-align: left;
}

.exit-popup__form--wycena .exit-popup__form-group {
    margin-bottom: var(--spacing-md);
}

.exit-popup__form--wycena label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.exit-popup__form--wycena input,
.exit-popup__form--wycena select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    text-align: left;
    transition: all 0.3s ease;
    background: var(--color-white);
}

.exit-popup__form--wycena select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.exit-popup__form--wycena input:focus,
.exit-popup__form--wycena select:focus {
    outline: none;
    border-color: var(--color-pink);
    box-shadow: 0 0 0 4px rgba(229, 0, 113, 0.1);
}

.exit-popup__autocomplete {
    position: relative;
}

.exit-popup__suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.exit-popup__suggestions.active {
    display: block;
}

.exit-popup__suggestions .suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-gray-100);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: background 0.2s ease;
}

.exit-popup__suggestions .suggestion-item:last-child {
    border-bottom: none;
}

.exit-popup__suggestions .suggestion-item:hover {
    background: var(--color-gray-50);
}

.exit-popup__suggestions .suggestion-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-pink);
    flex-shrink: 0;
}

.exit-popup__badge-icon svg {
    stroke: var(--color-pink);
}

/* Social Proof Notifications */
.social-proof {
    position: fixed;
    bottom: 100px;
    left: 20px;
    display: none;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(229, 0, 113, 0.1);
    z-index: 1000;
    max-width: 350px;
    animation: slideInLeft 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-proof.visible {
    display: flex;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.social-proof__avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.social-proof__content {
    flex-grow: 1;
}

.social-proof__text {
    font-size: 0.9375rem;
    color: var(--color-dark);
    margin-bottom: 4px;
    line-height: 1.4;
}

.social-proof__text strong {
    color: var(--color-pink);
}

.social-proof__time {
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

.social-proof__close {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.social-proof__close:hover {
    background: var(--color-gray-200);
}

.social-proof__close svg {
    width: 14px;
    height: 14px;
    color: var(--color-gray-600);
}

@media (max-width: 767px) {
    .social-proof {
        left: 10px;
        right: 10px;
        bottom: 90px;
        max-width: none;
    }
}

/* Urgency Bar (Top) */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--color-dark) 0%, var(--color-burgundy-dark) 50%, var(--color-dark) 100%);
    color: var(--color-white);
    padding: 10px 0;
    z-index: 9999;
    display: none;
    animation: slideDown 0.5s ease;
}

.urgency-bar.visible {
    display: block;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.urgency-bar__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.urgency-bar__icon {
    font-size: 1.25rem;
    animation: pulse 2s ease-in-out infinite;
}

.urgency-bar__text {
    font-size: 0.9375rem;
    text-align: center;
}

.urgency-bar__text strong {
    color: var(--color-pink-light);
}

.urgency-bar__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 6px 16px;
    background: var(--color-pink);
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.urgency-bar__cta:hover {
    background: var(--color-pink-light);
    transform: scale(1.05);
}

.urgency-bar__close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.urgency-bar__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.urgency-bar__close svg {
    width: 16px;
    height: 16px;
    color: var(--color-white);
}

@media (max-width: 767px) {
    .urgency-bar {
        padding: 12px 40px 12px 15px;
    }

    .urgency-bar__content {
        flex-direction: column;
        gap: 8px;
    }

    .urgency-bar__text {
        font-size: 0.8125rem;
    }
}

/* Adjust header when urgency bar is visible */
body.urgency-bar-visible .header {
    top: 44px;
}

body.urgency-bar-visible .hero {
    padding-top: 164px;
}

@media (max-width: 767px) {
    body.urgency-bar-visible .header {
        top: 70px;
    }

    body.urgency-bar-visible .hero {
        padding-top: 190px;
    }
}

/* ==========================================================================
   NEW SERVICES BLOCKS (Image-based)
   ========================================================================== */

.services-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .services-blocks {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
    }

    .service-block--large {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .services-blocks {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto;
        gap: var(--spacing-2xl);
    }

    .service-block--large {
        grid-column: span 1;
        grid-row: span 2;
    }
}

.service-block {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.service-block--large {
    min-height: 500px;
}

@media (min-width: 1024px) {
    .service-block--large {
        min-height: 100%;
    }

    .service-block:not(.service-block--large) {
        min-height: 280px;
    }
}

.service-block__image {
    position: absolute;
    inset: 0;
}

.service-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-block:hover .service-block__image img {
    transform: scale(1.08);
}

.service-block__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(33, 33, 33, 0) 0%,
        rgba(33, 33, 33, 0.3) 40%,
        rgba(33, 33, 33, 0.85) 80%,
        rgba(33, 33, 33, 0.95) 100%
    );
    transition: background 0.5s ease;
}

.service-block:hover .service-block__overlay {
    background: linear-gradient(
        180deg,
        rgba(229, 0, 113, 0.05) 0%,
        rgba(33, 33, 33, 0.4) 40%,
        rgba(33, 33, 33, 0.9) 80%,
        rgba(33, 33, 33, 0.98) 100%
    );
}

.service-block__content {
    position: relative;
    z-index: 1;
    padding: var(--spacing-xl);
    color: var(--color-white);
}

.service-block--large .service-block__content {
    padding: var(--spacing-2xl);
}

.service-block__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--color-pink);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(229, 0, 113, 0.4);
}

.service-block__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.service-block--large .service-block__title {
    font-size: 2rem;
}

.service-block__description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.service-block__features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.service-block__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-block__features li svg {
    width: 16px;
    height: 16px;
    color: var(--color-pink-light);
    flex-shrink: 0;
}

.service-block__stats {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.service-block__stat {
    display: flex;
    flex-direction: column;
}

.service-block__stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-pink-light);
    line-height: 1;
}

.service-block__stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.service-block .btn {
    width: fit-content;
}

.service-block .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
}

.service-block .btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
}

/* ==========================================================================
   STICKY CTA MOBILE
   ========================================================================== */

.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: var(--color-white);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-cta-mobile.visible {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .sticky-cta-mobile {
        display: block;
    }

    .floating-phone {
        bottom: 80px;
    }

    .back-to-top {
        bottom: 160px;
    }

    .social-proof {
        bottom: 160px;
    }
}

/* ==========================================================================
   PARTNERS INFINITE SLIDER
   ========================================================================== */

.partners-slider {
    padding: var(--spacing-2xl) 0;
    background: var(--color-gray-50);
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
    overflow: hidden;
}

.partners-slider__wrapper {
    max-width: 100%;
}

.partners-slider__title {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-slider__track {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-slider__logos {
    display: flex;
    gap: var(--spacing-3xl);
    animation: infiniteScroll 30s linear infinite;
    width: max-content;
}

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

.partner-logo {
    flex-shrink: 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-logo img {
    height: 100%;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

/* ==========================================================================
   PREMIUM SERVICE CARDS - Sprzedaż & Wynajem
   ========================================================================== */

.service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 900px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-2xl);
    }
}

.service-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 900px) {
    .service-card {
        min-height: 520px;
    }
}

.service-card__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card__bg img {
    transform: scale(1.05);
}

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(33, 33, 33, 0.2) 0%,
        rgba(33, 33, 33, 0.5) 40%,
        rgba(33, 33, 33, 0.85) 100%
    );
}

.service-card__content {
    position: relative;
    z-index: 1;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .service-card__content {
        padding: var(--spacing-2xl);
    }
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(229, 0, 113, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(229, 0, 113, 0.3);
}

.service-card__icon svg {
    stroke: #fff;
}

.service-card__title {
    font-family: 'Mont', 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

.service-card__desc {
    font-family: 'Mont', 'Poppins', sans-serif;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    max-width: 340px;
}

.service-card__stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card__stat {
    display: flex;
    flex-direction: column;
}

.service-card__stat-value {
    font-family: 'Mont', 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-pink);
    line-height: 1;
}

@media (min-width: 768px) {
    .service-card__stat-value {
        font-size: 2rem;
    }
}

.service-card__stat-label {
    font-family: 'Mont', 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: var(--spacing-lg);
}

.service-card__features li {
    font-family: 'Mont', 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

.service-card__features svg {
    stroke: var(--color-pink);
    flex-shrink: 0;
}

.service-card__cta {
    font-family: 'Mont', 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--color-pink);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
}

.service-card__cta:hover {
    background: var(--color-pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(229, 0, 113, 0.3);
}

.service-card__cta svg {
    stroke: #fff;
    transition: transform 0.3s ease;
}

.service-card__cta:hover svg {
    transform: translateX(5px);
}

.service-card__cta--outline {
    background: transparent;
    border: 2px solid #fff;
}

.service-card__cta--outline:hover {
    background: #fff;
    color: var(--color-dark);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.service-card__cta--outline:hover svg {
    stroke: var(--color-dark);
}

/* Decorative Rhombus */
.service-card__rhombus {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(229, 0, 113, 0.3);
    border-radius: 20px;
    transform: rotate(45deg);
    top: 30px;
    right: -30px;
    z-index: 1;
    pointer-events: none;
}

.service-card__rhombus--alt {
    border-color: rgba(255, 255, 255, 0.2);
    top: auto;
    bottom: 150px;
    right: auto;
    left: -30px;
}

/* ==========================================================================
   SOLD PROPERTIES - Premium Grid
   ========================================================================== */

.sold-section {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(180deg, #fff 0%, var(--color-gray-50) 100%);
}

.sold-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .sold-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

@media (min-width: 1200px) {
    .sold-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sold-card--featured {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }
}

.sold-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid var(--color-gray-100);
}

.sold-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--color-pink);
}

.sold-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.sold-card--featured .sold-card__image {
    height: 220px;
    min-height: 220px;
}

@media (min-width: 1200px) {
    .sold-card--featured .sold-card__image {
        height: 60%;
        min-height: 300px;
    }
}

.sold-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sold-card:hover .sold-card__image img {
    transform: scale(1.08);
}

.sold-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-pink);
    color: #fff;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.sold-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(33, 33, 33, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sold-card:hover .sold-card__overlay {
    opacity: 1;
}

.sold-card__status {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-pink);
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.sold-card__content {
    padding: var(--spacing-lg);
}

.sold-card--featured .sold-card__content {
    padding: var(--spacing-xl);
}

.sold-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-sm);
}

.sold-card__location svg {
    stroke: var(--color-pink);
    flex-shrink: 0;
}

.sold-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.sold-card--featured .sold-card__title {
    font-size: 1.375rem;
}

.sold-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.sold-card__details span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sold-card__details strong {
    color: var(--color-dark);
    font-weight: 600;
}

.sold-card__price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-gray-100);
}

.sold-card__price-value {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--color-dark);
}

.sold-card--featured .sold-card__price-value {
    font-size: 1.625rem;
}

.sold-card__price-m2 {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
}

.sold-cta {
    text-align: center;
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, var(--color-gray-50) 0%, #fff 100%);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-gray-200);
}

.sold-cta p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--spacing-lg);
}

/* ==========================================================================
   LEGACY BENTO GRID (deprecated - keeping for backwards compatibility)
   ========================================================================== */

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: var(--spacing-2xl);
    }
}

.bento-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

@media (min-width: 1024px) {
    .bento-column {
        gap: var(--spacing-2xl);
    }
}

/* Hero Card - Main large card */
.bento-card--hero {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (min-width: 1024px) {
    .bento-card--hero {
        min-height: 600px;
    }
}

.bento-card__bg {
    position: absolute;
    inset: 0;
}

.bento-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.bento-card--hero:hover .bento-card__bg img {
    transform: scale(1.05);
}

.bento-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(33, 33, 33, 0.1) 0%,
        rgba(33, 33, 33, 0.4) 40%,
        rgba(33, 33, 33, 0.85) 70%,
        rgba(33, 33, 33, 0.95) 100%
    );
}

.bento-card--hero .bento-card__content {
    position: relative;
    z-index: 1;
    padding: var(--spacing-2xl);
    color: var(--color-white);
}

.bento-card__header {
    margin-bottom: var(--spacing-md);
}

.bento-card__title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .bento-card__title {
        font-size: 3rem;
    }
}

.bento-card__subtitle {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-white);
    opacity: 0.9;
}

@media (min-width: 768px) {
    .bento-card__subtitle {
        font-size: 2rem;
    }
}

.bento-card__desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
    max-width: 350px;
}

.bento-card__stat {
    margin-bottom: var(--spacing-xl);
}

.bento-card__stat-number {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-white);
    line-height: 0.8;
    display: block;
}

@media (min-width: 768px) {
    .bento-card__stat-number {
        font-size: 12rem;
    }
}

.bento-card__stat-label {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-white);
    opacity: 0.7;
    display: block;
    margin-top: -1rem;
    margin-left: 1rem;
}

@media (min-width: 768px) {
    .bento-card__stat-label {
        font-size: 3rem;
        margin-top: -1.5rem;
    }
}

.bento-card__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.875rem 1.5rem;
    background: var(--color-white);
    color: var(--color-dark);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.bento-card__cta:hover {
    background: var(--color-pink);
    color: var(--color-white);
    transform: translateX(5px);
}

.bento-card__cta svg {
    transition: transform 0.3s ease;
}

.bento-card__cta:hover svg {
    transform: translateX(4px);
}

/* Medium Cards */
.bento-card--medium {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.bento-card--medium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Beige card style */
.bento-card--beige {
    background: linear-gradient(135deg, #D4B896 0%, #C4A67C 100%);
    display: flex;
    align-items: stretch;
    min-height: 220px;
}

.bento-card__image-side {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.bento-card__image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.bento-card__text-side {
    flex: 1;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-card__stat-inline {
    display: flex;
    align-items: baseline;
    margin-bottom: var(--spacing-sm);
}

.bento-card__stat-big {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-white);
    line-height: 0.9;
}

.bento-card__stat-unit {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--color-white);
    opacity: 0.8;
    margin-left: 0.25rem;
}

.bento-card__title-small {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.bento-card__desc-small {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* Light card style */
.bento-card--light {
    background: var(--color-gray-100);
    min-height: 280px;
}

.bento-card__content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    height: 100%;
    padding: var(--spacing-xl);
    gap: var(--spacing-md);
}

.bento-card__text-part {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-card--light .bento-card__title-small {
    color: var(--color-dark);
    font-size: 1.5rem;
}

.bento-card__subtitle-small {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-sm);
}

.bento-card--light .bento-card__desc-small {
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-md);
}

.bento-card__link {
    display: inline-flex;
    align-items: center;
    color: var(--color-pink);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.bento-card__link:hover {
    color: var(--color-pink-dark);
    text-decoration: underline;
}

.bento-card__stat-part {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bento-card__stat-huge {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 4rem;
    font-weight: 400;
    font-style: italic;
    color: #C4A67C;
    line-height: 1;
}

@media (min-width: 768px) {
    .bento-card__stat-huge {
        font-size: 5rem;
    }
}

.bento-card__stat-label-small {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #C4A67C;
    opacity: 0.8;
}

.bento-card__image-part {
    grid-column: 2;
    grid-row: 2;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.bento-card__image-part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   CERTIFICATES GALLERY
   ========================================================================== */

.certificates-section {
    padding: var(--spacing-5xl) 0;
    background: linear-gradient(180deg, var(--color-gray-50) 0%, var(--color-white) 100%);
}

.certificates-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .certificates-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }
}

@media (min-width: 1024px) {
    .certificates-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

.certificate-item {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-gray-200);
    transition: all 0.4s ease;
    cursor: pointer;
    text-align: center;
}

.certificate-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-pink);
}

.certificate-image {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-lg);
    background: var(--color-gray-50);
    overflow: hidden;
}

.certificate-image img {
    max-width: 90%;
    max-height: 130px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.certificate-item:hover .certificate-image img {
    transform: scale(1.05);
}

.certificate-info h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.certificate-info p {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
}

/* Certificate zoom icon */
.certificate-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(229, 0, 113, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.certificate-image {
    position: relative;
}

.certificate-item:hover .certificate-zoom {
    opacity: 1;
}

/* Certificate Lightbox */
.certificate-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.certificate-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.certificate-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.certificate-lightbox__container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.certificate-lightbox__content {
    position: relative;
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.certificate-lightbox.active .certificate-lightbox__content {
    transform: scale(1);
}

.certificate-lightbox__image {
    display: block;
    max-width: 80vw;
    max-height: 70vh;
    object-fit: contain;
}

.certificate-lightbox__caption {
    padding: var(--spacing-lg) var(--spacing-xl);
    text-align: center;
    background: white;
}

.certificate-lightbox__caption h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.certificate-lightbox__caption p {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
}

.certificate-lightbox__close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.certificate-lightbox__close:hover {
    background: var(--color-pink);
    transform: rotate(90deg);
}

.certificate-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.certificate-lightbox__nav:hover {
    background: var(--color-pink);
}

.certificate-lightbox__nav--prev {
    left: -80px;
}

.certificate-lightbox__nav--next {
    right: -80px;
}

.certificate-lightbox__counter {
    margin-top: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Lightbox responsive */
@media (max-width: 768px) {
    .certificate-lightbox__nav--prev {
        left: 10px;
    }

    .certificate-lightbox__nav--next {
        right: 10px;
    }

    .certificate-lightbox__nav {
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.5);
    }

    .certificate-lightbox__close {
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.5);
    }

    .certificate-lightbox__image {
        max-width: 95vw;
        max-height: 60vh;
    }
}

/* ========================================
   WYCENA WIDGET SECTION
======================================== */
.wycena-widget-section {
    padding: var(--spacing-3xl) 0;
    padding-bottom: calc(var(--spacing-3xl) + 150px);
    background: linear-gradient(135deg, var(--color-gray-50) 0%, #fff 100%);
    position: relative;
    overflow: visible;
}

.wycena-widget {
    position: relative;
    background: #fff;
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08), 0 10px 30px rgba(229, 0, 113, 0.08);
    overflow: visible;
}

.wycena-widget__content {
    display: grid;
    grid-template-columns: 1fr 420px;
    min-height: 500px;
    overflow: visible;
}

.wycena-widget__text {
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wycena-widget__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-pink) 0%, #ff1493 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    width: fit-content;
}

.wycena-widget__badge svg {
    stroke: #fff;
}

.wycena-widget__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.wycena-widget__desc {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.wycena-widget__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wycena-widget__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-dark);
}

.wycena-widget__features svg {
    stroke: var(--color-pink);
    flex-shrink: 0;
}

.wycena-widget__form-wrapper {
    background: linear-gradient(135deg, var(--color-pink) 0%, #c4005e 100%);
    padding: var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border-radius: 0 var(--radius-2xl) var(--radius-2xl) 0;
}

.wycena-widget__form {
    width: 100%;
    max-width: 340px;
    overflow: visible;
}

.wycena-widget__form-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.wycena-widget__form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.wycena-widget__form-header p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Time Badge */
.wycena-widget__time-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: var(--spacing-sm);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    animation: fadeInUp 0.3s ease;
}

.wycena-widget__time-badge--fast {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.wycena-widget__time-badge--advisor {
    background: rgba(251, 191, 36, 0.2);
    color: #fde047;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.wycena-widget__time-badge svg {
    flex-shrink: 0;
}

/* Dynamic Fields */
.wycena-widget__dynamic-fields {
    animation: fadeInUp 0.3s ease;
}

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

.wycena-widget__form-group {
    margin-bottom: var(--spacing-md);
}

.wycena-widget__form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.wycena-widget__form-group select,
.wycena-widget__form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.wycena-widget__form-group select option {
    background: var(--color-dark);
    color: #fff;
}

.wycena-widget__form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.wycena-widget__form-group select:focus,
.wycena-widget__form-group input:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

/* Widget Autocomplete */
.widget-autocomplete {
    position: relative;
}

.widget-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-height: 320px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.widget-suggestions.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.widget-suggestions .suggestion-item {
    padding: 12px 16px;
    font-size: 0.9375rem;
    color: var(--color-dark);
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--color-gray-100);
}

.widget-suggestions .suggestion-item:last-child {
    border-bottom: none;
}

.widget-suggestions .suggestion-item:hover {
    background: var(--color-gray-50);
}

.wycena-widget__submit {
    width: 100%;
    padding: 16px 24px;
    background: #fff;
    color: var(--color-pink);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.wycena-widget__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wycena-widget__submit svg {
    stroke: var(--color-pink);
    transition: transform 0.3s ease;
}

.wycena-widget__submit:hover svg {
    transform: translateX(5px);
}

.wycena-widget__disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-md);
    text-align: center;
}

.wycena-widget__disclaimer svg {
    stroke: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.wycena-widget__hint {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
}

.wycena-widget__form-group input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.widget-suggestions .suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-suggestions .suggestion-item svg {
    stroke: var(--color-pink);
    flex-shrink: 0;
}

.widget-suggestions .suggestion-item--info {
    color: var(--color-gray-500);
    font-style: italic;
    cursor: default;
}

.widget-suggestions .suggestion-item--info:hover {
    background: transparent;
}

/* Wycena Widget Consent */
.wycena-widget__consent {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.wycena-widget__consent .checkbox-label {
    gap: var(--spacing-sm);
}

.wycena-widget__consent .checkbox-custom {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.wycena-widget__consent .checkbox-label input:checked + .checkbox-custom {
    background: var(--color-white);
    border-color: var(--color-white);
}

.wycena-widget__consent .checkbox-label input:checked + .checkbox-custom::after {
    border-color: var(--color-pink);
}

.wycena-widget__consent .checkbox-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    line-height: 1.4;
}

/* Wycena Widget Google Rating */
.wycena-widget__google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.wycena-widget__google-rating .google-logo {
    font-weight: 600;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.wycena-widget__google-rating .google-rating {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--color-white);
}

.wycena-widget__google-rating .google-stars {
    color: #fbbf24;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.wycena-widget__google-rating .google-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Wycena Widget Admin Info */
.wycena-widget__admin-info {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    text-align: center;
    margin-top: var(--spacing-md);
}

.wycena-widget__admin-info a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.wycena-widget__admin-info a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

/* Consultation Form Google Rating & Admin Info */
.consultation-form__google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.consultation-form__google-rating .google-logo {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-dark);
}

.consultation-form__google-rating .google-rating {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--color-dark);
}

.consultation-form__google-rating .google-stars {
    color: #fbbf24;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.consultation-form__google-rating .google-text {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.consultation-form__admin-info {
    font-size: 0.6875rem;
    color: var(--color-text-light);
    line-height: 1.5;
    text-align: center;
    margin-top: var(--spacing-md);
}

.consultation-form__admin-info a {
    color: var(--color-pink);
    font-weight: 500;
}

.consultation-form__admin-info a:hover {
    text-decoration: underline;
}

/* Decorative Elements */
.wycena-widget__decor {
    position: absolute;
    border-radius: 20px;
    transform: rotate(45deg);
    pointer-events: none;
}

.wycena-widget__decor--1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.1) 0%, transparent 100%);
    top: -50px;
    left: -50px;
}

.wycena-widget__decor--2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.05) 0%, transparent 100%);
    bottom: 30px;
    left: 40%;
}

/* Responsive */
@media (max-width: 900px) {
    .wycena-widget__content {
        grid-template-columns: 1fr;
    }

    .wycena-widget__text {
        padding: var(--spacing-xl);
        text-align: center;
    }

    .wycena-widget__features {
        align-items: center;
    }

    .wycena-widget__badge {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .wycena-widget__text {
        padding: var(--spacing-lg);
    }

    .wycena-widget__form-wrapper {
        padding: var(--spacing-lg);
    }

    .wycena-widget__title {
        font-size: 1.5rem;
    }
}

/* ========================================
   ABOUT SECTION - O nas
========================================= */
.about-section {
    padding: 100px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

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

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 480px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-pink);
    color: white;
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 4px;
}

.about-content {
    padding-left: 20px;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--color-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text {
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(229, 0, 113, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    color: var(--color-pink);
}

.about-feature span {
    font-weight: 500;
    color: var(--color-dark);
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about-grid {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

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

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .about-features {
        align-items: center;
    }

    .about-image-badge {
        bottom: -15px;
        right: 20px;
        padding: 15px 20px;
    }

    .about-badge-number {
        font-size: 2rem;
    }
}

/* ==========================================================================
   HOMEPAGE STYLES
   ========================================================================== */

/* Hero Homepage */
.hero--homepage {
    padding: 50px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fdf2f8 0%, var(--color-white) 100%);
}

.hero--homepage .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 0, 113, 0.1);
    color: var(--color-pink);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero--homepage .hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-pink);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero--homepage .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero--homepage .hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto 24px;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-pink);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-top: 4px;
}

/* Search Box Wrapper - inside hero */
.search-box-wrapper {
    padding-bottom: 0;
}

/* Search Section - legacy, keep for compatibility */
.search-section {
    padding-top: 20px;
    margin-bottom: 24px;
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 18px 24px 18px 56px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    background: var(--color-white);
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.search-input:focus {
    outline: none;
    border-color: var(--color-pink);
    box-shadow: 0 0 0 4px rgba(229, 0, 113, 0.1);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray-400);
}

/* Offices Grid */
.offices-section {
    padding-top: 30px;
    padding-bottom: 60px;
}

.offices-section .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-dark);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.office-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid var(--color-gray-100);
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-pink);
}

.office-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-gray-200) 100%);
    position: relative;
    overflow: hidden;
}

.office-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.office-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-pink);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.office-card-content {
    padding: 24px;
}

.office-card-city {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-card-city svg {
    color: var(--color-pink);
    width: 24px;
    height: 24px;
}

.office-card-address {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.office-card-address svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-gray-400);
}

.office-card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--color-gray-100);
}

.office-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-gray-700);
}

.office-feature svg {
    color: var(--color-pink);
    flex-shrink: 0;
}

.office-feature span {
    line-height: 1.3;
}

.office-card-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-pink);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-top: 16px;
}

.office-card-cta svg {
    transition: transform 0.3s;
}

.office-card:hover .office-card-cta svg {
    transform: translateX(5px);
}

/* Homepage About Section */
.about-section .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-section .about-image {
    position: relative;
}

.about-section .about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-section .about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.about-section .about-content p {
    color: var(--color-gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Homepage Partners Section */
.partners-section {
    padding: 60px 0;
    background: var(--color-gray-50);
}

.partners-title {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.7;
}

.partners-logos img {
    height: 30px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* No results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-gray-600);
    display: none;
}

.no-results.visible {
    display: block;
}

.no-results svg {
    width: 64px;
    height: 64px;
    color: var(--color-gray-400);
    margin-bottom: 16px;
}

.no-cities-message {
    text-align: center;
    padding: 40px;
    color: var(--color-gray-600);
    font-size: 1rem;
}

/* Homepage Responsive */
@media (max-width: 1024px) {
    .about-section .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero--homepage {
        padding: 30px 0 0;
    }

    .stats-bar {
        gap: 20px;
        margin-bottom: 0;
    }

    .search-section {
        padding-top: 16px;
    }

    .stat-value {
        font-size: 2rem;
    }

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

    .about-section .about-image img {
        height: 300px;
    }
}

/* ==========================================================================
   PAGE TEMPLATE - Regulamin, Polityka Prywatności, etc.
   ========================================================================== */

/* Page Hero */
.page-hero {
    position: relative;
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-burgundy) 100%);
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-hero__shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.page-hero__shape--1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.page-hero__shape--2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
}

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

.page-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.page-hero__back:hover {
    color: #fff;
    transform: translateX(-4px);
}

.page-hero__back svg {
    transition: transform 0.3s ease;
}

.page-hero__back:hover svg {
    transform: translateX(-4px);
}

.page-hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

/* Page Content */
.page-content {
    padding: 60px 0 80px;
    min-height: calc(100vh - 500px);
    background: var(--color-gray-50);
}

.page-content .container {
    max-width: 900px;
}

.page-content .page-article {
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.page-content .page-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-gray-200);
}

.page-content .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
}

.page-content .page-body {
    color: var(--color-gray-700);
    font-size: 1rem;
    line-height: 1.9;
}

.page-content .page-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-pink);
    display: inline-block;
}

.page-content .page-body h2:first-child {
    margin-top: 0;
}

.page-content .page-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 36px 0 14px;
}

.page-content .page-body h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 28px 0 12px;
}

.page-content .page-body p {
    margin-bottom: 18px;
}

.page-content .page-body ul,
.page-content .page-body ol {
    margin: 20px 0 28px 0;
    padding-left: 0;
}

.page-content .page-body ul {
    list-style: none;
}

.page-content .page-body ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.page-content .page-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--color-pink);
    border-radius: 50%;
}

.page-content .page-body ol {
    list-style: none;
    counter-reset: item;
}

.page-content .page-body ol li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 12px;
    counter-increment: item;
}

.page-content .page-body ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--color-pink);
}

.page-content .page-body li {
    margin-bottom: 10px;
}

.page-content .page-body a {
    color: var(--color-pink);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.page-content .page-body a:hover {
    color: var(--color-pink-dark);
    border-bottom-color: var(--color-pink-dark);
}

.page-content .page-body strong {
    font-weight: 600;
    color: var(--color-dark);
}

.page-content .page-body blockquote {
    margin: 32px 0;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(229, 0, 113, 0.05) 0%, rgba(163, 0, 89, 0.05) 100%);
    border-left: 4px solid var(--color-pink);
    border-radius: 12px;
    font-style: italic;
    color: var(--color-gray-700);
}

.page-content .page-body table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.page-content .page-body table th,
.page-content .page-body table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--color-gray-200);
}

.page-content .page-body table th {
    background: var(--color-pink);
    font-weight: 600;
    color: #fff;
}

.page-content .page-body table tr:last-child td {
    border-bottom: none;
}

.page-content .page-body table tr:nth-child(even) {
    background: var(--color-gray-50);
}

/* Page Footer with button */
.page-content .page-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-gray-200);
    text-align: center;
}

.page-content .page-footer .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.page-content .page-footer .btn svg {
    transition: transform 0.3s ease;
}

.page-content .page-footer .btn:hover svg {
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 40px;
    }

    .page-hero__title {
        font-size: 2rem;
    }

    .page-content {
        padding: 40px 0 60px;
    }

    .page-content .page-article {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .page-content .page-title {
        font-size: 1.75rem;
    }

    .page-content .page-body {
        font-size: 0.9375rem;
    }

    .page-content .page-body h2 {
        font-size: 1.25rem;
        margin: 36px 0 16px;
    }

    .page-content .page-body h3 {
        font-size: 1.125rem;
    }

    .page-content .page-footer {
        margin-top: 36px;
        padding-top: 24px;
    }
}

/* ==========================================================================
   MOBILE OVERFLOW FIX - Simple and precise
   ========================================================================== */

/* The root cause: decorative elements with negative positioning extend beyond viewport */
/* Solution: clip overflow at the wrapper level, not hide elements */

body {
    overflow-x: hidden;
}

.hero-bg {
    overflow: hidden;
}

/* Section titles fix */
@media (max-width: 991px) {
    .section-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Buttons fix */
    .btn {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    /* Images fix */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.875rem;
    }

    /* Stats grid - single column on very small screens */
    .stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Partner logos smaller */
    .partner-logo {
        max-width: calc(50% - 8px);
    }

}

/* ==========================================================================
   MOBILE RESPONSIVENESS FIXES - Precise targeting
   ========================================================================== */

/* Mobile devices (max 768px) */
@media (max-width: 768px) {

    /* ===== 1. HERO SHAPES - reduce size to prevent overflow ===== */
    .hero-shape-1 {
        width: 250px;
        height: 250px;
        top: -125px;
        right: -80px;
    }

    .hero-shape-2 {
        width: 150px;
        height: 150px;
        left: -50px;
    }

    .hero-shape-3 {
        width: 80px;
        height: 80px;
        right: 5%;
    }

    .hero-shape-4 {
        width: 60px;
        height: 60px;
    }

    .hero-shape-5 {
        width: 50px;
        height: 50px;
        right: 10%;
    }

    .hero-shape-6 {
        width: 200px;
        height: 200px;
        bottom: -100px;
        right: 10%;
    }

    /* ===== 2. HERO FORM - better mobile sizing ===== */
    .hero-form {
        padding: 1.25rem;
    }

    .hero-form--vertical {
        max-width: 100%;
    }

    .hero-form__fields {
        gap: 12px;
    }

    .hero-form__field {
        width: 100%;
    }

    .hero-form__label {
        font-size: 0.8125rem;
        margin-bottom: 4px;
    }

    .hero-form__input,
    .hero-form__select {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }

    .hero-form__submit {
        padding: 1rem;
        font-size: 1rem;
    }

    /* ===== 3. HERO CONTENT ===== */
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    /* ===== 4. PROCESS SECTION - hide decorations to prevent overflow ===== */
    .process-section::before,
    .process-section::after {
        display: none;
    }

    /* ===== 4. PROCESS CARDS - STICKY ANIMATION ON MOBILE ===== */
    .process-card {
        position: sticky;
        background: var(--color-white);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1), 0 20px 50px rgba(0, 0, 0, 0.15);
        margin-bottom: 16px;
    }

    .process-card[data-step="1"] {
        top: 70px;
        z-index: 1;
    }
    .process-card[data-step="2"] {
        top: 90px;
        z-index: 2;
    }
    .process-card[data-step="3"] {
        top: 110px;
        z-index: 3;
    }
    .process-card[data-step="4"] {
        top: 130px;
        z-index: 4;
    }

    .process-card__image {
        min-height: 160px;
    }

    .process-card__content {
        padding: 20px;
    }

    .process-card__title {
        font-size: 1.125rem;
    }

    .process-card__description {
        font-size: 0.875rem;
    }

    .process-card__features li {
        font-size: 0.8125rem;
    }

    /* ===== 5. URGENCY BAR adjustments ===== */
    body.urgency-bar-visible .hero {
        padding-top: 140px;
    }

    /* ===== 6. FLOATING ELEMENTS - more spacing between them ===== */
    .floating-phone {
        bottom: 90px;
        right: 16px;
    }

    .back-to-top {
        bottom: 20px;
        right: 16px;
    }

    /* ===== 7. HOMESTAGING SLIDER - fix image cropping ===== */
    .before-after-container {
        touch-action: pan-y;
    }

    .before-image img,
    .after-image img {
        height: 320px;
        object-fit: cover;
        object-position: center center;
    }

    /* Before image uses clip-path, needs full width */
    .before-image {
        width: 100%;
        clip-path: inset(0 50% 0 0);
    }

    .before-image img {
        width: 100%;
        height: 100%;
    }

    .before-label,
    .after-label {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    /* ===== 7. HEADER height ===== */
    .header .container {
        height: 70px;
    }

    /* ===== 8. STATS SECTION ===== */
    .stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* ===== 9. PROBLEMS SECTION ===== */
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .problem-card {
        padding: 20px;
    }

    /* ===== 10. BENEFITS SECTION ===== */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-card {
        padding: 20px;
    }

    /* ===== 11. REVIEWS SECTION ===== */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-card {
        padding: 20px;
    }

    /* ===== 12. SOLD SECTION ===== */
    .sold-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* ===== 13. SERVICES SECTION ===== */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 24px;
    }

    /* ===== 14. CERTIFICATES SECTION ===== */
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* ===== 15. ABOUT SECTION ===== */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image {
        order: -1;
        max-width: 100%;
    }

    /* ===== 16. CTA SECTION ===== */
    .cta-content {
        padding: 32px 20px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    /* ===== 17. HOMESTAGING SECTION ===== */
    .homestaging-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* ===== 18. CONTACT SECTION ===== */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Extra small devices (max 480px) */
@media (max-width: 480px) {

    /* Hero even smaller */
    .hero {
        padding-top: 90px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-form {
        padding: 1rem;
    }

    .hero-form__input,
    .hero-form__select {
        padding: 0.75rem 0.875rem;
        font-size: 0.9375rem;
    }

    /* Process cards */
    .process-card__content {
        padding: 20px;
    }

    .process-card__step-badge {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    /* Stats smaller */
    .stat-number {
        font-size: 1.25rem;
    }

    /* Floating elements */
    .floating-phone {
        width: 50px;
        height: 50px;
    }

    .floating-phone svg {
        width: 22px;
        height: 22px;
    }

    .back-to-top {
        width: 44px;
        height: 44px;
    }
}

/* ==========================================================================
   OVERFLOW CONTAINMENT - Prevent horizontal scroll from decorative elements
   ========================================================================== */

/* Ensure all sections with decorative pseudo-elements have overflow: hidden */
.problems-section,
.benefits-section,
.reviews-section,
.sold-section,
.cta-section,
.about-section,
.certificates-section,
.partners-section,
.contact-section,
.faq-section {
    overflow: hidden;
}

/* Wycena widget - contain decorations */
@media (max-width: 768px) {
    .wycena-widget {
        overflow: hidden;
    }

    .wycena-widget__content {
        overflow: hidden;
    }

    .wycena-widget__decor--1,
    .wycena-widget__decor--2 {
        display: none;
    }
}

/* ==========================================================================
   ADDITIONAL MOBILE FIXES
   ========================================================================== */

@media (max-width: 768px) {
    /* ===== CERTIFICATE LIGHTBOX - better mobile navigation ===== */
    .certificate-lightbox__container {
        max-width: 100vw;
        max-height: 100vh;
        padding: 60px 10px 80px;
    }

    .certificate-lightbox__content {
        border-radius: 12px;
    }

    .certificate-lightbox__image {
        max-width: 100%;
        max-height: 55vh;
    }

    .certificate-lightbox__caption {
        padding: 12px 16px;
    }

    .certificate-lightbox__caption h4 {
        font-size: 1rem;
    }

    .certificate-lightbox__caption p {
        font-size: 0.8125rem;
    }

    /* Navigation arrows - big, visible, pink */
    .certificate-lightbox__nav {
        width: 54px;
        height: 54px;
        background: var(--color-pink);
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(229, 0, 113, 0.4);
        z-index: 100;
    }

    .certificate-lightbox__nav--prev {
        left: 12px;
    }

    .certificate-lightbox__nav--next {
        right: 12px;
    }

    .certificate-lightbox__nav svg {
        width: 28px;
        height: 28px;
        color: white;
    }

    .certificate-lightbox__nav:active {
        transform: translateY(-50%) scale(0.95);
        background: var(--color-pink-dark);
    }

    /* Close button - big X, visible */
    .certificate-lightbox__close {
        position: fixed;
        top: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 101;
    }

    .certificate-lightbox__close svg {
        width: 24px;
        height: 24px;
        color: var(--color-dark);
    }

    .certificate-lightbox__close:active {
        transform: scale(0.95);
        background: var(--color-pink);
    }

    .certificate-lightbox__close:active svg {
        color: white;
    }

    /* Counter at bottom */
    .certificate-lightbox__counter {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.9375rem;
        font-weight: 600;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.95);
        color: var(--color-dark);
        border-radius: 25px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    /* ===== CONTACT FORM - wider fields on mobile ===== */
    .contact-form-wrapper {
        padding: 24px 16px;
        margin: 0 -8px;
        border-radius: 16px;
    }

    .contact-form .form-group {
        margin-bottom: 16px;
    }

    .contact-form input,
    .contact-form select {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .contact-form .form-row-2 {
        gap: 12px;
    }

    .form-group-checkbox {
        margin-top: 16px;
        margin-bottom: 20px;
    }

    .checkbox-label {
        gap: 12px;
        font-size: 0.8125rem;
        line-height: 1.4;
    }

    .checkbox-custom {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px;
        flex-shrink: 0;
    }

    .contact-form .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }

    /* ===== SELECT/DROPDOWN STYLING ON MOBILE ===== */
    select,
    .wycena-select,
    .hero-form__select,
    .hero-form select,
    .wycena-widget__form-group select,
    .contact-form select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        padding: 14px 44px 14px 16px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
        font-weight: 500;
        line-height: 1.4;
        border-radius: 12px !important;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        background-size: 20px;
        cursor: pointer;
    }

    /* Dark background selects (wycena widget) */
    .wycena-widget__form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-color: rgba(255, 255, 255, 0.1);
    }

    /* Hero form select */
    .hero-form__select,
    .hero-form select {
        background-color: var(--color-white);
        border: 2px solid var(--color-gray-200);
        min-height: 52px;
    }

    .hero-form__select:focus,
    .hero-form select:focus {
        border-color: var(--color-pink);
        box-shadow: 0 0 0 3px rgba(229, 0, 113, 0.1);
    }

    /* Contact form select */
    .contact-form select {
        background-color: var(--color-white);
        border: 1px solid var(--color-gray-200);
        min-height: 52px;
    }

    .contact-form select:focus {
        border-color: var(--color-pink);
        box-shadow: 0 0 0 3px rgba(229, 0, 113, 0.1);
    }

    /* Select options styling */
    select option {
        padding: 12px 16px;
        font-size: 16px;
        background: white;
        color: var(--color-dark);
    }

    /* ===== FLOATING BUTTONS - MORE SPACING ===== */
    .floating-phone {
        bottom: 100px !important;
        right: 16px;
    }

    .back-to-top {
        bottom: 24px !important;
        right: 16px;
    }
}

/* ===== BEFORE/AFTER SLIDER FIX ===== */
.before-image,
.before-after-slider__before {
    width: 100% !important;
    clip-path: inset(0 50% 0 0);
}

/* ===== CONSENT CHECKBOXES (CF7 + fallback form) ===== */
.freedom-consents {
    margin-top: 12px;
    padding: 12px;
    background: rgba(239, 0, 129, 0.03);
    border: 1px solid rgba(239, 0, 129, 0.1);
    border-radius: 10px;
}
.freedom-consents .consent-header {
    font-size: 12px;
    margin-bottom: 4px;
    color: var(--text-primary, #1a1a2e);
}
.freedom-consents .consent-info {
    font-size: 10px;
    color: var(--text-secondary, #64748b);
    margin-bottom: 8px;
    line-height: 1.4;
}
.freedom-consents .consent-select-all,
.freedom-consents .consent-select-all-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary, #EF0081);
    cursor: pointer;
    padding: 6px 8px;
    background: rgba(239, 0, 129, 0.06);
    border-radius: 6px;
    margin-bottom: 6px;
    transition: background 0.2s;
}
.freedom-consents .consent-select-all:hover,
.freedom-consents .consent-select-all-wrapper:hover {
    background: rgba(239, 0, 129, 0.1);
}
.freedom-consents .consent-select-all-wrapper .wpcf7-list-item-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary, #EF0081);
}
.freedom-consents .consent-items {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.freedom-consents .consent-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 10px;
    color: var(--text-secondary, #64748b);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    line-height: 1.4;
    transition: background 0.2s;
}
.freedom-consents .consent-item:hover {
    background: rgba(0, 0, 0, 0.02);
}
.freedom-consents .consent-tooltip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    min-width: 14px;
    font-size: 10px;
    color: var(--primary, #EF0081);
    cursor: help;
    position: relative;
    margin-left: 2px;
    flex-shrink: 0;
}
.freedom-consents .consent-tooltip:hover::after {
    content: attr(title);
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    color: #fff;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 10px;
    line-height: 1.4;
    width: 240px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    pointer-events: none;
}
.freedom-consents .consent-tooltip:hover::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1a1a2e;
    z-index: 101;
}
/* CF7 checkbox/acceptance styling within consents */
.freedom-consents .wpcf7-list-item {
    margin: 0;
}
.freedom-consents .wpcf7-list-item-label {
    font-size: 10px;
    color: var(--text-secondary, #64748b);
    line-height: 1.4;
}
.freedom-consents .wpcf7-form-control-wrap {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    flex: 1;
}
.freedom-consents input[type="checkbox"] {
    width: 14px;
    height: 14px;
    min-width: 14px;
    accent-color: var(--primary, #EF0081);
    cursor: pointer;
    margin-top: 1px;
}
/* Last acceptance (regulamin) compact */
.freedom-consents > .wpcf7-form-control-wrap {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(239, 0, 129, 0.08);
}
