/* CSS Variables - ZFS.PL Color Scheme */
:root {
    --primary-red: #ea212a;
    --primary-dark: #1a1a1a;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --background-white: #ffffff;
    --background-light: #f8f9fa;
    --background-dark: #2c2c2c;
    --border-light: #e1e5e9;
    --success-green: #28a745;
    --warning-orange: #ffc107;
    --info-blue: #007bff;
    
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.highlight {
    color: var(--primary-red);
    font-weight: 700;
}

/* Header & Navigation */
.header {
    background: var(--background-white);
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-btn {
    background: var(--primary-red);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.nav-btn:hover {
    background: #d11e26;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 2px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-white) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.badge-item {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.badge-divider {
    color: var(--text-muted);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--success-green);
    font-weight: 700;
}

.benefit-icon-material {
    font-size: 1.5rem;
    color: var(--success-green);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-primary {
    background: var(--primary-red);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    font-size: 0.95rem;
}

.cta-primary:hover {
    background: #d11e26;
    transform: translateY(-2px);
}

.cta-secondary {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    font-size: 0.95rem;
}

.cta-secondary:hover {
    background: var(--primary-red);
    color: white;
}

.hero-urgency {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.25rem;
    background: #fff3cd;
    border-left: 4px solid var(--warning-orange);
    border-radius: var(--border-radius);
}

.urgency-icon {
    font-size: 1.2rem;
    color: var(--warning-orange);
    font-weight: 700;
}

.urgency-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-indicators {
    margin-top: 2rem;
}

.trust-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.partner-badge {
    background: var(--success-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
}

.partner-logo-img {
    max-width: 200px;
    height: auto;
    display: block;
}

/* Hero Visual - Night & Day Illustration */
.night-day-illustration {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1f35 0%, #2c3e50 50%, #34495e 100%);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Night Side */
.night-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: var(--border-radius);
    min-height: 320px;
}

.moon {
    width: 80px;
    height: 80px;
    background: #fef3c7;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(254, 243, 199, 0.5);
    margin-bottom: 1rem;
    position: relative;
}

.moon::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #f59e0b;
    border-radius: 50%;
    opacity: 0.2;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

.star:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.star:nth-child(2) { top: 40%; left: 80%; animation-delay: 0.5s; }
.star:nth-child(3) { top: 60%; left: 25%; animation-delay: 1s; }
.star:nth-child(4) { top: 30%; left: 70%; animation-delay: 1.5s; }
.star:nth-child(5) { top: 75%; left: 60%; animation-delay: 2s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.night-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.sleeping-icon {
    margin-top: 1rem;
    color: #94a3b8;
    font-size: 3rem;
}

.sleeping-icon .material-symbols-outlined {
    font-size: 3rem;
}

/* Monitoring Side */
.monitoring-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    position: relative;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    border-radius: var(--border-radius);
    min-height: 320px;
}

.monitoring-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    margin-bottom: 0;
    position: relative;
    min-height: 260px;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
}

.monitor-glow {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    margin-bottom: 1rem;
    position: relative;
    animation: glow-pulse 2s infinite;
    z-index: 1;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(34, 197, 94, 0.5);
        transform: scale(1.05);
    }
}

.monitor-icon {
    font-size: 3rem !important;
    color: var(--success-green);
}

/* Alert Box Base Styles */
.alert-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.1rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: absolute;
    left: 50%;
    top: 105px;
    transform: translateX(-50%);
    opacity: 0;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    width: auto;
    min-width: 200px;
    max-width: 90%;
    z-index: 2;
}

/* Phase 1: Clock - Normal operation (0-20% = 5s) */
.alert-clock {
    background: rgba(59, 130, 246, 0.15);
    border: 2px solid #3b82f6;
    animation-name: phase-clock;
}

@keyframes phase-clock {
    0% { opacity: 1; }
    18% { opacity: 1; }
    20% { opacity: 0; }
    95% { opacity: 0; }
    100% { opacity: 1; }
}

.clock-icon {
    color: #3b82f6;
    font-size: 1.75rem !important;
}

.alert-time::after {
    content: "02:30";
    animation: clock-count-full 20s linear infinite;
}

@keyframes clock-count-full {
    /* Phase 1: 02:30 -> 03:32 (0-20% = 5s) */
    0% { content: "02:30"; }
    0.8% { content: "02:35"; }
    1.6% { content: "02:40"; }
    2.4% { content: "02:45"; }
    3.2% { content: "02:50"; }
    4% { content: "02:55"; }
    4.8% { content: "03:00"; }
    5.6% { content: "03:05"; }
    6.4% { content: "03:10"; }
    7.2% { content: "03:15"; }
    8% { content: "03:20"; }
    8.8% { content: "03:25"; }
    9.6% { content: "03:30"; }
    10.4% { content: "03:32"; }

    /* Phase 2: 03:32 -> 03:37 (20-40% = 5s) */
    20% { content: "03:32"; }
    26% { content: "03:33"; }
    30% { content: "03:34"; }
    34% { content: "03:35"; }
    36% { content: "03:36"; }
    38% { content: "03:37"; }

    /* Phase 3: 03:37 -> 03:48 (40-60% = 5s) */
    40% { content: "03:37"; }
    44% { content: "03:39"; }
    47% { content: "03:41"; }
    50% { content: "03:43"; }
    53% { content: "03:45"; }
    56% { content: "03:47"; }
    58% { content: "03:48"; }

    /* Phase 4: Hold at 03:48 (60-95% = 7s) */
    60% { content: "03:48"; }
    95% { content: "03:48"; }

    /* Reset for loop (95-100% = 1s pause) */
    100% { content: "03:48"; }
}

/* Phase 2: Warning - Alert detected (20-40% = 5s) */
.alert-warning {
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid #ef4444;
    animation-name: phase-warning;
}

@keyframes phase-warning {
    0%, 18% { opacity: 0; }
    20% { opacity: 1; }
    38% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
}

.warning-icon {
    color: #ef4444;
    font-size: 1.75rem !important;
    animation: pulse-warning 0.5s infinite alternate;
}

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

/* Phase 3: Working - Fixing issue (40-60% = 5s) */
.alert-working {
    background: rgba(251, 191, 36, 0.15);
    border: 2px solid #fbbf24;
    animation-name: phase-working;
}

@keyframes phase-working {
    0%, 38% { opacity: 0; }
    40% { opacity: 1; }
    58% { opacity: 1; }
    60% { opacity: 0; }
    100% { opacity: 0; }
}

.working-icon {
    color: #fbbf24;
    font-size: 1.75rem !important;
    animation: rotate-working 2s linear infinite;
}

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

/* Phase 4: Resolved - Problem fixed (60-95% = 7s) */
.alert-resolved {
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid var(--success-green);
    animation-name: phase-resolved;
}

@keyframes phase-resolved {
    0%, 58% { opacity: 0; }
    60% { opacity: 1; }
    93% { opacity: 1; }
    95% { opacity: 0; }
    100% { opacity: 0; }
}

.check-icon {
    color: var(--success-green);
    font-size: 1.75rem !important;
}

.alert-time {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    font-family: 'Courier New', monospace;
}

.alert-text {
    font-size: 0.85rem;
    font-weight: 600;
}

.alert-clock .alert-text {
    color: #3b82f6;
}

.alert-warning .alert-text {
    color: #ef4444;
}

.alert-working .alert-text {
    color: #fbbf24;
}

.alert-resolved .alert-text {
    color: var(--success-green);
}

/* Side Labels */
.side-label {
    margin-top: 1rem;
    text-align: center;
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--primary-dark);
    color: white;
    text-align: center;
}

.problem-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--background-white);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.service-card.featured {
    border: 2px solid var(--primary-red);
    position: relative;
}

.service-card.featured::before {
    content: "NAJPOPULARNIEJSZE";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: white;
    padding: 0.25rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--border-radius);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-details h4 {
    color: var(--primary-red);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-example {
    background: var(--background-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    border-left: 4px solid var(--primary-red);
}

.pro-tip {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    border-left: 4px solid var(--success-green);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--background-light);
}

.comparison-table {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.comparison-table th {
    background: var(--primary-dark);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table th.highlight-col {
    background: var(--primary-red);
    color: white;
}

.comparison-table td {
    font-size: 1rem;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.highlight-col {
    background: #fff8f8;
    font-weight: 600;
    color: var(--primary-red);
}

.comparison-table .highlight-col {
    background: #fff8f8;
    border-left: 4px solid var(--primary-red);
    border-right: 4px solid var(--primary-red);
}

/* Case Studies */
.case-studies-section {
    padding: 80px 0;
    background: var(--background-white);
}

.case-studies-section .section-title {
    margin-bottom: 3rem;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.case-study {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-light);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.industry-tag {
    background: var(--primary-red);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.case-study-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--background-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-light);
}

.testimonial.verified {
    border-left: 4px solid var(--success-green);
}

.rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.verified-badge {
    background: var(--success-green);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonials-summary {
    display: flex;
    justify-content: center;
    gap: 4rem;
    text-align: center;
}

.summary-stat {
    display: flex;
    flex-direction: column;
}

.summary-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.summary-label {
    color: var(--text-light);
}

/* Partnership Section */
.partnership-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.partnership-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.partnership-logo {
    max-width: 300px;
    height: auto;
    background: white;
    padding: 1.5rem 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.partnership-section h2 {
    margin-bottom: 0;
}

.partnership-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: left;
}

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

.partnership-benefit .benefit-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.partnership-benefit h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.partnership-benefit p {
    opacity: 0.8;
}

/* Mistakes Section */
.mistakes-section {
    padding: 80px 0;
    background: var(--background-light);
}

.mistakes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.mistake-card {
    display: grid;
    grid-template-columns: 60px 280px 1fr;
    gap: 2rem;
    align-items: start;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-light);
}

.mistake-number {
    background: var(--primary-red);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.mistake-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.mistake-card p {
    color: var(--text-light);
}

/* Consultation Section */
.consultation-section {
    padding: 80px 0;
    background: var(--background-white);
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.consultation-text h2 {
    margin-bottom: 1rem;
}

.consultation-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.consultation-benefits {
    margin-bottom: 2rem;
}

.consultation-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.consultation-urgency {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--warning-orange);
}

.consultation-urgency p {
    margin-bottom: 0.5rem;
}

.booking-wrapper {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-light);
}

.booking-wrapper h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.booking-note {
    text-align: center;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--background-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-light);
}

.faq-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-light);
}

/* Risk Reversal */
.risk-reversal-section {
    padding: 80px 0;
    background: var(--background-white);
    text-align: center;
}

.risk-reversal-section h2 {
    margin-bottom: 3rem;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.guarantee {
    text-align: center;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guarantee h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.guarantee p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.urgency-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

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

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.cta-primary.large {
    font-size: 1rem;
    padding: 1rem 2rem;
}

.cta-phone {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.cta-phone:hover {
    background: white;
    color: var(--primary-red);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: rgba(255, 255, 255, 0.6);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta-btn {
    background: var(--primary-red);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(234, 33, 42, 0.3);
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.sticky-cta-btn:hover {
    background: #d11e26;
    transform: scale(1.05);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--box-shadow);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .night-day-illustration {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .moon {
        width: 60px;
        height: 60px;
    }

    .monitor-glow {
        width: 80px;
        height: 80px;
    }

    .monitor-icon {
        font-size: 3rem !important;
    }

    .problem-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .partnership-logo {
        max-width: 250px;
    }
    
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .urgency-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-badge {
        justify-content: center;
        text-align: center;
    }

    .hero-urgency {
        justify-content: center;
        text-align: center;
    }

    .comparison-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .mistake-card {
        flex-direction: column;
        text-align: center;
    }

    .partnership-benefits {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .partnership-logo {
        max-width: 200px;
    }

    .partner-logo-img {
        max-width: 150px;
        margin: 0 auto;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print Styles */
@media print {
    .header,
    .sticky-cta,
    .consultation-section iframe,
    .hero-visual {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .section {
        page-break-inside: avoid;
    }
}