/* index.css - Dietido Landing Page */

/* --- Ogólne Style dla Strony Głównej --- */

/* Korekta marginesów nagłówków */
h2 {
    text-align: center;
    margin-bottom: 60px;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

/* --- SEKCJA 1: HERO --- */
.hero-section {
    background: linear-gradient(135deg, var(--light-bg-color) 0%, #ffffff 100%);
    padding: 80px 0 100px;
    overflow: hidden; /* Zapobiega ucinaniu cieni i elementów 3D */
    position: relative;
}

.hero-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Lewa strona - Tekst */
.hero-text-side {
    z-index: 2;
}

.hero-text-side h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-color);
}

.hero-text-side .subtitle {
    font-size: 1.2rem; /* Powiększone dla lepszej czytelności */
    color: #4a4a4a;    /* Ciemniejszy szary dla lepszego kontrastu */
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.text-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.text-link:hover {
    color: var(--secondary-color);
}

.social-proof-text {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-logos-row {
    display: flex;
    gap: 25px;
    align-items: center;
}

.social-logos-row img {
    height: 35px; /* Ujednolicenie wysokości logotypów klientów */
    width: auto;
    filter: grayscale(100%); /* Efekt szarości, żeby nie odwracały uwagi */
    opacity: 0.6;
    transition: all 0.3s;
}

.social-logos-row img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Prawa strona - Wizualizacje 3D */
.hero-visual-side {
    position: relative;
    perspective: 1000px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 500px;
    transform-style: preserve-3d;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.visual-container:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

/* Główny ekran panelu */
.hero-main-screen {
    width: 100%;
    border-radius: 12px;
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.15), 
        0 0 0 1px rgba(0,0,0,0.05);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 1;
}

/* Unoszące się karty (Floating Cards) */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

/* Karta 1: Etykieta (zamiast apki mobilnej) */
.card-mobile {
    bottom: -10px;
    left: -20px;
    width: 150px; /* Nieco szersza dla etykiety */
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid #fff;
    animation-delay: 0s;
}

.card-mobile img {
    width: 100%;
    display: block;
}

/* Karta 2: Powiadomienie o Alergenach (Alert) */
.card-notification {
    top: 60px;
    right: -30px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 280px;
    animation-delay: 3s;
    background: #fff;
    border-left: 4px solid #d32f2f; /* Czerwony pasek ostrzegawczy */
}

.notif-icon {
    background: #ffebee; /* Jasny czerwony tło */
    color: #d32f2f;      /* Czerwona ikona */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notif-content {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notif-content strong {
    color: #d32f2f; /* Tytuł alertu na czerwono */
}

.notif-content span {
    font-size: 0.75rem;
    color: #666;
}

/* Tło glow */
.glow-effect {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(130, 195, 65, 0.15) 0%, rgba(255,255,255,0) 70%); /* Dopasowane do zieleni Dietido */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    border-radius: 50%;
    filter: blur(40px);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* --- SEKCJA 2: PROBLEM --- */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.problem-item {
    background: var(--white-color);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-item h3 {
    color: var(--text-color);
    margin-top: 15px;
}

.problem-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.problem-item .icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* --- SEKCJA 3: ROZWIĄZANIE (DIETIDO) --- */
#rozwiazanie {
    background-color: var(--light-bg-color);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    background: var(--white-color);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column; /* Aby "Efekt" był zawsze na dole */
}

.solution-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: rgba(44, 130, 201, 0.05); /* Bardzo jasny niebieski podkład */
}

.card-icon-wrapper img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.solution-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Styl dla akapitu "Efekt" */
.solution-card .effect {
    font-weight: 600;
    color: var(--accent-color);
    margin-top: auto; 
    font-size: 0.9rem;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* --- SEKCJA 4: PROCES --- */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: center;
}

.step {
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(16, 78, 139, 0.3);
}

/* --- SEKCJA 5: CASE STUDY --- */
#case-study {
    background-color: var(--light-bg-color);
}

.case-study-content {
    background: var(--white-color);
    padding: 50px;
    border-radius: 16px;
    display: flex;
    gap: 60px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.quote-section {
    flex-basis: 60%;
    border-left: 5px solid var(--accent-color);
    padding-left: 30px;
}

.quote-section blockquote {
    font-style: italic;
    font-size: 1.25rem; /* Zwiększona czcionka cytatu */
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.quote-section cite {
    display: block;
    font-size: 1rem;
    color: #555;
    font-style: normal;
}

.metrics-section {
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metric-item {
    text-align: center;
    background: var(--light-bg-color);
    padding: 20px;
    border-radius: 12px;
}

.metric-item .value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.1;
    margin-bottom: 5px;
}

.metric-item .description {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* --- SEKCJA 6: FORMULARZ CTA --- */
.cta-form-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

#contact-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 130, 201, 0.1);
}

/* Custom Checkbox Styling */
.form-group.consent {
    position: relative;
    display: flex;
    align-items: center; /* Wyśrodkowanie elementów w kontenerze */
    justify-content: flex-start; /* Wyrównanie do lewej */
    text-align: left; /* Ważne: resetuje dziedziczone text-align: center */
    margin-bottom: 15px;
    min-height: 24px; /* Minimalna wysokość dla estetyki */
}

/* Ukrywamy domyślny input, ale zostawiamy go dostępnym dla klawiatury */
.form-group.consent input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
    margin: 0;
}

/* Stylizacja etykiety i tekstu */
.form-group.consent label {
    position: relative;
    padding-left: 30px; /* Zmniejszony odstęp, tekst bliżej checkboxa */
    cursor: pointer;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    user-select: none;
    width: auto; /* Label zajmuje tylko tyle ile trzeba */
    display: inline-block;
    margin: 0; /* Reset marginesów */
}

/* Własny kwadrat checkboxa - wyśrodkowany pionowo */
.form-group.consent label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* Idealne centrowanie w pionie */
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.2s ease;
}

/* "Ptaszek" (checkmark) - wyśrodkowany pionowo */
.form-group.consent label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    /* Dodajemy translateY(-60%) dla ptaszka, bo optycznie środek jest nieco wyżej */
    transform: translateY(-60%) rotate(45deg) scale(0);
    opacity: 0;
    transition: all 0.2s ease;
}

/* Hover na niezaznaczonym */
.form-group.consent:hover label::before {
    border-color: var(--primary-color);
}

/* Stan zaznaczony - tło */
.form-group.consent input[type="checkbox"]:checked + label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(44, 130, 201, 0.3);
}

/* Stan zaznaczony - ptaszek */
.form-group.consent input[type="checkbox"]:checked + label::after {
    transform: translateY(-60%) rotate(45deg) scale(1);
    opacity: 1;
}

/* Focus (dostępność klawiaturowa) */
.form-group.consent input[type="checkbox"]:focus + label::before {
    box-shadow: 0 0 0 3px rgba(44, 130, 201, 0.2);
    border-color: var(--primary-color);
}

/* Link wewnątrz etykiety */
.form-group.consent a {
    color: var(--primary-color);
    text-decoration: underline;
    position: relative;
    z-index: 2;
}

.form-group.consent a:hover {
    color: var(--secondary-color);
}

#contact-form button {
    width: 100%;
    border: none;
    margin-top: 10px;
}

/* --- SEKCJA 7: FAQ --- */
#faq {
    background-color: var(--light-bg-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.faq-question {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
}

.faq-question .toggle-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Wystarczająco dużo na tekst */
}

/* --- MEDIA QUERIES --- */

/* Tablet i małe laptopy (max 992px) */
@media (max-width: 992px) {
    .hero-modern-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .social-logos-row {
        justify-content: center;
    }

    .visual-container {
        height: 400px;
        transform: none; /* Wyłączenie 3D dla czytelności */
    }

    .card-mobile {
        left: 5%;
    }
    
    .card-notification {
        right: 0;
    }

    /* Zmiana siatki rozwiązań na 1 kolumnę dla lepszej czytelności na tabletach */
    .solution-grid {
        grid-template-columns: 1fr; 
        max-width: 600px;
    }
    
    .case-study-content {
        flex-direction: column;
        padding: 30px;
    }
    
    .quote-section {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }
    
    .metrics-section {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .metric-item {
        flex: 1;
    }
}

/* Mobile (max 768px - dostosowanie z common.css + tutaj) */
@media (max-width: 768px) {
    .process-steps { 
        flex-direction: column; 
    }

    .metrics-section {
        flex-direction: column; /* Na mobile metryki jedna pod drugą */
    }
}

/* Małe ekrany (max 480px) */
@media (max-width: 480px) {
    .hero-text-side h1 {
        font-size: 2.2rem;
    }
    
    .visual-container {
        height: 320px;
    }
    
    /* Na bardzo małych ekranach ukrywamy dymki, żeby nie zasłaniały głównego widoku */
    .floating-card {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .cta-button,
    .hero-buttons .text-link {
        width: 100%;
        text-align: center;
    }
}