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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background: #0a0a0a;
}

/* Navigation Styles */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    box-shadow: 0 5px 30px rgba(0, 245, 255, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00f5ff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: #c0c0c0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #00f5ff;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 0.4rem;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-bottom: 1px solid rgba(0, 245, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
}

/* Hero adjustments for navigation */
.hero {
    padding-top: 80px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 100, 255, 0.15) 0%, transparent 50%);
    animation: pulse 6s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float 20s linear infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(-15px) translateX(3px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00f5ff 0%, #ff00ff 30%, #00ff88 60%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: slideInUp 1s ease-out, gradientShift 8s ease-in-out infinite, textGlow 4s ease-in-out infinite alternate;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
    letter-spacing: -0.02em;
}

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

@keyframes textGlow {
    0% { filter: brightness(1) drop-shadow(0 0 8px rgba(0, 245, 255, 0.15)); }
    100% { filter: brightness(1.1) drop-shadow(0 0 15px rgba(0, 245, 255, 0.25)); }
}

.hero p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.3s both;
    color: #c0c0c0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-button {
    background: linear-gradient(45deg, #00f5ff, #ff00ff, #00ff88);
    background-size: 300% 300%;
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 60px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.4), 0 5px 15px rgba(255, 0, 255, 0.3);
    animation: slideInUp 1s ease-out 0.6s both, buttonPulse 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.cta-button:hover::before {
    animation: shine 0.8s ease-out;
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 245, 255, 0.6), 0 10px 25px rgba(255, 0, 255, 0.4);
    background-position: 100% 50%;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

/* About Me Section */
.about-me {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.about-me::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.06) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite alternate;
}

.about-me-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Profile Photo Section */
.profile-section {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.profile-photo-container {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(255, 0, 255, 0.2));
    padding: 3px;
    transition: all 0.5s ease;
}

.profile-photo-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 3px;
    background: linear-gradient(135deg, #00f5ff, #ff00ff, #00ff88);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: gradientRotate 8s linear infinite;
}

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

.profile-photo-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 245, 255, 0.4);
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 22px;
    transition: all 0.5s ease;
}

.profile-photo-container:hover .profile-photo {
    transform: scale(1.05);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

.about-text {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00f5ff, #ff00ff, #00ff88);
    background-size: 300% 300%;
    animation: gradientShift 6s ease-in-out infinite;
}

.about-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 245, 255, 0.3);
    border-color: rgba(0, 245, 255, 0.5);
}

.about-text p {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-intro {
    font-size: 1.15rem !important;
    color: #ffffff !important;
    font-weight: 500;
}

.about-intro strong {
    background: linear-gradient(135deg, #00f5ff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.25rem;
}

.about-highlight {
    background: rgba(0, 245, 255, 0.1);
    border-left: 3px solid #00f5ff;
    padding: 1.5rem;
    border-radius: 10px;
    color: #ffffff !important;
    font-style: italic;
    margin: 2rem 0 !important;
}

.about-cta {
    font-size: 1.1rem !important;
    color: #00f5ff !important;
    font-weight: 600;
    text-align: center;
    margin-top: 2rem !important;
}

.about-credentials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.credential-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.credential-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.credential-item:hover::before {
    opacity: 1;
}

.credential-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.3);
    border-color: rgba(0, 245, 255, 0.6);
}

.credential-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    animation: iconPulse 4s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.3);
}

.credential-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.credential-item p {
    color: #b0b0b0;
    line-height: 1.5;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Hero Small - dla strony O mnie */
.hero-small {
    min-height: 50vh;
    padding-top: 80px;
}

.hero-small .hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
}

.hero-small .hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
}

/* About CTA Section */
.about-cta-section {
    text-align: center;
    margin-top: 5rem;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    backdrop-filter: blur(15px);
}

.about-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00f5ff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-cta-section p {
    font-size: 1.2rem;
    color: #c0c0c0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive dla About Me */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-credentials {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-me {
        padding: 4rem 1rem;
    }

    .profile-photo-container {
        width: 250px;
        height: 330px;
    }

    .about-text {
        padding: 2rem 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-intro {
        font-size: 1.1rem !important;
    }

    .about-credentials {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .credential-item {
        padding: 1.5rem;
    }

    .credential-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .profile-photo-container {
        width: 200px;
        height: 270px;
    }

    .about-text {
        padding: 1.5rem 1rem;
    }

    .about-highlight {
        padding: 1rem;
        margin: 1.5rem 0 !important;
    }

    .credential-item h3 {
        font-size: 1.1rem;
    }

    .credential-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}

.services {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #0d1421 0%, #1a1a2e 50%, #0f1419 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
    animation: backgroundShift 12s ease-in-out infinite alternate;
}

@keyframes backgroundShift {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00f5ff 0%, #ff00ff 50%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 6s ease-in-out infinite;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    border-radius: 2px;
    animation: lineGlow 3s ease-in-out infinite alternate;
}

@keyframes lineGlow {
    0% { box-shadow: 0 0 10px rgba(0, 245, 255, 0.5); }
    100% { box-shadow: 0 0 25px rgba(255, 0, 255, 0.8); }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: cardFloat 6s ease-in-out infinite;
}

.service-card:nth-child(2) { animation-delay: -2s; }
.service-card:nth-child(3) { animation-delay: -4s; }
.service-card:nth-child(4) { animation-delay: -1s; }

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    transform: scale(0);
}

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

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 245, 255, 0.3), 0 15px 30px rgba(255, 0, 255, 0.2);
    border-color: rgba(0, 245, 255, 0.6);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    animation: iconRotate 8s linear infinite;
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.4);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.7;
    text-align: center;
    font-size: 1rem;
}

.packages {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 50%, #16213e 100%);
    position: relative;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(0, 255, 255, 0.06) 0%, transparent 60%);
}

.packages-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.package-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00f5ff, #ff00ff, #00ff88);
    background-size: 300% 300%;
    animation: gradientShift 4s ease-in-out infinite;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 245, 255, 0.3);
    border-color: rgba(0, 245, 255, 0.5);
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 800;
    text-align: center;
}

.package-features {
    list-style: none;
    padding: 0;
}

.package-features li {
    padding: 0.8rem 0;
    color: #c0c0c0;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.package-features li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: #00f5ff;
    font-size: 1.2rem;
}

.pricing {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #0d1421 0%, #1a1a2e 100%);
    position: relative;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 245, 255, 0.3);
    border-color: rgba(0, 245, 255, 0.6);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Benefits Section */
.benefits {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 50%, #0f0f23 100%);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite alternate;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: benefitFloat 8s ease-in-out infinite;
}

.benefit-item:nth-child(2) { animation-delay: -1s; }
.benefit-item:nth-child(3) { animation-delay: -2s; }
.benefit-item:nth-child(4) { animation-delay: -3s; }
.benefit-item:nth-child(5) { animation-delay: -4s; }
.benefit-item:nth-child(6) { animation-delay: -5s; }

@keyframes benefitFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(0.5deg); }
    66% { transform: translateY(-4px) rotate(-0.5deg); }
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.3);
    border-color: rgba(0, 245, 255, 0.6);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    animation: iconPulse 4s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.3);
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.benefit-item p {
    color: #c0c0c0;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.06) 0%, transparent 70%);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    animation: testimonialFloat 10s ease-in-out infinite;
}

.testimonial-card:nth-child(2) { animation-delay: -3s; }
.testimonial-card:nth-child(3) { animation-delay: -6s; }

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00f5ff, #ff00ff, #00ff88);
    background-size: 300% 300%;
    animation: gradientShift 6s ease-in-out infinite;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 245, 255, 0.3);
    border-color: rgba(0, 245, 255, 0.6);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.stars {
    font-size: 1.5rem;
    color: #ffd700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 4rem;
    color: rgba(0, 245, 255, 0.3);
    font-family: serif;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 245, 255, 0.3);
}

.author-info h4 {
    margin: 0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.author-info span {
    color: #00f5ff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(255, 0, 255, 0.08) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite alternate;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 4rem 0;
    position: relative;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.step-number {
    min-width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.4);
    animation: stepPulse 3s ease-in-out infinite;
}

.step-item:nth-child(2) .step-number { animation-delay: -0.5s; }
.step-item:nth-child(4) .step-number { animation-delay: -1s; }
.step-item:nth-child(6) .step-number { animation-delay: -1.5s; }
.step-item:nth-child(8) .step-number { animation-delay: -2s; }
.step-item:nth-child(10) .step-number { animation-delay: -2.5s; }

@keyframes stepPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(0, 245, 255, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(0, 245, 255, 0.6); }
}

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-content:hover::before {
    opacity: 1;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.25);
    border-color: rgba(0, 245, 255, 0.5);
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.step-content p {
    color: #c0c0c0;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.step-connector {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, rgba(0, 245, 255, 0.6), rgba(255, 0, 255, 0.6));
    transform: translateX(-50%);
    z-index: 1;
}

.step-connector:last-of-type {
    display: none;
}

/* Process Statistics */
.process-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    transform: scale(0);
}

.stat-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 245, 255, 0.3);
    border-color: rgba(0, 245, 255, 0.5);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-label {
    color: #c0c0c0;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 0, 255, 0.04) 0%, transparent 60%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-list {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover::before {
    opacity: 1;
}

.faq-question h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.faq-toggle {
    font-size: 2rem;
    color: #00f5ff;
    font-weight: bold;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 2rem 2rem;
}

.faq-answer p {
    margin: 0;
    color: #c0c0c0;
    line-height: 1.7;
    font-size: 1rem;
}

.contact-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.08) 0%, transparent 70%);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    margin-bottom: 4rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.25);
    border-color: rgba(0, 245, 255, 0.5);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #00f5ff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    animation: iconPulse 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.3);
}

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

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.contact-item a {
    color: #00f5ff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-item a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.8);
}

.success-message {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 255, 255, 0.1));
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    color: #00ff88;
    font-weight: 600;
    display: none;
}

.contact-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 245, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00f5ff, #ff00ff, #00ff88);
    background-size: 300% 300%;
    animation: gradientShift 6s ease-in-out infinite;
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 800;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Enhanced form states */
.form-group.focused input,
.form-group.focused select,
.form-group.focused textarea {
    border-color: #00f5ff;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.form-group.valid input,
.form-group.valid select,
.form-group.valid textarea {
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: #ff4757;
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.2);
}

.form-group.valid::after {
    content: '✓';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #00ff88;
    font-weight: bold;
    font-size: 1.2rem;
    pointer-events: none;
}

.form-group.invalid::after {
    content: '⚠';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff4757;
    font-weight: bold;
    font-size: 1.2rem;
    pointer-events: none;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

/* Loading spinner animation */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.cta-button.loading,
.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

/* Enhanced hover effects for interactive elements */
.service-card,
.benefit-item,
.testimonial-card,
.pricing-card,
.package-card {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover,
.benefit-item:hover,
.testimonial-card:hover,
.pricing-card:hover,
.package-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Stylowanie scrollbara dla select */
.form-group select {
    scrollbar-width: thin;
    scrollbar-color: #00f5ff rgba(255, 255, 255, 0.1);
}

.form-group select::-webkit-scrollbar {
    width: 8px;
}

.form-group select::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.form-group select::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group select::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00d4e6, #e600e6);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

/* Stylowanie opcji w select */
.form-group select option {
    background: #1a1a2e !important;
    color: #ffffff;
    padding: 0.5rem;
    border: none;
}

.form-group select option:hover,
.form-group select option:checked {
    background: #0f0f23 !important;
    color: #00f5ff !important;
}

/* Dodatkowe stylowanie dla różnych przeglądarek */
.form-group select {
    background: rgba(26, 26, 46, 0.9) !important;
    color: #ffffff !important;
}

.form-group select optgroup {
    background: #1a1a2e !important;
    color: #ffffff !important;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.checkbox-group label {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #c0c0c0;
}

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(45deg, #00f5ff, #ff00ff, #00ff88);
    background-size: 300% 300%;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 245, 255, 0.4);
    background-position: 100% 50%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    margin: 5% auto;
    padding: 3rem;
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 25px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    backdrop-filter: blur(15px);
}

.close {
    color: #ffffff;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #00f5ff;
}

.privacy-h2 {
    color: #00f5ff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    text-align: center;
}

.privacy-h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    font-weight: 700;
}

.privacy-content p {
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-ul {
    color: #c0c0c0;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-note {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.privacy-note-title {
    color: #00f5ff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.privacy-note-ul {
    margin-left: 1.5rem;
}

.privacy-updated {
    text-align: center;
    font-weight: 600;
    color: #00f5ff;
    margin-top: 2rem;
}

.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 245, 255, 0.05) 0%, transparent 50%);
}

.footer p {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.footer p:first-child {
    font-weight: 600;
    color: #ffffff;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 245, 255, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: rgba(0, 245, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.4);
}

.social-icon svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .services {
        padding: 4rem 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 2rem;
        width: 95%;
    }
    
    /* Benefits responsive */
    .benefits {
        padding: 4rem 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    /* Testimonials responsive */
    .testimonials {
        padding: 4rem 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* FAQ responsive */
    .faq {
        padding: 4rem 1rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .faq-toggle {
        font-size: 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    /* How It Works responsive */
    .how-it-works {
        padding: 4rem 1rem;
    }
    
    .process-steps {
        gap: 2rem;
    }
    
    .step-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-number {
        min-width: 70px;
        height: 70px;
        font-size: 1.3rem;
        align-self: center;
    }
    
    .step-content {
        padding: 2rem 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .process-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .contact-item {
        padding: 1.5rem 1rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Benefits mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 1.5rem 1rem;
    }
    
    .benefit-item h3 {
        font-size: 1.2rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    /* Testimonials mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
    
    /* FAQ mobile */
    .faq-question {
        padding: 1rem;
        flex-direction: column;
        text-align: left;
        gap: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-toggle {
        align-self: flex-end;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
        max-height: 300px;
    }
    
    /* How It Works mobile */
    .process-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .step-content {
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        min-width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }
}

/* Additional responsive breakpoints */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 320px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .benefits-grid,
    .testimonials-grid {
        gap: 1rem;
    }
    
    .benefit-item,
    .testimonial-card {
        padding: 1rem;
    }
    
    .faq-question {
        padding: 0.8rem;
    }
}