/* ==========================================================================
   WEB LAYOUT
   Core layout styles for structural elements
   ========================================================================== */

/* ==========================================================================
   GLOBAL LAYOUT RESET
   Base box model and body layout
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================================================
   FORCE LIGHT MODE - COMPLETE DARK MODE OVERRIDE
   Prevent any system dark mode interference with warmth design
   ========================================================================== */

/* POZIOM 1: Root-level forced light mode */
:root {
    color-scheme: light !important;
    -webkit-color-scheme: light !important;
    forced-color-adjust: none !important;
}

html {
    color-scheme: light !important;
    -webkit-color-scheme: light !important;
    forced-color-adjust: none !important;
    filter: none !important;
}

/* POZIOM 2: Wymuszenie wszystkich podstawowych kolorów */
* {
    color-scheme: light !important;
    -webkit-color-scheme: light !important;
}


body {
    font-family: 'Space Grotesk', -apple-system, system-ui, sans-serif !important;
    line-height: 1.6 !important;
    color: var(--warmth-charcoal) !important;
    background: var(--warmth-cream) !important;
    overflow-x: hidden !important;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24' 24'%3E%3Ccircle cx='12' cy='12' r='3' fill='%23C94A2A' opacity='0.5'/%3E%3C/svg%3E"), auto;
    color-scheme: light !important;
    -webkit-color-scheme: light !important;
}

/* ==========================================================================
   SCROLLBAR LAYOUT
   Custom scrollbar styling
   ========================================================================== */

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--warmth-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--warmth-primary);
    border-radius: 12px;
    border: 2px solid var(--warmth-cream);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--warmth-accent);
}

/* ==========================================================================
   HEADER LAYOUT
   Fixed header with backdrop blur and organic positioning
   ========================================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(251, 247, 242, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 74, 42, 0.1) !important;
    transform: translateY(0);
    transition: transform 0.4s var(--ease-organic);
    color: var(--warmth-charcoal) !important;
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.2rem 2.3rem 1.4rem 1.8rem; /* Nieregularne padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--warmth-primary);
    text-decoration: none;
    letter-spacing: -0.01em;
    transform: rotate(0deg); /* Bez rotacji */
    transition: transform 0.3s var(--ease-organic);
}

.logo:hover {
    transform: rotate(0deg) scale(1.02);
    color: var(--warmth-primary);
    text-decoration: none;
}

/* ==========================================================================
   HERO SECTION LAYOUT
   Main hero area with organic asymmetry and grid layout
   ========================================================================== */

.hero {
    padding: 3rem 2rem 3rem 2rem; /* Jeszcze większy padding - 3rem góra/dół */
    min-height: auto; /* Usunięcie sztywnej wysokości */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(201, 74, 42, 0.03) 0%, transparent 70%);
    border-radius: 60% 40% 70% 30%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(0deg) translateY(0px); }
    33% { transform: rotate(2deg) translateY(-10px); }
    66% { transform: rotate(-1deg) translateY(5px); }
}

.hero-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Asymetryczna proporcja */
    gap: 4rem; /* Maksymalna przestrzeń między kolumnami */
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   HERO VISUAL LAYOUT
   Right side visual container with organic styling
   ========================================================================== */

.hero-visual {
    position: relative;
    z-index: 2;
}

.visual-card {
    background: white;
    border-radius: 20px 15px 25px 10px; /* Nieregularny border-radius */
    padding: 2.5rem 2.1rem 2.8rem 2.3rem;
    box-shadow: var(--shadow-medium);
    transform: rotate(0deg);
    transition: transform 0.4s var(--ease-organic);
}

.visual-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: var(--shadow-strong);
}

/* Video placeholder layout */
.video-container {
    background: white;
    border-radius: 20px 15px 25px 10px;
    padding: 1.5rem; /* Zmniejszony padding w video container */
    box-shadow: var(--shadow-medium);
    transform: rotate(0deg);
    transition: transform 0.4s var(--ease-organic);
}

.video-container:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.05) 0%, rgba(42, 92, 78, 0.05) 100%);
    border-radius: 15px 12px 18px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s var(--ease-organic);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-stats {
    margin-top: 1.5rem;
    text-align: center;
}

.visual-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(232, 180, 143, 0.1);
    border-radius: 12px 8px 12px 8px;
    transform: rotate(0deg);
}

.stat-item:nth-child(even) {
    transform: rotate(0deg);
}

/* ==========================================================================
   SECTION LAYOUT
   Generic section container with organic spacing
   ========================================================================== */

.section {
    padding: 2.5rem 2rem; /* Zmniejszony padding między sekcjami */
    position: relative;
}

.section:nth-child(even) {
    background: rgba(232, 180, 143, 0.03);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
}

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

.section-title h2 {
    font-family: 'Crimson Text', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    color: var(--warmth-charcoal);
    margin-bottom: 1.3rem;
    font-weight: 600;
}

.section-title p {
    font-size: 1.1rem;
    color: rgba(44, 38, 37, 0.7);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================================================
   PROBLEMS GRID LAYOUT
   Problem cards in responsive grid with asymmetric gaps
   ========================================================================== */

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.1rem 1.8rem; /* Nieregularne gap */
    margin-bottom: 4rem;
}

.problem-card {
    background: white;
    padding: 2.2rem 2rem 2.4rem 1.9rem;
    border-radius: 18px 12px 20px 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease-organic);
    position: relative;
    transform: rotate(0deg);
}

.problem-card:nth-child(even) {
    transform: rotate(0deg);
}

.problem-card:hover {
    transform: translateY(-5px) rotate(0deg);
    box-shadow: var(--shadow-medium);
}

.problem-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(201, 74, 42, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--warmth-primary);
}

/* ==========================================================================
   TIMELINE LAYOUT
   Vertical timeline with organic flow and positioning
   ========================================================================== */

.timeline {
    position: relative;
    max-width: 50rem;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 2.5rem;
    bottom: 3.2rem;
    width: 3px;
    background: linear-gradient(180deg, var(--warmth-primary), var(--warmth-gold), var(--warmth-accent));
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3.2rem;
    padding-left: 5.5rem;
}

.timeline-marker {
    position: absolute;
    left: 0.8rem;
    top: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--warmth-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-soft);
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem 1.9rem 2.2rem 2.1rem;
    border-radius: 15px 25px 15px 25px;
    box-shadow: var(--shadow-soft);
    transform: rotate(0deg);
    transition: all 0.3s var(--ease-organic);
}

.timeline-item:nth-child(even) .timeline-content {
    transform: rotate(0deg);
}

.timeline-content:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.timeline-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warmth-accent);
    font-weight: 500;
    font-size: 0.9rem;
}

/* ==========================================================================
   PRICING CARDS LAYOUT
   Centered pricing grid with organic card styling
   ========================================================================== */

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px 15px 25px 10px;
    padding: 2.5rem 2.1rem 2.8rem 2.3rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    transform: rotate(0deg);
    transition: all 0.4s var(--ease-organic);
}

.pricing-card.recommended {
    transform: rotate(0deg) scale(1.05);
    background: linear-gradient(135deg, white 0%, rgba(201, 74, 42, 0.02) 100%);
    border: 2px solid var(--warmth-primary);
}

.pricing-card:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: var(--shadow-strong);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(201, 74, 42, 0.1);
    padding-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-cta {
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   EXPERT SECTION LAYOUT
   Expert card with authentic layout and stats grid
   ========================================================================== */

.expert-section {
    background: linear-gradient(135deg, rgba(42, 92, 78, 0.02) 0%, rgba(201, 74, 42, 0.02) 100%);
}

.expert-card {
    background: white;
    border-radius: 25px 15px 30px 20px;
    padding: 3rem 2.8rem 3.2rem 2.5rem;
    box-shadow: var(--shadow-medium);
    max-width: 50rem;
    margin: 0 auto;
    transform: rotate(0deg);
    transition: transform 0.4s var(--ease-organic);
}

.expert-card:hover {
    transform: rotate(0deg) scale(1.02);
}

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

.expert-photo {
    width: 6rem;
    height: 6rem;
    border-radius: 50% 40% 50% 40%;
    object-fit: cover;
    border: 3px solid var(--warmth-secondary);
}

.expert-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 74, 42, 0.1);
}

.expert-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(232, 180, 143, 0.08);
    border-radius: 12px 8px 15px 10px;
}

/* ==========================================================================
   FAQ LAYOUT
   Accordion-style FAQ with organic card design
   ========================================================================== */

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.2rem;
    border-radius: 15px 25px 15px 25px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s var(--ease-organic);
    transform: rotate(0.2deg);
}

.faq-item:nth-child(even) {
    transform: rotate(0deg);
}

.faq-item:hover {
    transform: rotate(0deg);
    box-shadow: var(--shadow-medium);
}

.faq-question {
    width: 100%;
    padding: 1.8rem 2.1rem 1.9rem 1.9rem;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--warmth-charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s var(--ease-organic);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: all 0.4s var(--ease-organic);
}

.faq-item.open .faq-answer {
    max-height: 1000px;
    overflow: hidden;
    padding: 1.5rem 2rem 2rem 2rem;
}

/* ==========================================================================
   FOOTER LAYOUT
   Main footer with grid layout for brand and navigation
   ========================================================================== */

footer {
    background: var(--warmth-charcoal) !important;
    color: white !important;
    margin-top: 4rem;
    padding: 3rem 0 2rem 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--warmth-secondary);
    letter-spacing: -0.01em;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

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

.footer-column h4 {
    color: var(--warmth-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--warmth-gold);
}

.footer-link-disabled {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    text-align: center;
}

.footer-credits {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-credits a {
    color: var(--warmth-secondary);
    text-decoration: none;
}

.footer-credits a:hover {
    color: var(--warmth-gold);
}

.ai-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   CERTIFICATES LAYOUT
   Certificate showcase grid with organic card styling
   ========================================================================== */

.certificates-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    margin-top: 3rem;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
}

.certificate-card {
    background: white;
    border-radius: 20px 15px 25px 12px;
    box-shadow: var(--shadow-medium);
    overflow: visible;
    transition: all 0.4s var(--ease-organic);
    transform: rotate(0deg);
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
}

.certificate-card.caiwb {
    border: 3px solid var(--warmth-primary);
}

.certificate-card.caiba {
    border: 3px solid var(--warmth-accent);
    transform: rotate(0deg);
}

.certificate-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.certificate-header {
    background: linear-gradient(135deg, var(--warmth-primary) 0%, var(--warmth-gold) 100%);
    padding: 2rem 2.5rem 2.2rem 2.3rem;
    position: relative;
    overflow: hidden;
    border-radius: 20px 15px 0 0;
}

.certificate-card.caiba .certificate-header {
    background: linear-gradient(135deg, var(--warmth-accent) 0%, var(--warmth-plum) 100%);
}

.certificate-image {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    width: 80px;
    height: 80px;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    z-index: 2;
}

/* Fix dla CAIBA background */
.certificate-card.caiba .certificate-image img {
    mix-blend-mode: multiply;
    filter: drop-shadow(0 0 0 transparent);
}

@keyframes certificate-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.certificate-body {
    padding: 2.5rem 2.3rem 2.8rem 2.5rem;
}

.certificate-requirements h4 {
    color: var(--warmth-charcoal);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.requirements-list {
    list-style: none;
    margin-bottom: 2rem;
}

.requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: rgba(44, 38, 37, 0.8);
    line-height: 1.5;
}

.requirement-dot {
    width: 8px;
    height: 8px;
    background: var(--warmth-primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
    box-shadow: 0 0 0 3px rgba(201, 74, 42, 0.2);
}

.requirement-dot.advanced {
    background: var(--warmth-accent);
    box-shadow: 0 0 0 3px rgba(42, 92, 78, 0.2);
}

.certificate-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: rgba(201, 74, 42, 0.05);
    border-radius: 15px 10px 15px 10px;
    border: 1px solid rgba(201, 74, 42, 0.1);
}

.certificate-card.caiba .certificate-value {
    background: rgba(42, 92, 78, 0.05);
    border: 1px solid rgba(42, 92, 78, 0.1);
}

/* ==========================================================================
   CERTIFICATE BENEFITS LAYOUT
   Benefits grid with organic card design and value points
   ========================================================================== */

.certificate-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 65rem;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    border-radius: 18px 12px 20px 15px;
    padding: 2.5rem 2.2rem 2.8rem 2.4rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--ease-organic);
    transform: rotate(0deg);
}

.benefit-card.bonus-card {
    background: linear-gradient(135deg, rgba(212, 146, 90, 0.05) 0%, rgba(212, 146, 90, 0.02) 100%);
    border: 2px solid rgba(212, 146, 90, 0.2);
}

.benefit-card.value-card {
    background: linear-gradient(135deg, rgba(201, 74, 42, 0.05) 0%, rgba(201, 74, 42, 0.02) 100%);
    border: 2px solid rgba(201, 74, 42, 0.2);
    transform: rotate(0deg);
}

.benefit-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: var(--shadow-medium);
}

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

.bonus-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 146, 90, 0.2);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.detail-icon {
    font-size: 1.2rem;
    width: 1.5rem;
    text-align: center;
}

.value-points {
    display: grid;
    gap: 1.2rem;
}

.value-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(201, 74, 42, 0.03);
    border-radius: 12px 8px 12px 8px;
    border-left: 3px solid var(--warmth-primary);
}

.point-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* ==========================================================================
   TABLET RESPONSIVE LAYOUT
   ========================================================================== */

@media (max-width: 1024px) {
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 3rem;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE LAYOUT
   Mobile breakpoint adjustments for layout elements
   ========================================================================== */

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .visual-card {
        transform: rotate(0deg);
        margin-bottom: 2rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problems-grid .problem-card[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expert-card {
        max-width: 100%;
        margin: 0;
        padding: 2rem 1.5rem;
    }
    
    .expert-header {
        flex-direction: column;
        text-align: center;
    }
    
    .expert-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 250px;
        margin: 2rem auto 0;
    }
    
    footer {
        padding: 2rem 0 1.5rem 0;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-brand {
        text-align: center;
        gap: 0.75rem;
    }
    .footer-logo-text {
        font-size: 1.3rem;
    }
    .footer-tagline {
        font-size: 0.9rem;
        max-width: 280px;
        margin: 0 auto;
    }
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 300px;
        margin: 0 auto;
    }
    .footer-column {
        text-align: center;
    }
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    .footer-column ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-column li {
        margin-bottom: 0;
    }
    .footer-column a {
        font-size: 0.9rem;
        padding: 0.25rem 0;
        display: inline-block;
    }
    .footer-link-disabled {
        font-size: 0.9rem;
        padding: 0.25rem 0;
        display: inline-block;
    }
    .footer-bottom {
        padding: 0 1rem;
    }
    .footer-credits {
        font-size: 0.8rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .footer-credits span {
        display: block;
        margin: 0.2rem 0;
    }
    .footer-credits span:nth-child(2),
    .footer-credits span:nth-child(4) {
        display: none;
    }
    .ai-disclaimer {
        font-size: 0.8rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .header-container {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }

    .section {
        padding: 2.5rem 1.5rem 2rem 1.5rem;
    }
    
    .timeline::before {
        left: 1rem;
        top: 2.5rem;
        bottom: 3.2rem;
    }
    
    .timeline-item {
        padding-left: 3.5rem;
    }
    
    .timeline-marker {
        left: 0.3rem;
    }
    
    .certificates-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .certificate-card {
        transform: rotate(0deg);
    }
    
    .certificate-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-card {
        transform: rotate(0deg);
    }
    
    .certificate-header {
        padding: 1.8rem 1.5rem 2rem 1.5rem;
    }
    
    .certificate-body {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   MOBILE MENU SYSTEM
   Responsive hamburger menu for mobile navigation
   ========================================================================== */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--warmth-charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--warmth-cream);
    z-index: 9999;
    padding: 2rem 0;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(201, 74, 42, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(201, 74, 42, 0.03);
}

.mobile-menu-header-cta {
    background: var(--warmth-primary);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: var(--border-radius-organic-small);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.mobile-menu-header-cta:hover {
    background: var(--warmth-forest);
    transform: translateY(-1px);
}

.mobile-menu-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--warmth-primary);
    text-decoration: none;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--warmth-charcoal);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-nav {
    padding: 2rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 2rem;
    color: var(--warmth-charcoal);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(201, 74, 42, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: rgba(201, 74, 42, 0.05);
    color: var(--warmth-primary);
    padding-left: 2.5rem;
}

.mobile-nav-link-disabled {
    display: block;
    padding: 1rem 2rem;
    color: rgba(44, 38, 37, 0.4);
    font-weight: 500;
    border-bottom: 1px solid rgba(201, 74, 42, 0.05);
}

.mobile-menu-cta {
    margin: 2rem;
    background: var(--warmth-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-organic-medium);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.mobile-menu-cta:hover {
    background: var(--warmth-forest);
}

/* Tablet responsive - compact navigation */
@media (max-width: 1024px) and (min-width: 901px) {
    .header-nav {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .header-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Mobile menu responsive - show hamburger very early */
@media (max-width: 1100px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .mobile-menu-overlay {
        display: none;
    }
}

/* ==========================================================================
   WEB.HTML SPECIFIC LAYOUTS
   Layout patterns specific to web.html page
   ========================================================================== */

/* Grid layouts for cards and components */
.auto-fit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.three-columns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.results-mobile-grid {
    display: grid;
    gap: 1rem;
    padding: 0 0.5rem;
}

/* Responsive mobile adjustments for web.html */
@media (max-width: 768px) {
    .three-columns-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .auto-fit-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

