* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 102, 255, 0.3);
}

:root {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #3399ff;
    --secondary: #00d4ff;
    --danger: #ff3366;
    --success: #00ff88;
    --warning: #ffaa00;
    --dark: #0a0e27;
    --dark-light: #1a1f3a;
    --light: #f0f4f8;
    --white: #ffffff;
    --text: #1a1f3a;
    --text-light: #6b7c93;
    --gradient-1: linear-gradient(135deg, #0066ff 0%, #00d4ff 50%, #0066ff 100%);
    --gradient-2: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    --gradient-3: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    background: var(--white);
}

.container-ultra {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Optymalizacja padding na mobile */
@media (max-width: 768px) {
    .container-ultra {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container-ultra {
        padding: 0 12px;
    }
}

@media (max-width: 360px) {
    .container-ultra {
        padding: 0 10px;
    }
}

/* Navigation Ultra */
.navbar-ultra {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* Scrolled State */
.navbar-ultra.scrolled {
    padding: 15px 0;
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.4);
    background: rgba(10, 14, 39, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-container-ultra {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-ultra {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    transition: transform 0.3s;
    margin-left: -10px; /* Przesunięcie logo bardziej na lewo, dopasowanie do menu */
}

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

.logo-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

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

.logo-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links-ultra {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.lang-btn:hover {
    border-color: var(--secondary);
    background: rgba(0, 212, 255, 0.1);
    transform: scale(1.1);
}

.lang-btn.active {
    border-color: var(--secondary);
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.flag-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.nav-link-ultra {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s;
}

.nav-link-ultra::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

.nav-link-ultra:hover::after {
    width: 100%;
}

.nav-link-ultra:hover {
    color: var(--secondary);
}

/* Active State */
.nav-link-ultra.active {
    color: var(--secondary);
}

.nav-link-ultra.active::after {
    width: 100%;
}

.nav-link-ultra.active::before {
    content: '●';
    position: absolute;
    left: -15px;
    color: var(--secondary);
    font-size: 0.8rem;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

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

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

.hamburger-menu:hover span {
    background: var(--secondary);
}

.nav-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: var(--gradient-3);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    margin-left: 20px;
}

.nav-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
}

.nav-cta-button svg {
    transition: transform 0.3s;
}

.nav-cta-button:hover svg {
    transform: translateX(3px);
}

/* Smooth Scroll Offset */
section {
    scroll-margin-top: 100px;
}

/* Hero Ultra */
.hero-ultra {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    color: var(--white);
    overflow: hidden;
    padding-top: 100px;
}

.hero-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,200 Q300,100 600,200 T1200,200 L1200,600 L0,600 Z" fill="rgba(0,212,255,0.1)"/><path d="M0,300 Q400,200 800,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(0,102,255,0.1)"/></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.5;
    animation: water-shimmer 10s infinite;
}

@keyframes water-shimmer {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-10px); opacity: 0.7; }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.1), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(0,212,255,0.1), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.1), transparent);
    background-size: 200% 200%;
    animation: particles 20s infinite;
}

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

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0,102,255,0.3) 0%, transparent 70%);
}

.hero-content-ultra {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 60px 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge-ultra {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 51, 102, 0.2);
    border: 2px solid var(--danger);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.badge-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--danger);
    opacity: 0.3;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.badge-text {
    position: relative;
    z-index: 1;
}

.hero-title-ultra {
    font-size: clamp(2.5rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.title-line-1 {
    display: block;
    font-size: 0.4em;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 10px;
}

.title-line-2 {
    display: block;
    margin: 20px 0;
}

.number-glow {
    color: var(--danger);
    text-shadow: 0 0 40px rgba(255, 51, 102, 0.8), 0 0 80px rgba(255, 51, 102, 0.4);
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 40px rgba(255, 51, 102, 0.8), 0 0 80px rgba(255, 51, 102, 0.4); }
    50% { text-shadow: 0 0 60px rgba(255, 51, 102, 1), 0 0 120px rgba(255, 51, 102, 0.6); }
}

.title-main {
    color: var(--secondary);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.title-line-3 {
    display: block;
    font-size: 0.35em;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 10px;
}

.hero-description-ultra {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 60px;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
}

.hero-stats-ultra {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

.stat-number-ultra {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--secondary);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label-ultra {
    font-size: 1rem;
    opacity: 0.85;
    font-weight: 500;
}

.hero-cta-ultra {
    margin-top: 50px;
}

.cta-button-ultra {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: var(--gradient-3);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button-ultra::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;
}

.cta-button-ultra:hover::before {
    left: 100%;
}

.cta-button-ultra:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.4);
}

.cta-button-ultra svg {
    transition: transform 0.3s;
}

.cta-button-ultra:hover svg {
    transform: translateX(5px);
}

.water-waves-ultra {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.wave-ultra {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    border-radius: 50%;
    animation: wave-ultra-anim 20s infinite linear;
}

.wave-1 {
    animation-delay: 0s;
    opacity: 0.8;
    background: rgba(0, 212, 255, 0.15);
}

.wave-2 {
    animation-delay: -7s;
    opacity: 0.6;
    background: rgba(0, 102, 255, 0.12);
    height: 80%;
}

.wave-3 {
    animation-delay: -14s;
    opacity: 0.4;
    background: rgba(0, 255, 136, 0.1);
    height: 60%;
}

@keyframes wave-ultra-anim {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    50% { transform: translateX(-25%) translateY(-20px) rotate(180deg); }
    100% { transform: translateX(-50%) translateY(0) rotate(360deg); }
}

/* Dodatkowe efekty wody */
.hero-ultra::after {
    content: '';
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    height: 150px;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(0,212,255,0.1) 50%, transparent 100%);
    animation: water-ripple 4s infinite;
}

@keyframes water-ripple {
    0%, 100% { transform: scaleY(1); opacity: 0.3; }
    50% { transform: scaleY(1.2); opacity: 0.6; }
}

/* Problem Ultra */
.problem-ultra {
    padding: 0;
    background: 
        linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%),
        url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.problem-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(255,51,102,0.2) 50%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.problem-ultra::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,51,102,0.05) 2px, rgba(255,51,102,0.05) 4px);
    opacity: 0.3;
    pointer-events: none;
}

.problem-shock-image {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    margin-bottom: 50px;
}

.problem-shock-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--light) 0%, transparent 100%);
    z-index: 1;
}

.shock-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.4) saturate(1.6) hue-rotate(10deg);
    animation: shock-pulse 4s infinite;
    transform: scale(1.1);
}

.shock-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255,51,102,0.3) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(255,170,0,0.2) 0%, transparent 60%);
}

@keyframes shock-pulse {
    0%, 100% { transform: scale(1); filter: brightness(0.4) contrast(1.3) saturate(1.5); }
    50% { transform: scale(1.05); filter: brightness(0.35) contrast(1.4) saturate(1.6); }
}

.shock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,51,102,0.7) 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.shock-text {
    color: var(--white);
    z-index: 2;
}

.shock-text h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255,51,102,0.8), 0 0 60px rgba(255,51,102,0.4);
    font-family: 'Montserrat', sans-serif;
    animation: shock-text-pulse 2s infinite;
}

@keyframes shock-text-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.shock-text p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
    opacity: 0.95;
    margin-bottom: 30px;
}

.contaminants-visual {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contaminant-item {
    font-size: 4rem;
    animation: float-contaminant 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255,51,102,0.8));
    position: relative;
}

.contaminant-item[data-type="metal"] {
    animation-delay: 0s;
    filter: drop-shadow(0 0 25px rgba(255,170,0,0.9)) drop-shadow(0 0 40px rgba(255,170,0,0.6));
}

.contaminant-item[data-type="bacteria"] {
    animation-delay: 1s;
    filter: drop-shadow(0 0 25px rgba(255,51,102,0.9)) drop-shadow(0 0 40px rgba(255,51,102,0.6));
}

.contaminant-item[data-type="pesticide"] {
    animation-delay: 2s;
    filter: drop-shadow(0 0 25px rgba(255,170,0,0.9)) drop-shadow(0 0 40px rgba(255,170,0,0.6));
}

.contaminant-item[data-type="plastic"] {
    animation-delay: 3s;
    filter: drop-shadow(0 0 25px rgba(147,197,253,0.9)) drop-shadow(0 0 40px rgba(147,197,253,0.6));
}

@keyframes float-contaminant {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.9;
    }
    25% { 
        transform: translateY(-15px) translateX(10px) scale(1.1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-10px) translateX(-5px) scale(1.05);
        opacity: 0.95;
    }
    75% { 
        transform: translateY(-20px) translateX(5px) scale(1.15);
        opacity: 1;
    }
}

.contaminant-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,51,102,0.3) 0%, transparent 70%);
    animation: pulse-ring 2s ease-in-out infinite;
    z-index: -1;
}

.contaminant-item[data-type="metal"]::after {
    background: radial-gradient(circle, rgba(255,170,0,0.3) 0%, transparent 70%);
}

.contaminant-item[data-type="bacteria"]::after {
    background: radial-gradient(circle, rgba(255,51,102,0.3) 0%, transparent 70%);
}

.contaminant-item[data-type="pesticide"]::after {
    background: radial-gradient(circle, rgba(255,170,0,0.3) 0%, transparent 70%);
}

.contaminant-item[data-type="plastic"]::after {
    background: radial-gradient(circle, rgba(147,197,253,0.3) 0%, transparent 70%);
}

@keyframes pulse-ring {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.problem-ultra .container-ultra {
    padding: 60px 20px 80px;
    position: relative;
    z-index: 1;
}

/* Drastyczne Statystyki */
.drastic-stats-section {
    margin: 50px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(255,51,102,0.1) 0%, rgba(255,170,0,0.1) 100%);
    border-radius: 30px;
    border: 3px solid rgba(255,51,102,0.3);
}

.drastic-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--danger);
    margin-bottom: 50px;
    text-shadow: 0 0 20px rgba(255,51,102,0.3);
    font-family: 'Montserrat', sans-serif;
}

.drastic-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.drastic-stat-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(255,51,102,0.2);
    border-left: 5px solid var(--danger);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.drastic-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,51,102,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.drastic-stat-card:hover::before {
    opacity: 1;
}

.drastic-stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(255,51,102,0.4);
    border-left-color: #ff0033;
}

.drastic-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--danger);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 0 20px rgba(255,51,102,0.3);
    animation: drastic-pulse 2s infinite;
}

@keyframes drastic-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.drastic-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.drastic-detail {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.section-header-ultra {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge-ultra {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.danger-badge {
    background: rgba(255, 51, 102, 0.15);
    color: var(--danger);
    border: 2px solid var(--danger);
}

.success-badge {
    background: rgba(0, 255, 136, 0.25);
    color: #00cc6a;
    border: 2px solid #00cc6a;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
}

.section-title-ultra {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
}

.problem-ultra .section-title-ultra {
    color: var(--white);
    text-shadow: 0 0 30px rgba(255,51,102,0.5), 0 0 60px rgba(255,51,102,0.3);
}

.section-subtitle-ultra {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.problem-ultra .section-subtitle-ultra {
    color: rgba(255, 255, 255, 0.9);
}

.problems-grid-ultra {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card-ultra {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    border-top: 4px solid;
}

.problem-card-ultra[data-risk="high"] {
    border-top-color: var(--danger);
}

.problem-card-ultra[data-risk="medium"] {
    border-top-color: var(--warning);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,102,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.problem-card-ultra:hover .card-glow {
    opacity: 1;
}

.problem-card-ultra:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

.problem-icon-ultra {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.risk-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.high-risk {
    background: rgba(255, 51, 102, 0.15);
    color: var(--danger);
}

.medium-risk {
    background: rgba(255, 170, 0, 0.15);
    color: var(--warning);
}

.problem-card-ultra h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
}

.problem-card-ultra p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1rem;
}

.problem-stats-mini {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light);
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.alert-box-ultra {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-left: 6px solid var(--warning);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    gap: 25px;
    align-items: start;
    box-shadow: 0 10px 40px rgba(255, 170, 0, 0.2);
}

.alert-icon-ultra {
    font-size: 3rem;
    flex-shrink: 0;
    animation: shake 3s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.alert-content-ultra {
    flex: 1;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--dark);
}

.alert-content-ultra strong {
    color: var(--danger);
    font-weight: 700;
}

/* Solution Ultra */
.solution-ultra {
    padding: 80px 20px;
    background: 
        linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%),
        url('https://images.unsplash.com/photo-1505142468610-359e7d316be0?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.solution-ultra::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: 
        linear-gradient(to top, rgba(59, 130, 246, 0.4) 0%, rgba(147, 197, 253, 0.2) 50%, transparent 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="waterGrad" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:rgba(59,130,246,0.3);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(147,197,253,0.2);stop-opacity:1" /></linearGradient></defs><path d="M0,300 Q200,250 400,300 T800,300 T1200,300 L1200,600 L0,600 Z" fill="url(%23waterGrad)"/><path d="M0,350 Q300,300 600,350 T1200,350 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.15)"/><path d="M0,400 Q250,360 500,400 T1000,400 T1200,400 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    background-position: center;
    animation: water-flow 25s ease-in-out infinite;
    z-index: 0;
}

@keyframes water-flow {
    0%, 100% { 
        transform: translateX(0) translateY(0);
        background-position: 0% 0%, 0% 0%;
    }
    50% { 
        transform: translateX(-20px) translateY(-5px);
        background-position: 100% 50%, 50% 50%;
    }
}

.sunrise-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.sun-reflection {
    position: absolute;
    top: 58%;
    right: 15%;
    transform: translate(50%, -50%) scaleY(0.25) scaleX(1.3);
    width: 200px;
    height: 200px;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(255, 255, 200, 0.5) 0%, rgba(255, 220, 100, 0.35) 20%, rgba(255, 200, 0, 0.25) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.55;
    animation: reflection-ripple 5s ease-in-out infinite;
    z-index: 0;
}

@keyframes reflection-ripple {
    0%, 100% { 
        transform: translate(50%, -50%) scaleY(0.25) scaleX(1.3);
        opacity: 0.55;
    }
    50% { 
        transform: translate(48%, -52%) scaleY(0.3) scaleX(1.4);
        opacity: 0.65;
    }
}

.sun {
    position: absolute;
    top: 25%;
    right: 15%;
    transform: translate(50%, -50%);
    width: 200px;
    height: 200px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 200, 0.85) 12%, #ffd700 28%, #ffa500 55%, rgba(255, 140, 0, 0.6) 80%, transparent 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 1),
        0 0 100px rgba(255, 200, 0, 0.8),
        0 0 150px rgba(255, 180, 0, 0.6),
        0 0 200px rgba(255, 160, 0, 0.4),
        inset -15px -15px 30px rgba(255, 200, 0, 0.5),
        inset 15px 15px 30px rgba(255, 255, 255, 0.4);
    filter: blur(0.5px);
    animation: sun-float 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes sun-float {
    0%, 100% { 
        transform: translate(50%, -50%) scale(1);
        opacity: 0.98;
        filter: blur(0.5px) brightness(1);
    }
    50% { 
        transform: translate(48%, -52%) scale(1.03);
        opacity: 1;
        filter: blur(0.3px) brightness(1.08);
    }
}

.sun-rays {
    position: absolute;
    top: 25%;
    right: 15%;
    transform: translate(50%, -50%);
    width: 320px;
    height: 320px;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(255, 255, 200, 0.25) 6deg, 
            transparent 12deg,
            rgba(255, 240, 150, 0.2) 18deg,
            transparent 24deg,
            rgba(255, 220, 100, 0.15) 30deg,
            transparent 36deg);
    border-radius: 50%;
    animation: rays-rotate 35s linear infinite;
    z-index: 0;
    opacity: 0.6;
}

.sun-rays-2 {
    width: 400px;
    height: 400px;
    animation: rays-rotate 45s linear infinite reverse;
    background: 
        conic-gradient(from 20deg at 50% 50%, 
            transparent 0deg, 
            rgba(255, 230, 120, 0.18) 10deg, 
            transparent 20deg,
            rgba(255, 210, 80, 0.12) 30deg,
            transparent 40deg);
    opacity: 0.4;
}

.sun-rays-3 {
    width: 480px;
    height: 480px;
    animation: rays-rotate 55s linear infinite;
    background: 
        radial-gradient(circle, transparent 38%, rgba(255, 200, 0, 0.12) 43%, transparent 48%);
    opacity: 0.3;
}

@keyframes rays-rotate {
    from { transform: translate(50%, -50%) rotate(0deg); }
    to { transform: translate(50%, -50%) rotate(360deg); }
}

.solution-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 30%, transparent 60%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 0;
}

.solution-header {
    position: relative;
    z-index: 2;
}

.solution-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.6);
    font-weight: 900;
}

.solution-ultra .section-subtitle-ultra {
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6), 0 4px 25px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 25px;
    border-radius: 10px;
    display: inline-block;
    backdrop-filter: blur(8px);
    font-weight: 600;
}

.product-showcase-ultra {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.product-visual-ultra {
    position: relative;
    text-align: center;
}

.product-badge-ultra {
    position: absolute;
    top: -30px;
    right: -30px;
    background: var(--gradient-3);
    color: var(--dark);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    animation: float-badge 3s ease-in-out infinite;
}

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

.badge-star {
    font-size: 1.2rem;
}

.product-container-ultra {
    position: relative;
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 250, 255, 0.95) 50%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), 0 0 100px rgba(59, 130, 246, 0.2);
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.product-image-ultra {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 90%;
    object-fit: contain;
    z-index: 2;
    opacity: 1;
    filter: drop-shadow(0 15px 40px rgba(0,0,0,0.4)) brightness(1.1);
    animation: product-float 3s ease-in-out infinite;
}

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

.product-container-ultra::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.3) 0%, transparent 50%);
    animation: water-reflect 8s infinite;
}

@keyframes water-reflect {
    0%, 100% { transform: rotate(0deg) translate(0, 0); }
    25% { transform: rotate(90deg) translate(20px, -20px); }
    50% { transform: rotate(180deg) translate(0, 0); }
    75% { transform: rotate(270deg) translate(-20px, 20px); }
}

.product-glow-ultra {
    position: absolute;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(255,215,0,0.4) 30%, transparent 70%);
    animation: rotate-glow 15s infinite linear;
}

@keyframes rotate-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.product-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(3px 3px at 30% 40%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 70% 60%, rgba(255,255,255,0.2), transparent);
    animation: particles-float 10s infinite;
}

@keyframes particles-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.product-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.product-logo-ultra {
    font-size: 5rem;
    font-weight: 900;
    background: 
        repeating-linear-gradient(0deg, 
            transparent 0px,
            transparent 2px,
            rgba(6, 182, 212, 0.3) 2px,
            rgba(6, 182, 212, 0.3) 4px,
            transparent 4px,
            transparent 6px),
        repeating-linear-gradient(90deg,
            #06b6d4 0%,
            #0891b2 15%,
            #0e7490 30%,
            #155e75 45%,
            #0e7490 60%,
            #0891b2 75%,
            #06b6d4 90%,
            #67e8f9 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><defs><linearGradient id="wave1" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="50%" style="stop-color:rgba(255,255,255,0.4);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /></linearGradient></defs><path d="M0,100 Q100,80 200,100 T400,100 L400,200 L0,200 Z" fill="url(%23wave1)"/><path d="M0,120 Q150,100 300,120 T400,120 L400,200 L0,200 Z" fill="url(%23wave1)" opacity="0.6"/><path d="M0,140 Q120,120 240,140 T400,140 L400,200 L0,200 Z" fill="url(%23wave1)" opacity="0.4"/></svg>');
    background-size: 100% 100%, 300% 200%, 400px 200px;
    background-position: 0% 0%, 0% 0%, 0% 0%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    animation: water-flow-inside 10s linear infinite, water-waves 8s ease-in-out infinite, logo-glow 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
    position: relative;
}

@keyframes water-flow-inside {
    0% { 
        background-position: 0% 0%, 0% 0%, 0% 0%;
    }
    100% { 
        background-position: 0% 0%, 100% 0%, 100% 0%;
    }
}

@keyframes water-waves {
    0%, 100% { 
        background-position: 0% 0%, 0% 0%, 0% 0%;
        transform: translateY(0);
    }
    25% { 
        background-position: 0% 0%, 25% 0%, 25% -5px;
        transform: translateY(-1px);
    }
    50% { 
        background-position: 0% 0%, 50% 0%, 50% 0%;
        transform: translateY(0);
    }
    75% { 
        background-position: 0% 0%, 75% 0%, 75% 5px;
        transform: translateY(1px);
    }
}

@keyframes logo-glow {
    0%, 100% { 
        filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 30px rgba(6, 182, 212, 0.5));
    }
    50% { 
        filter: drop-shadow(0 2px 15px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 50px rgba(6, 182, 212, 0.7));
    }
}

.product-logo-ultra::before {
    content: 'eSpring™';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: 
        repeating-linear-gradient(90deg,
            transparent 0px,
            rgba(255, 255, 255, 0.3) 50px,
            transparent 100px);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: water-reflection 4s linear infinite;
    z-index: -1;
    filter: blur(0.5px);
}

@keyframes water-reflection {
    0% { 
        transform: translateX(-100%);
        opacity: 0;
    }
    10% { 
        opacity: 0.7;
    }
    90% { 
        opacity: 0.7;
    }
    100% { 
        transform: translateX(100%);
        opacity: 0;
    }
}

.product-tagline {
    font-size: 1.2rem;
    background: 
        repeating-linear-gradient(0deg,
            transparent 0px,
            rgba(103, 232, 249, 0.2) 1px,
            transparent 2px),
        linear-gradient(90deg, #67e8f9 0%, #22d3ee 30%, #06b6d4 60%, #0891b2 100%);
    background-size: 100% 100%, 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
    font-weight: 600;
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.4));
    animation: tagline-flow 7s linear infinite;
}

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

.product-features-ultra {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

@media (max-width: 768px) {
    .product-features-ultra {
        grid-template-columns: 1fr;
    }
}

.section-order-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.order-button-section {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    background: var(--gradient-3);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4), 0 0 40px rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.order-button-section::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;
}

.order-button-section:hover::before {
    left: 100%;
}

.order-button-section:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.5), 0 0 60px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
}

.order-button-section svg {
    transition: transform 0.3s;
}

.order-button-section:hover svg {
    transform: translateX(5px);
}

.feature-item-ultra {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s;
    border-top: 4px solid #ffd700;
}

.feature-item-ultra:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    border-top-color: #ffed4e;
    background: rgba(255, 255, 255, 1);
}

.feature-icon-ultra {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.feature-content-ultra {
    width: 100%;
}

.feature-content-ultra h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0a0e27;
    font-weight: 700;
}

.feature-content-ultra p {
    color: #2d3748;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* Calculator Ultra */
.calculator-ultra {
    padding: 140px 20px;
    background: var(--white);
}

.calculator-wrapper-ultra {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.calc-tabs-ultra {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.calc-tab-ultra {
    flex: 1;
    padding: 20px;
    border: 3px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.calc-tab-ultra.active,
.calc-tab-ultra:hover {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.tab-icon {
    font-size: 1.5rem;
}

.calc-display-ultra {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    min-height: 250px;
}

.calc-placeholder-ultra {
    text-align: center;
    padding: 50px;
    color: var(--text-light);
}

.calc-icon-ultra {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* Benefits & Solution Ultra */
.benefits-solution-ultra {
    padding: 80px 20px;
    background: 
        linear-gradient(180deg, rgba(167, 243, 208, 0.15) 0%, rgba(103, 232, 249, 0.2) 50%, rgba(56, 189, 248, 0.15) 100%),
        url('https://images.unsplash.com/photo-1505142468610-359e7d316be0?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.benefits-solution-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, 
            rgba(167, 243, 208, 0.15) 0%, 
            rgba(103, 232, 249, 0.2) 30%, 
            rgba(56, 189, 248, 0.15) 60%, 
            rgba(14, 165, 233, 0.2) 100%),
        repeating-linear-gradient(45deg, 
            transparent 0px, 
            rgba(255, 255, 255, 0.03) 1px, 
            transparent 2px, 
            rgba(255, 255, 255, 0.05) 3px);
    pointer-events: none;
    animation: water-crystal 15s ease-in-out infinite;
}

@keyframes water-crystal {
    0%, 100% { 
        opacity: 0.9;
        background-position: 0% 0%, 0% 0%;
    }
    50% { 
        opacity: 0.95;
        background-position: 100% 50%, 50% 50%;
    }
}

.benefits-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 60%, rgba(167, 243, 208, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(103, 232, 249, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><path d="M0,600 Q200,550 400,600 T800,600 T1200,600 L1200,800 L0,800 Z" fill="rgba(255,255,255,0.08)" opacity="0.6"/><path d="M0,650 Q300,600 600,650 T1200,650 L1200,800 L0,800 Z" fill="rgba(255,255,255,0.06)" opacity="0.5"/><path d="M0,700 Q250,650 500,700 T1000,700 T1200,700 L1200,800 L0,800 Z" fill="rgba(255,255,255,0.04)" opacity="0.4"/></svg>');
    background-size: cover, cover, cover, cover;
    background-position: center, center, center, bottom;
    pointer-events: none;
    opacity: 0.7;
    animation: water-movement 20s ease-in-out infinite;
}

@keyframes water-movement {
    0%, 100% { 
        transform: translateY(0) translateX(0);
        opacity: 0.7;
    }
    33% { 
        transform: translateY(-10px) translateX(-20px);
        opacity: 0.75;
    }
    66% { 
        transform: translateY(-5px) translateX(20px);
        opacity: 0.8;
    }
}

.benefits-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.benefits-solution-ultra .section-title-ultra {
    color: var(--dark);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9), 0 4px 20px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 255, 255, 0.5);
    font-weight: 900;
}

.benefits-solution-ultra .section-subtitle-ultra {
    color: var(--dark);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9), 0 4px 15px rgba(255, 255, 255, 0.7), 0 0 25px rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.benefits-grid-ultra {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Optymalizacja gap na mobile */
@media (max-width: 768px) {
    .benefits-grid-ultra {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .savings-cards-grid {
        gap: 25px;
    }
    
    .additional-benefits-grid {
        gap: 25px;
    }
    
    .drastic-stats-grid {
        gap: 20px;
    }
    
    .problems-grid-ultra {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .benefits-grid-ultra {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .savings-cards-grid {
        gap: 20px;
    }
    
    .additional-benefits-grid {
        gap: 20px;
    }
    
    .drastic-stats-grid {
        gap: 15px;
    }
    
    .problems-grid-ultra {
        gap: 15px;
    }
}

.benefit-card-main {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s;
    border-top: 4px solid #06b6d4;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.benefit-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4 0%, #10b981 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.benefit-card-main:hover::before {
    transform: scaleX(1);
}

.benefit-card-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(6, 182, 212, 0.2);
}

.benefit-icon-wrapper {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: icon-float 3s ease-in-out infinite;
}

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

.benefit-card-main h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-list-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    font-weight: 500;
}

.check-icon {
    color: #10b981;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-list-item strong {
    color: #06b6d4;
    font-weight: 700;
}

.savings-section-ultra {
    margin: 50px 0;
}

.savings-header-ultra {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.savings-icon {
    font-size: 3rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.savings-header-ultra h3 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9), 0 4px 20px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 255, 255, 0.5);
}

.savings-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.savings-card-ultra {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s;
    border-left: 5px solid;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.home-card {
    border-left-color: #06b6d4;
}

.business-card {
    border-left-color: #10b981;
}

.savings-card-ultra:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.savings-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.card-icon {
    font-size: 2.5rem;
}

.savings-card-header h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.savings-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.savings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
}

.savings-row.highlight {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.05) 0%, transparent 100%);
    padding: 15px 20px;
    border-radius: 10px;
    border-bottom: none;
}

.savings-row span:first-child {
    color: var(--dark);
    font-weight: 600;
}

.savings-row strong {
    color: #06b6d4;
    font-weight: 700;
    font-size: 1.05rem;
}

.savings-result {
    margin-top: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.result-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
}

.result-value {
    color: var(--white);
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.savings-roi {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 15px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #10b981;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.additional-benefits-ultra {
    margin-top: 50px;
}

.additional-benefits-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.benefits-icon {
    font-size: 3rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.additional-benefits-header h3 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9), 0 4px 20px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 255, 255, 0.5);
}

.additional-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.additional-benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s;
    border-top: 4px solid #10b981;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.additional-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.2);
}

.guarantee-card {
    border-top-color: #10b981;
    background: rgba(255, 255, 255, 0.95);
}

.guarantee-card:hover {
    box-shadow: 0 25px 70px rgba(16, 185, 129, 0.2);
}

.additional-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.additional-benefit-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.additional-benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 500;
}

.additional-benefit-card p strong {
    color: #06b6d4;
    font-weight: 700;
}

.guarantee-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.guarantee-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    font-weight: 500;
}

.guarantee-list li::before {
    content: '➡️';
    position: absolute;
    left: 0;
}

.guarantee-list li strong {
    color: #06b6d4;
    font-weight: 700;
}

.guarantee-note {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 15px;
    font-weight: 700;
    color: #10b981;
    text-align: center;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

@media (max-width: 768px) {
    .benefits-grid-ultra,
    .savings-cards-grid,
    .additional-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .savings-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Company Section Ultra */
.company-section-ultra {
    margin-top: 50px;
    padding: 50px 0;
}

.company-card-ultra {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.company-card-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #06b6d4 0%, #10b981 100%);
}

.company-header-ultra {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.company-icon-ultra {
    font-size: 4rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(6, 182, 212, 0.2);
}

.company-info-ultra h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.company-tagline {
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 600;
    opacity: 0.85;
}

.company-content-ultra {
    position: relative;
}

.company-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.company-stat-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    border-top: 4px solid #06b6d4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.2);
    border-top-color: #10b981;
}

.stat-icon-wrapper {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 8px rgba(6, 182, 212, 0.3));
    animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.company-stat-item h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.company-stat-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.company-stat-item p strong {
    color: #06b6d4;
    font-weight: 800;
}

.stat-detail {
    font-size: 0.95rem;
    color: var(--dark);
    font-style: italic;
    margin-top: auto;
    opacity: 0.7;
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .company-stats-grid {
        grid-template-columns: 1fr;
    }
}

.company-cta-ultra {
    text-align: center;
    margin-top: 50px;
}

.company-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.company-link-btn::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;
}

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

.company-link-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.6);
}

.company-link-btn svg {
    transition: transform 0.3s;
}

.company-link-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .company-header-ultra {
        flex-direction: column;
        text-align: center;
    }
    
    .company-card-ultra {
        padding: 40px 30px;
    }
}

/* Purchase Ultra */
.purchase-ultra {
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
}

.purchase-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0.95;
}

.purchase-card-ultra {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.purchase-card-ultra h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

.price-display-ultra {
    margin-bottom: 50px;
}

.price-main-ultra {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(255,255,255,0.5);
    font-family: 'Montserrat', sans-serif;
}

.price-sub-ultra {
    font-size: 1.4rem;
    opacity: 0.9;
}

.purchase-btn-ultra {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 60px;
    background: var(--gradient-3);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 800;
    transition: all 0.3s;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.purchase-btn-ultra:hover .btn-shine {
    left: 100%;
}

.purchase-btn-ultra:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.5);
}

.btn-arrow-ultra {
    font-size: 1.8rem;
    transition: transform 0.3s;
}

.purchase-btn-ultra:hover .btn-arrow-ultra {
    transform: translateX(8px);
}

.purchase-benefits-ultra {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.benefit-item-ultra {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 600;
}

/* Contact Ultra */
.contact-ultra {
    padding: 80px 20px;
    background: var(--light);
}

.contact-wrapper-ultra {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-card-ultra {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.contact-avatar-ultra {
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 30px;
    position: relative;
}

.avatar-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-1);
    opacity: 0.5;
    animation: pulse-avatar 2s infinite;
}

@keyframes pulse-avatar {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.contact-info-card-ultra h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 700;
}

.contact-role-ultra {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-details-ultra {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-link-ultra {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link-ultra:hover {
    background: var(--gradient-1);
    color: var(--white);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.contact-icon-ultra {
    font-size: 1.5rem;
}

.contact-form-ultra {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.form-group-ultra {
    margin-bottom: 25px;
}

.contact-form-ultra input,
.contact-form-ultra textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--light);
}

.contact-form-ultra input:focus,
.contact-form-ultra textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.submit-btn-ultra {
    width: 100%;
    padding: 20px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn-ultra:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

.submit-btn-ultra svg {
    transition: transform 0.3s;
}

.submit-btn-ultra:hover svg {
    transform: translateX(5px);
}

.form-message-ultra {
    margin-top: 25px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    display: none;
    font-weight: 600;
}

.form-message-ultra.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message-ultra.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Form Privacy Notice */
.form-privacy-notice {
    background: rgba(10, 14, 39, 0.05);
    border: 2px solid rgba(0, 102, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.form-privacy-notice p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 12px;
}

.form-privacy-notice p:last-child {
    margin-bottom: 0;
}

.form-privacy-notice strong {
    color: var(--text);
    font-weight: 600;
}

.form-privacy-notice a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.form-privacy-notice a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.form-privacy-link,
.form-privacy-link-inline {
    background: none;
    border: none;
    color: var(--secondary);
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    transition: color 0.3s;
}

.form-privacy-link:hover,
.form-privacy-link-inline:hover {
    color: var(--white);
}

.form-consent {
    margin-top: 20px;
    margin-bottom: 20px;
}

.form-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text);
}

.form-consent-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--secondary);
    flex-shrink: 0;
}

.form-consent-label span {
    flex: 1;
}

.form-consent-label .form-privacy-link-inline {
    display: inline;
    font-size: inherit;
}

@media (max-width: 768px) {
    .form-privacy-notice {
        padding: 15px;
    }
    
    .form-privacy-notice p {
        font-size: 0.8rem;
    }
    
    .form-consent-label {
        font-size: 0.85rem;
    }
}

/* Footer Ultra */
.footer-ultra {
    background: var(--dark);
    color: var(--white);
    padding: 50px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.footer-link-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.3);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    border-radius: 16px;
    padding: 40px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    background: var(--secondary);
    transform: rotate(90deg);
}

.modal-content .regulamin-content,
.modal-content .prywatnosc-content {
    max-width: 100%;
    margin: 0;
    text-align: left;
}

.modal-content .regulamin-content h3,
.modal-content .prywatnosc-content h3 {
    text-align: center;
    margin-bottom: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-link-btn {
        width: 100%;
    }
    
    .modal-content {
        padding: 30px 20px;
        max-height: 95vh;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
}

.footer-regulamin {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.regulamin-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.regulamin-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.regulamin-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-align: justify;
}

.regulamin-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.regulamin-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.regulamin-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.regulamin-section p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    margin-bottom: 10px;
}

.regulamin-section p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .regulamin-content {
        padding: 0 10px;
    }
    
    .regulamin-content h3 {
        font-size: 1.1rem;
    }
    
    .regulamin-content p,
    .regulamin-section p {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .regulamin-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .regulamin-section h4 {
        font-size: 1rem;
    }
}

/* Polityka Prywatności */
.footer-prywatnosc {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.prywatnosc-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.prywatnosc-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.prywatnosc-section {
    margin-bottom: 30px;
}

.prywatnosc-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.prywatnosc-section p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.prywatnosc-section ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.prywatnosc-section ul li {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.prywatnosc-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.prywatnosc-section a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.prywatnosc-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

.prywatnosc-section strong {
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 768px) {
    .prywatnosc-content {
        padding: 0 10px;
    }
    
    .prywatnosc-content h3 {
        font-size: 1.1rem;
    }
    
    .prywatnosc-section h4 {
        font-size: 1rem;
    }
    
    .prywatnosc-section p,
    .prywatnosc-section ul li {
        font-size: 0.85rem;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .product-showcase-ultra {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .order-button-section {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
    
    .contact-wrapper-ultra {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-stats-ultra {
        gap: 40px;
    }
    
    .problems-grid-ultra {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Overlay */
@media (max-width: 968px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-links-ultra {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        z-index: 1000;
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links-ultra.active {
        left: 0;
        opacity: 1;
    }
    
    /* Overlay dla menu mobilnego */
    .nav-links-ultra::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: -1;
    }
    
    .nav-links-ultra.active::before {
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-link-ultra {
        font-size: 1.2rem;
        padding: 18px 20px;
        width: 85%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        transition: background 0.2s ease;
    }
    
    .nav-link-ultra:active {
        background: rgba(0, 212, 255, 0.15);
    }
    
    .nav-link-ultra::after {
        display: none;
    }
    
    .nav-link-ultra.active::before {
        left: 10px;
    }
    
    .nav-link-ultra.active {
        background: rgba(0, 212, 255, 0.1);
        border-radius: 10px;
        padding: 15px 20px;
    }
    
    .nav-cta-button {
        margin-left: 0;
        margin-top: 20px;
        width: 80%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar-ultra {
        padding: 15px 0;
    }
    
    .language-switcher {
        margin-left: 10px;
        gap: 5px;
    }
    
    .lang-btn {
        width: 36px;
        height: 36px;
        padding: 6px;
    }
    
    .flag-icon {
        font-size: 1.2rem;
    }
    
    .nav-links-ultra {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .section-order-button {
        margin-top: 40px;
    }
    
    .order-button-section {
        padding: 14px 35px;
        font-size: 1rem;
    }
    
    .calc-tabs-ultra {
        flex-direction: column;
    }
    
    .purchase-benefits-ultra {
        flex-direction: column;
        gap: 20px;
    }
    
    .calculator-wrapper-ultra {
        padding: 30px;
    }
    
    .purchase-card-ultra {
        padding: 40px 30px;
    }
}

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

/* Floating Order Button - Po prawej stronie na środku - ALARM */
.floating-order-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #ff3366 0%, #ff0000 50%, #cc0000 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.6),
                0 0 20px rgba(255, 0, 0, 0.4);
    white-space: nowrap;
    animation: fadeInRight 0.5s ease-out 0.3s both,
               alarmPulse 2s ease-in-out infinite,
               alarmFlash 1.5s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Zabezpieczenie - przycisk nie nachodzi na treść */
@media (min-width: 1400px) {
    .floating-order-btn {
        right: 0;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .floating-order-btn {
        right: 0;
    }
}

.floating-order-btn:hover {
    transform: translateY(-50%) translateX(-5px);
    box-shadow: 0 12px 35px rgba(255, 51, 102, 0.8),
                0 0 30px rgba(255, 0, 0, 0.6);
    background: linear-gradient(135deg, #ff0040 0%, #ff0000 50%, #990000 100%);
}

.floating-order-btn svg {
    transition: transform 0.3s;
}

.floating-order-btn:hover svg {
    transform: translateX(5px);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes alarmPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 8px 25px rgba(255, 51, 102, 0.6),
                    0 0 20px rgba(255, 0, 0, 0.4);
    }
    50% {
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 51, 102, 0.8),
                    0 0 30px rgba(255, 0, 0, 0.6);
    }
}

@keyframes alarmFlash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

/* Responsive dla floating button */
@media (max-width: 1199px) {
    .floating-order-btn {
        display: none; /* Ukryj przycisk na mniejszych ekranach, żeby nie nachodził na treść */
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    border-top: 2px solid var(--secondary);
    padding: 20px;
    z-index: 10001;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
    animation: slideUpBanner 0.3s ease;
}

.cookie-banner.active {
    display: flex !important;
    flex-direction: column;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

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

.cookie-banner-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.cookie-banner-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cookie-link-btn {
    background: none;
    border: none;
    color: var(--secondary);
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    transition: color 0.3s;
}

.cookie-link-btn:hover {
    color: var(--white);
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-settings,
.cookie-btn-reject {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    border: 2px solid transparent;
}

.cookie-btn-accept {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.cookie-btn-accept:hover {
    background: #ff3366;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.4);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.cookie-btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

/* Cookies Modal Content */
.cookies-content {
    max-width: 100%;
    margin: 0;
    text-align: left;
}

.cookies-content h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.cookies-section {
    margin-bottom: 30px;
}

.cookies-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.cookies-section h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.cookies-section p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.cookies-section ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.cookies-section ul li {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.cookies-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.cookies-section a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.cookies-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

.cookie-type {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.cookie-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 10px;
}

.cookie-status.required {
    background: rgba(255, 51, 102, 0.2);
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.cookie-status.optional {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    cursor: pointer;
    user-select: none;
}

.cookie-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--secondary);
}

.cookie-toggle span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.cookies-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn-save,
.cookie-btn-accept-all,
.cookie-btn-reject-all {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    border: 2px solid transparent;
}

.cookie-btn-save {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.cookie-btn-save:hover {
    background: #ff3366;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.4);
}

.cookie-btn-accept-all {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border-color: #4caf50;
}

.cookie-btn-accept-all:hover {
    background: rgba(76, 175, 80, 0.3);
    transform: translateY(-2px);
}

.cookie-btn-reject-all {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject-all:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

@keyframes slideUpBanner {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-banner-text {
        min-width: 100%;
    }
    
    .cookie-banner-buttons {
        justify-content: stretch;
    }
    
    .cookie-btn-accept,
    .cookie-btn-settings,
    .cookie-btn-reject {
        flex: 1;
        min-width: 120px;
    }
    
    .cookies-actions {
        flex-direction: column;
    }
    
    .cookie-btn-save,
    .cookie-btn-accept-all,
    .cookie-btn-reject-all {
        width: 100%;
    }
}

/* Checkbox zgody w formularzu */
.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
    color: #333;
    margin: 0;
    padding: 10px 0;
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: #00d4ff;
}

.consent-checkbox span {
    flex: 1;
    user-select: none;
}

.consent-checkbox a {
    color: #00d4ff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.consent-checkbox a:hover {
    color: #0099cc;
}

/* Responsive checkbox */
@media (max-width: 768px) {
    .consent-checkbox {
        font-size: 13px;
        gap: 8px;
    }
    
    .consent-checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-top: 2px;
    }
}

/* ============================================
   ETAP 1: OPTYMALIZACJA MOBILE - BREAKPOINTY
   ============================================ */

/* Małe telefony (480px i mniejsze) */
@media (max-width: 480px) {
    .container-ultra {
        padding: 0 12px;
    }
    
    .section-title-ultra {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .section-subtitle-ultra {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
    }
    
    .order-button-section {
        width: 100%;
        padding: 16px 24px;
        font-size: 0.95rem;
    }
    
    .hero-title-ultra {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-subtitle-ultra {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }
    
    .problem-card-ultra {
        padding: 25px 20px;
    }
    
    .benefit-card-main {
        padding: 35px 25px;
    }
    
    .savings-card-ultra {
        padding: 30px 20px;
    }
    
    .drastic-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .drastic-stat-card {
        padding: 30px 20px;
    }
}

/* Bardzo małe telefony (360px i mniejsze) */
@media (max-width: 360px) {
    .container-ultra {
        padding: 0 10px;
    }
    
    .logo-ultra {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        font-size: 1.6rem;
    }
    
    .hero-title-ultra {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    .section-title-ultra {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }
    
    .order-button-section {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .nav-link-ultra {
        font-size: 1.1rem;
        padding: 12px 0;
    }
    
    .problem-card-ultra {
        padding: 20px 15px;
    }
    
    .benefit-card-main {
        padding: 30px 20px;
    }
}

    /* Najmniejsze ekrany (320px i mniejsze) */
@media (max-width: 320px) {
    .container-ultra {
        padding: 0 8px;
    }
    
    .logo-ultra {
        font-size: 1.2rem;
    }
    
    .hero-title-ultra {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    
    .section-title-ultra {
        font-size: clamp(1.2rem, 6vw, 1.6rem);
    }
    
    .order-button-section {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

/* ============================================
   ETAP 3: DODATKOWE ULEPSZENIA
   ============================================ */

/* Touch Feedback - Active States */
@media (max-width: 768px) {
    button:active,
    a.button:active,
    .order-button-section:active,
    .cta-button-ultra:active,
    .submit-btn-ultra:active,
    .nav-link-ultra:active,
    .footer-link-btn:active,
    .cookie-btn-accept:active,
    .cookie-btn-settings:active,
    .cookie-btn-reject:active {
        transform: scale(0.95);
        opacity: 0.8;
        transition: transform 0.1s ease, opacity 0.1s ease;
    }
    
    .lang-btn:active {
        transform: scale(0.9);
        opacity: 0.7;
    }
    
    .hamburger-menu:active {
        transform: scale(0.9);
    }
}

/* Focus States dla Accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.nav-link-ultra:focus-visible,
.footer-link-btn:focus-visible,
.order-button-section:focus-visible,
.cta-button-ultra:focus-visible,
.submit-btn-ultra:focus-visible,
.lang-btn:focus-visible,
.hamburger-menu:focus-visible {
    outline: 3px solid #0066ff;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Lepsze focus states dla inputów */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid #0066ff;
    outline-offset: 2px;
    border-color: #0066ff;
}

/* Skip to content link dla accessibility */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: #0066ff;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 8px 0;
    font-weight: 600;
}

.skip-to-content:focus {
    top: 0;
}

/* ============================================
   TOUCH TARGETS - Min. 44px x 44px
   ============================================ */
@media (max-width: 768px) {
    /* Przyciski */
    button,
    a.button,
    input[type="submit"],
    .order-button-section,
    .cta-button-ultra,
    .submit-btn-ultra {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 24px;
    }
    
    /* Linki w nawigacji mobilnej */
    .nav-link-ultra {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    /* Przyciski w stopce */
    .footer-link-btn {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    /* Przyciski cookie */
    .cookie-btn-accept,
    .cookie-btn-settings,
    .cookie-btn-reject {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    /* Checkboxy - zwiększ rozmiar dla łatwiejszego kliknięcia */
    .consent-checkbox input[type="checkbox"] {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
    }
    
    /* Przyciski języka */
    .lang-btn {
        min-width: 44px;
        min-height: 44px;
        width: 44px;
        height: 44px;
    }
    
    /* Hamburger menu */
    .hamburger-menu {
        min-width: 44px;
        min-height: 44px;
        width: 44px;
        height: 44px;
    }
}

/* ============================================
   FORMULARZ - Font-size 16px (zapobiega zoom na iOS)
   ============================================ */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px !important; /* Zapobiega automatycznemu zoom na iOS */
        padding: 12px 16px;
        min-height: 44px;
    }
    
    textarea {
        min-height: 120px;
    }
}

/* ============================================
   TYPOGRAFIA - Responsywne rozmiary z clamp()
   ============================================ */
@media (max-width: 768px) {
    /* Hero section */
    .hero-title-ultra {
        font-size: clamp(2rem, 8vw, 4rem);
        line-height: 1.2;
    }
    
    .hero-subtitle-ultra {
        font-size: clamp(1rem, 4vw, 1.5rem);
        line-height: 1.4;
    }
    
    /* Section titles */
    .section-title-ultra {
        font-size: clamp(1.5rem, 6vw, 3rem);
        line-height: 1.3;
    }
    
    .section-subtitle-ultra {
        font-size: clamp(0.95rem, 4vw, 1.2rem);
        line-height: 1.5;
    }
    
    /* Problem section */
    .drastic-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .problem-card-ultra h3 {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }
    
    .problem-card-ultra p {
        font-size: clamp(0.9rem, 3vw, 1rem);
        line-height: 1.6;
    }
    
    /* Benefits section */
    .benefit-card-main h3 {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }
    
    .benefit-list-item {
        font-size: clamp(0.9rem, 3vw, 1rem);
        line-height: 1.6;
    }
    
    /* Savings section */
    .savings-card-ultra h4 {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
    }
    
    .savings-row {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    
    /* Contact section */
    .contact-title-ultra {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .contact-subtitle-ultra {
        font-size: clamp(0.95rem, 4vw, 1.2rem);
    }
}
