/* ========================================
   INOVEE CLOUD - LANDING PAGE STYLES
   ======================================== */

/* Global Settings */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2c3e50;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

/* ========================================
   1. HERO SECTION
   ======================================== */
.cloud-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cloud-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,213.3C672,224,768,224,864,208C960,192,1056,160,1152,154.7C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.cloud-hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}

.cloud-hero .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cloud-hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-illustration {
    text-align: center;
    position: relative;
    min-height: 500px;
}

.cloud-scene {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Cloud */
.main-cloud {
    position: relative;
    z-index: 10;
}

.cloud-shape {
    position: relative;
    display: inline-block;
}

.cloud-shape > i {
    font-size: 300px;
    color: white;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.3));
}

.cloud-checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.cloud-checkmark i {
    font-size: 70px;
    color: white;
    font-weight: bold;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.7);
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.float-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: float-around 6s ease-in-out infinite;
}

.float-item i {
    font-size: 40px;
    color: #667eea;
    display: block;
}

.float-item.server {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.float-item.shield {
    top: 15%;
    right: 8%;
    animation-delay: 1.5s;
}

.float-item.speed {
    bottom: 20%;
    left: 8%;
    animation-delay: 3s;
}

.float-item.code {
    bottom: 15%;
    right: 5%;
    animation-delay: 4.5s;
}

@keyframes float-around {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) translateX(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-25px) translateX(5px) rotate(3deg);
    }
}

/* Data Lines */
.data-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: data-flow 4s linear infinite;
}

.line-1 {
    top: 30%;
    width: 60%;
    left: -60%;
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    width: 50%;
    left: -50%;
    animation-delay: 1.5s;
}

.line-3 {
    top: 70%;
    width: 70%;
    left: -70%;
    animation-delay: 3s;
}

@keyframes data-flow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ========================================
   2. CZYM JEST INOVEE CLOUD
   ======================================== */
.cloud-icon-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 250px;
    height: 250px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.cloud-icon-wrapper i {
    font-size: 120px;
    color: white;
}

/* ========================================
   3. JAK TO DZIAŁA (STEPS)
   ======================================== */
.step-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    text-align: center;
}

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

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(102, 126, 234, 0.1);
}

.step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

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

.step-icon i {
    font-size: 45px;
    color: white;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   4. DLACZEGO INOVEE CLOUD (BENEFITS)
   ======================================== */
.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15);
}

.benefit-icon i {
    font-size: 45px;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   5. ZARZĄDZANIE PRZEZ IMS
   ======================================== */
.ims-preview {
    position: relative;
}

.dashboard-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
}

.mockup-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    text-align: center;
}

.mockup-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float-stat 6s ease-in-out infinite;
    z-index: 10;
}

.floating-stat .stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.floating-stat .stat-text {
    display: flex;
    flex-direction: column;
}

.floating-stat .stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6c757d;
    margin: 0;
    line-height: 1;
}

.stat-1 {
    top: 25%;
    right: -5%;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 17%;
    left: -5%;
    animation-delay: 2s;
}

.stat-3 {
    top: 65%;
    right: 15%;
    animation-delay: 4s;
}

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

/* ========================================
   6. FAQ
   ======================================== */
.accordion-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    border-radius: 15px !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    filter: brightness(0);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    background: #f8f9fa;
}

/* ========================================
   7. COMPARISON SECTION
======================================== */
.comparison-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.comparison-table-wrapper {
    background: white;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.12);
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
}

.comparison-table thead th {
    padding: 1.8rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.15rem;
    border-bottom: 2px solid rgba(0,0,0,0.08);
    position: relative;
}

.comparison-table thead th i {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
    opacity: 0.9;
}

.category-column {
    width: 25%;
    text-align: left !important;
    background: #f8f9fa;
    border-right: 2px solid rgba(0,0,0,0.06);
}

.traditional-column {
    width: 37.5%;
    color: #dc3545;
    background: #fff;
    border-right: 2px solid rgba(0,0,0,0.06);
}

.inovee-column {
    width: 37.5%;
    color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.04) 0%, rgba(118, 75, 162, 0.06) 100%);
    position: relative;
}

.inovee-column::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(102, 126, 234, 0.03);
}

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

.comparison-table tbody td {
    padding: 1.5rem 1.5rem;
    vertical-align: middle;
}

.category-cell {
    background: #f8f9fa;
    font-size: 1rem;
    color: #212529;
    font-weight: 700;
    border-right: 2px solid rgba(0,0,0,0.06);
    letter-spacing: -0.02em;
}

.traditional-cell {
    background: #fff;
    border-right: 2px solid rgba(0,0,0,0.06);
}

.inovee-cell {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.04) 100%);
    position: relative;
}

.inovee-cell::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.cell-content {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.status-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.status-icon.negative {
    color: #dc3545;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.12) 0%, rgba(220, 53, 69, 0.08) 100%);
    border: 2px solid rgba(220, 53, 69, 0.2);
}

.status-icon.positive {
    color: #28a745;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.12) 0%, rgba(40, 167, 69, 0.08) 100%);
    border: 2px solid rgba(40, 167, 69, 0.2);
}

.comparison-table tbody tr:hover .status-icon.negative {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.18) 0%, rgba(220, 53, 69, 0.12) 100%);
    transform: scale(1.05);
}

.comparison-table tbody tr:hover .status-icon.positive {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.18) 0%, rgba(40, 167, 69, 0.12) 100%);
    transform: scale(1.05);
}

.cell-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #495057;
    font-weight: 500;
}

/* Benefits Summary Cards */
.benefits-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 2rem;
}

.benefit-summary-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.benefit-summary-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.benefit-summary-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.benefit-summary-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.benefit-summary-card p {
    font-size: 0.98rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 700px;
    }
    
    .comparison-table thead th {
        font-size: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .comparison-table thead th i {
        font-size: 2rem;
    }
    
    .comparison-table tbody td {
        padding: 1.5rem 1rem;
    }
    
    .traditional-cell,
    .inovee-cell {
        padding: 1.5rem 1rem;
        gap: 0.8rem;
    }
    
    .status-icon {
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
    
    .cell-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .comparison-table tbody td {
        padding: 1.2rem 0.8rem;
    }
    
    .traditional-cell,
    .inovee-cell {
        padding: 1.2rem 0.8rem;
        gap: 0.6rem;
    }
    
    .status-icon {
        font-size: 1.3rem;
        width: 32px;
        height: 32px;
    }
    
    .cell-text {
        font-size: 0.85rem;
    }
    
    .benefits-title {
        font-size: 1.5rem;
    }
    
    .benefit-summary-card {
        padding: 2rem 1rem;
        margin-bottom: 1rem;
    }
    
    .benefit-summary-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        border-radius: 15px;
    }
}

/* ========================================
   8. CTA SECTION
======================================== */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-size: cover;
    background-position: top;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white !important;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    color: white !important;
}

.cta-section .btn-light {
    padding: 12px 35px;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cta-section .btn-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cloud-scene {
        height: 400px;
    }
    
    .cloud-shape > i {
        font-size: 240px;
    }
    
    .cloud-checkmark {
        width: 100px;
        height: 100px;
    }
    
    .cloud-checkmark i {
        font-size: 60px;
    }
    
    .float-item {
        padding: 15px;
    }
    
    .float-item i {
        font-size: 35px;
    }
    
    .cloud-icon-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .cloud-icon-wrapper i {
        font-size: 100px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-top: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cloud-scene {
        height: 350px;
    }
    
    .cloud-shape > i {
        font-size: 200px;
    }
    
    .cloud-checkmark {
        width: 80px;
        height: 80px;
    }
    
    .cloud-checkmark i {
        font-size: 50px;
    }
    
    .float-item {
        padding: 12px;
    }
    
    .float-item i {
        font-size: 30px;
    }
    
    .hero-illustration {
        min-height: 350px;
    }
    
    .cloud-icon-wrapper {
        width: 180px;
        height: 180px;
        margin-bottom: 40px;
    }
    
    .cloud-icon-wrapper i {
        font-size: 80px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .floating-stat {
        padding: 12px 15px;
        gap: 10px;
    }
    
    .floating-stat .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .floating-stat .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* ========================================
   UTILITIES
   ======================================== */
.bg-light {
    background-color: #f8f9fa !important;
}

section[id] {
    scroll-margin-top: 80px;
}


