/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0056b3;
    --secondary-blue: #0066cc;
    --light-blue: #E8F4F8;
    --orange: #FF9900;
    --orange-hover: #ff8800;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --yellow-warning: #fff3cd;
    --yellow-border: #ffeeba;
    --yellow-text: #856404;
    --gray-bg: #f8f9fa;
    --gray-border: #dee2e6;
}

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

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

/* Ad Badge */
.ad-badge {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #666;
    color: white;
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1000;
    text-transform: uppercase;
    border-radius: 0 0 4px 4px;
}

/* Disclaimer Box */
.disclaimer-box {
    background-color: var(--yellow-warning);
    border: 2px solid var(--yellow-border);
    color: var(--yellow-text);
    padding: 15px 0;
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 100;
}

.disclaimer-box p {
    margin: 0;
}

/* Header */
.header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    margin-top: 25px;
    border-bottom: 1px solid rgba(0, 86, 179, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--secondary-blue);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--primary-blue);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 50%, rgba(255, 153, 0, 0.05) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite 1s;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image {
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
    z-index: 2;
}

.placeholder-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Product Carousel */
.product-carousel {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    border: 2px solid rgba(0, 86, 179, 0.1);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    transform: translateX(100%);
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover {
    background-color: var(--secondary-blue);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 86, 179, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-blue);
    transform: scale(1.2);
}

.dot:hover {
    background-color: var(--secondary-blue);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    background: linear-gradient(135deg, var(--orange-hover) 0%, #ff7700 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.large {
    padding: 20px 50px;
    font-size: 20px;
}

.cta-button.primary {
    background-color: var(--orange);
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--orange));
    border-radius: 2px;
}

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

.section-title.center {
    text-align: center;
}

.section-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Problem Section */
.problem-section {
    background-color: var(--white);
    padding: 120px 0;
    margin-top: 0;
}

.section-with-image {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
}

.section-with-image .section-text-content {
    width: 100%;
    max-width: 100%;
}

.section-with-image .section-image-wrapper {
    width: 100%;
    max-width: 100%;
    order: -1;
}

.section-with-image.reverse .section-image-wrapper {
    order: 1;
}

.section-with-image.reverse {
    direction: rtl;
}

.section-with-image.reverse > * {
    direction: ltr;
}

.section-text-content {
    animation: slideInLeft 0.8s ease-out;
}

.section-image-wrapper {
    animation: slideInRight 0.8s ease-out;
    position: relative;
}

.section-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    margin: 0 auto;
    display: block;
}

.section-image:hover {
    transform: scale(1.05);
}

.highlight-text {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1) 0%, rgba(255, 153, 0, 0.1) 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--orange);
    font-weight: 500;
    margin: 25px 0;
}

/* Solution Section */
.solution-section {
    background-color: var(--gray-bg);
    padding: 120px 0;
    margin-top: 0;
}

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

/* Features Section */
.features-section {
    background-color: var(--white);
    padding: 120px 0;
    margin-top: 0;
}

/* Product Details Section */
.product-details-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    padding: 120px 0;
    margin-top: 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.detail-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(232, 244, 248, 0.3) 100%);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 86, 179, 0.1), transparent);
    transition: left 0.5s ease;
}

.detail-card:hover::before {
    left: 100%;
}

.detail-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 86, 179, 0.25);
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, var(--white) 0%, rgba(0, 86, 179, 0.05) 100%);
}

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

.detail-card:nth-child(2) .detail-icon {
    animation-delay: 0.5s;
}

.detail-card:nth-child(3) .detail-icon {
    animation-delay: 1s;
}

.detail-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.detail-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(232, 244, 248, 0.5) 100%);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 86, 179, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 86, 179, 0.05), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.2);
    border-color: var(--primary-blue);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Specifications Section */
.specs-section {
    background-color: var(--gray-bg);
    padding: 120px 0;
    margin-top: 0;
}

.specs-additional {
    margin-top: 50px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.specs-subtitle {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.specs-content {
    max-width: 800px;
    margin: 0 auto;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
}

.spec-item:nth-child(2n) {
    margin-bottom: 30px;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-label {
    font-weight: 600;
    color: var(--text-dark);
}

.spec-value {
    color: var(--text-light);
}

/* Modern Specs Grid */
.specs-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.spec-card-modern {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-bg) 100%);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 86, 179, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.spec-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.spec-card-modern:hover::before {
    transform: scaleX(1);
}

.spec-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.15);
    border-color: var(--primary-blue);
}

.spec-icon-modern {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}

.spec-card-modern:nth-child(2) .spec-icon-modern {
    animation-delay: 0.2s;
}

.spec-card-modern:nth-child(3) .spec-icon-modern {
    animation-delay: 0.4s;
}

.spec-card-modern:nth-child(4) .spec-icon-modern {
    animation-delay: 0.6s;
}

.spec-card-modern:nth-child(5) .spec-icon-modern {
    animation-delay: 0.8s;
}

.spec-card-modern:nth-child(6) .spec-icon-modern {
    animation-delay: 1s;
}

.spec-card-modern:nth-child(7) .spec-icon-modern {
    animation-delay: 1.2s;
}

.spec-content-modern {
    flex: 1;
}

.spec-label-modern {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.spec-value-modern {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--gray-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    color: var(--orange);
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, #004080 100%);
    color: var(--white);
    text-align: center;
    padding: 120px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 153, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.final-cta-section .cta-button {
    background-color: var(--orange);
    color: var(--white);
}

.final-cta-section .cta-button:hover {
    background-color: var(--orange-hover);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1a252f 0%, #2c3e50 50%, #1a252f 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--orange), var(--primary-blue));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

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

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-section {
    position: relative;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    letter-spacing: -0.5px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.footer-contact-item {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item strong {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    position: relative;
    padding-left: 20px;
}

.footer-contact-item strong::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-blue), var(--orange));
    border-radius: 50%;
}

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-contact-item a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
    letter-spacing: -0.3px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--primary-blue));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--orange);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
    padding-left: 25px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

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

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

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

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

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .ad-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .section-with-image {
        flex-direction: column;
        gap: 30px;
    }

    .section-with-image .section-image-wrapper {
        order: -1;
    }

    .section-with-image.reverse .section-image-wrapper {
        order: 1;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .carousel-container {
        height: 350px;
    }

    .carousel-controls {
        padding: 8px 15px;
        gap: 10px;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .product-details-section {
        padding: 60px 0;
    }

    .specs-additional {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-text {
        font-size: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 40px;
    }

    .footer-contact-item strong::before {
        display: none;
    }

    .footer-contact-item strong {
        padding-left: 0;
    }

    .footer-links a {
        padding-left: 0;
    }

    .footer-links a::before {
        display: none;
    }

    .footer-links a:hover {
        padding-left: 0;
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
        min-height: auto;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 16px;
    }

    .cta-button.large {
        padding: 18px 40px;
        font-size: 18px;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 60px 0;
    background-color: var(--white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.last-updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 30px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Contact Page Styles */
.contact-page {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form-container {
    background-color: var(--gray-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.contact-info {
    background-color: var(--light-blue);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.info-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cookies-table thead {
    background-color: var(--primary-blue);
    color: var(--white);
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid var(--gray-border);
    font-size: 14px;
    color: var(--text-light);
}

.cookies-table tbody tr:hover {
    background-color: var(--gray-bg);
}

.cookies-table tbody tr:last-child td {
    border-bottom: none;
}

/* Impressum / Odcisk Styles */
.impressum-info {
    margin: 30px 0;
    background-color: var(--gray-bg);
    padding: 30px;
    border-radius: 8px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-border);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 200px;
}

.info-value {
    color: var(--text-light);
    text-align: right;
    flex: 1;
}

@media (max-width: 768px) {
    .info-row {
        flex-direction: column;
        gap: 5px;
    }

    .info-label {
        min-width: auto;
    }

    .info-value {
        text-align: left;
    }
}

/* Responsive for Legal and Contact Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }

    .legal-content h1 {
        font-size: 28px;
    }

    .legal-content h2 {
        font-size: 22px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container,
    .contact-info {
        padding: 30px 20px;
    }

    .cookies-table {
        font-size: 12px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}

