/**
 * PyziTheme - homepage.css (pyzitheme/assets/css/homepage.css)
 * 
 * Styl dla strony głównej
 *
 * @package     PyziTheme
 * @subpackage  Assets/CSS
 * @author      Patryk Kowalski <p.kowalski@kamikstudio.pl>
 * @copyright   2025 KamikStudio & PyziPyzi
 * @license     Proprietary
 * @version     1.0.0
 * @since       1.0.0
 * 
 * Client: PyziPyzi - Domowe wyroby cukiernicze
 * Website: https://pyzipyzi.pl
 * 
 * This file is part of PyziTheme.
 * Unauthorized copying or distribution is prohibited.
 */

/* ==================== GLOBAL STYLES ==================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-weight: 400;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary {
    background: #ef6341;
    color: #fff;
    border-color: #ef6341;
}

.btn-primary:hover {
    background: #d94f2e;
    border-color: #d94f2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 99, 65, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ef6341;
    border-color: #ef6341;
}

.btn-secondary:hover {
    background: #ef6341;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 99, 65, 0.2);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

/* ==================== SECTION TRANSITIONS ==================== */
.section-transition {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-top: -1px;
}

.section-transition svg {
    width: 100%;
    height: auto;
    display: block;
}

.wave-transition svg path {
    animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { d: path("M0,50 Q360,0 720,50 T1440,50 L1440,100 L0,100 Z"); }
    50% { d: path("M0,50 Q360,100 720,50 T1440,50 L1440,100 L0,100 Z"); }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background-image: url('https://pyzipyzi.pl/wp-content/uploads/2024/02/cukiernia_pyzipyzi_mobilna_cukiernia.jpeg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: none;
}

.hero-content {
    display: none;
}

.hero-title {
    display: none;
}

.hero-subtitle {
    display: none;
}

.hero-buttons {
    display: none;
}

.hero-image {
    display: none;
}

/* Ukryj transition - to powodowało biały pasek */
.hero-section .section-transition {
    display: none;
}

/* ==================== VALUES SECTION ==================== */
.values-section {
    padding: 100px 0;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: #ef6341;
    box-shadow: 0 12px 40px rgba(239, 99, 65, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ef6341 0%, #ff8a6b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 100px 0 120px;
    background: #f9f9f9;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-label {
    display: inline-block;
    background: #ef6341;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.about-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-text {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 40px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: #ef6341;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.about-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-badge span {
    font-size: 24px;
    font-weight: 800;
    color: #ef6341;
}

/* ==================== VIDEO SECTION ==================== */
.video-section {
    padding: 100px 0 120px;
    background: #f9f9f9;
    position: relative;
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==================== REVIEWS SECTION ==================== */
.reviews-section {
    padding: 100px 0;
    background: #fff;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.review-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #ef6341;
    box-shadow: 0 12px 40px rgba(239, 99, 65, 0.1);
}

.review-stars {
    color: #ffc107;
    font-size: 24px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-author strong {
    font-size: 16px;
    color: #1a1a1a;
}

.review-author span {
    font-size: 14px;
    color: #999;
}

.reviews-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.review-prev,
.review-next {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    border: 2px solid #ef6341;
    background: #fff;
    color: #ef6341;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.review-prev:hover,
.review-next:hover {
    background: #ef6341;
    color: #fff;
    transform: scale(1.1);
}

/* ==================== OFFER SECTION ==================== */
.offer-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.weekly-offer-wrapper {
    position: relative;
    max-width: 1600px;
    margin: 0 auto 40px;
    padding: 0 80px;
}

.weekly-offer-slider {
    display: flex;
    gap: -40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 60px 20px;
    align-items: center;
}

.weekly-offer-slider::-webkit-scrollbar {
    display: none;
}

.day-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: inherit;
    flex: 0 0 280px;
    width: 280px;
    transform: rotate(12deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 -20px;
    z-index: 1;
}

.day-card:hover {
    transform: rotate(0deg) scale(1.15) translateY(-10px);
    box-shadow: 0 20px 60px rgba(239, 99, 65, 0.3);
    z-index: 100;
}

.day-card:nth-child(even) {
    transform: rotate(-12deg);
}

.day-card:nth-child(even):hover {
    transform: rotate(0deg) scale(1.15) translateY(-10px);
}

.day-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.day-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.day-card:hover .day-image img {
    transform: scale(1.15);
}

.day-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FFE500;
    color: #000;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
    z-index: 10;
}

.day-content {
    padding: 24px;
    background: #fff;
}

.day-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.day-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.offer-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    min-width: 55px;
    min-height: 55px;
    border-radius: 50%;
    border: 3px solid #ef6341;
    background: #fff;
    color: #ef6341;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0;
    flex-shrink: 0;
}

.offer-arrow:hover {
    background: #ef6341;
    color: #fff;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 30px rgba(239, 99, 65, 0.4);
}

.offer-arrow svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.offer-prev {
    left: 10px;
}

.offer-next {
    right: 10px;
}

.offer-note {
    text-align: center;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.offer-note strong {
    color: #1a1a1a;
    font-weight: 700;
}

.offer-note a {
    color: #ef6341;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.offer-note a:hover {
    color: #d94f2e;
    text-decoration: underline;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .weekly-offer-slider {
        gap: -30px;
        padding: 50px 15px;
    }
    
    .day-card {
        flex: 0 0 240px;
        width: 240px;
        margin: 0 -15px;
    }
    
    .day-image {
        height: 260px;
    }
    
    .offer-arrow {
        width: 50px;
        height: 50px;
    }
}

/* ==================== PARTNERS SECTION ==================== */
.partners-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.partners-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.partners-slider {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    flex: 1;
}

.partner-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 130px;
    overflow: visible;
}

.partner-logo:hover {
    transform: translateY(-8px);
    border-color: #ef6341;
    box-shadow: 0 12px 35px rgba(239, 99, 65, 0.2);
}

.partner-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.partner-logo img {
    max-width: 100%;
    max-height: 90px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    object-fit: contain;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-name {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    text-align: center;
    transition: color 0.3s ease;
}

.partner-logo:hover .partner-name {
    color: #ef6341;
}

/* Tooltip */
.partner-tooltip {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #1a1a1a;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.partner-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #1a1a1a;
}

.partner-logo:hover .partner-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.partners-prev,
.partners-next {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    border: 2px solid #ef6341;
    background: #fff;
    color: #ef6341;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.partners-prev:hover,
.partners-next:hover {
    background: #ef6341;
    color: #fff;
    transform: scale(1.1);
}

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

.partners-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.partners-charity {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.partners-charity strong {
    color: #ef6341;
    font-weight: 700;
}

/* ==================== BLOG SECTION ==================== */
.blog-section {
    padding: 100px 0;
    background: #fff;
}

.blog-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.blog-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #ef6341 #f0f0f0;
    padding: 20px 0 40px;
    cursor: grab;
}

.blog-slider:active {
    cursor: grabbing;
}

.blog-slider::-webkit-scrollbar {
    height: 8px;
}

.blog-slider::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.blog-slider::-webkit-scrollbar-thumb {
    background: #ef6341;
    border-radius: 10px;
}

.blog-slider::-webkit-scrollbar-thumb:hover {
    background: #d94f2e;
}

.blog-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ef6341;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(239, 99, 65, 0.4);
}

.blog-date time {
    font-size: 24px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-date span {
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 2px;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    color: #999;
}

.blog-author {
    font-weight: 600;
    color: #666;
}

.blog-reading-time {
    color: #999;
}

/* Special "More" card */
.blog-card-more {
    background: linear-gradient(135deg, #ef6341 0%, #ff8a6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-more:hover {
    transform: translateY(-10px) scale(1.05);
}

.blog-more-content {
    text-align: center;
    color: #fff;
    padding: 40px;
}

.blog-more-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.blog-card-more:hover .blog-more-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.blog-more-icon svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
}

.blog-more-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.blog-more-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1024px) {
    .hero-section {
        height: 65vh;
        min-height: 500px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .partners-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 55vh;
        min-height: 400px;
    }
    
    .values-section,
    .about-section,
    .video-section,
    .reviews-section,
    .offer-section,
    .partners-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .about-buttons .btn {
        width: 100%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partners-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partners-prev,
    .partners-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    /* Blog Section Mobile */
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-slider {
        gap: 20px;
        padding: 10px 0 30px;
    }
    
    .blog-card {
        flex: 0 0 300px;
        min-width: 300px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h3 {
        font-size: 18px;
    }
    
    .blog-excerpt {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        height: 45vh;
        min-height: 350px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .about-content,
    .offer-content,
    .review-card {
        padding: 25px;
    }
    
    .partners-slider {
        grid-template-columns: 1fr;
    }
}

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

.hero-content,
.value-card,
.about-content,
.offer-card,
.review-card {
    animation: fadeInUp 0.8s ease-out;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.offer-card:nth-child(1) { animation-delay: 0.1s; }
.offer-card:nth-child(2) { animation-delay: 0.2s; }
.offer-card:nth-child(3) { animation-delay: 0.3s; }
.offer-card:nth-child(4) { animation-delay: 0.4s; }

/* ==================== UTILITIES ==================== */
.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }