/**
 * SNCL4ME Product Page Styles
 * Modern, full-width design with theme colors
 */

/* Force full width on the existing theme container */
.page-template-page-sncl4me .site-content {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden;
}

/* Theme Color Variables */
:root {
    --amace-primary: #04476e;
    --amace-primary-dark: #022a42;
    --amace-secondary: #f58615;
    --amace-secondary-hover: #d6700a;
    --amace-text-dark: #1e293b;
    --amace-text-light: #64748b;
    --amace-bg-light: #f8fafc;
    --amace-bg-white: #ffffff;
    --amace-success: #10b981;
    --amace-danger: #ef4444;
    --amace-font-main: 'Didact Gothic', system-ui, -apple-system, sans-serif;

    --primary-color: #04476e;
    --primary-dark: #022a42;
    --secondary-color: #f58615;
    --secondary-hover: #d6700a;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
}

/* AMaCE Container */
.amace-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* Button Styles */
.amace-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.amace-btn-primary {
    background: var(--amace-secondary);
    color: white;
    box-shadow: 0 4px 14px rgba(245, 134, 21, 0.4);
}

.amace-btn-primary:hover {
    background: var(--amace-secondary-hover);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 6px 20px rgba(245, 134, 21, 0.6);
}

.amace-btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.amace-btn-secondary:hover {
    background: white;
    color: var(--amace-primary);
    transform: translateY(-2px);
}

/* ===================================
   Hero Section (AMaCE Style)
   =================================== */
.amace-hero {
    position: relative;
    background: linear-gradient(135deg, var(--amace-primary-dark) 0%, var(--amace-primary) 100%);
    padding: 8rem 0 6rem;
    color: white;
    overflow: hidden;
}

.amace-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(245, 134, 21, 0.15), transparent 40%);
    pointer-events: none;
}

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

.amace-hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.amace-hero-content h2 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 1rem;
}

.amace-hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.7;
}

.amace-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start !important;
}

/* FORCE LEFT ALIGNMENT */
.amace-hero-content,
.amace-hero-content h1,
.amace-hero-content h2,
.amace-hero-content .amace-hero-desc {
    text-align: left !important;
    align-items: flex-start;
}

/* Abstract CSS Visual */
.amace-hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: absolute;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.card-main {
    z-index: 2;
    width: 280px;
    transform: rotate(-3deg);
}

.card-back {
    z-index: 1;
    width: 240px;
    transform: rotate(6deg) translate(40px, -20px);
    opacity: 0.6;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-icon {
    font-size: 2rem;
}

.app-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.app-module {
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.app-module.active {
    background: rgba(245, 134, 21, 0.2);
    border-left-color: var(--amace-secondary);
}

.module-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ===================================
   Why SNCL4ME Section
   =================================== */
.why-sncl4me-section {
    background: #ffffff;
}

.struggles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.struggle-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--danger-color);
    transition: all 0.3s ease;
}

.struggle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-left-color: #c0392b;
}

.struggle-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.struggle-item p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.sncl4me-solution {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--primary-color);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(4, 71, 110, 0.3);
}

.solution-text {
    font-size: 1.5rem;
    color: var(--amace-secondary) !important;
    margin-bottom: 0.5rem;
}

.solution-text strong {
    color: var(--amace-secondary) !important;
}

.solution-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* ===================================
   What SNCL4ME Offers Section
   =================================== */
.what-sncl4me-offers-section {
    background: var(--bg-light);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.sncl4me-module-item {
    display: flex;
    gap: 1.25rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sncl4me-module-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.module-number {
    flex-shrink: 0;
    width: 32px !important;
    height: 32px !important;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff9f43 100%);
    color: #ffffff;
    font-size: 1.1rem !important;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(245, 134, 21, 0.3);
}

.module-content {
    flex: 1;
}

.module-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.module-intro {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.module-features-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.module-features-list li {
    padding: 0.35rem 0.65rem;
    background: rgba(4, 71, 110, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 0.8rem;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.module-features-list li:hover {
    background: rgba(4, 71, 110, 0.1);
}

.module-features-list li:before {
    content: none;
}

.module-footer {
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ===================================
   Who Should Use Section
   =================================== */
.who-should-use-sncl4me-section {
    background: #ffffff;
}

.sncl4me-users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.sncl4me-user-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.sncl4me-user-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(4, 71, 110, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, rgba(4, 71, 110, 0.05) 100%);
}

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

.sncl4me-user-item p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.sncl4me-users-footer {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
}

/* ===================================
   Key Benefits Section
   =================================== */
.sncl4me-benefits-section {
    background: var(--bg-light);
}

.sncl4me-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.sncl4me-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--success-color);
}

.sncl4me-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.benefit-check {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--success-color);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.sncl4me-benefit-item p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   Why Stands Out Section
   =================================== */
.why-stands-out-section {
    background: #ffffff;
}

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

.stands-out-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.stands-out-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(245, 134, 21, 0.15);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, rgba(245, 134, 21, 0.05) 100%);
}

.stands-out-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.stands-out-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stands-out-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   How Helps Team Section
   =================================== */
.how-helps-team-section {
    background: var(--bg-light);
}

.helps-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.helps-team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.helps-team-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(4, 71, 110, 0.2);
    border-color: var(--primary-color);
}

.team-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.helps-team-item p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.helps-team-footer-box {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--primary-color);
    border-radius: 12px;
    text-align: center;
}

.helps-team-footer {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* ===================================
   Download Section
   =================================== */
.sncl4me-download-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: #ffffff;
}

.sncl4me-download-section .section-title {
    color: #ffffff;
}

.sncl4me-download-section .section-description {
    color: rgba(255, 255, 255, 0.85);
}

.download-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ===================================
   FAQ Section
   =================================== */
.sncl4me-faq-section {
    background: var(--bg-light);
}

.sncl4me-faq-list {
    max-width: 900px;
    margin: 2rem auto 0;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 2px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(4, 71, 110, 0.1);
}

.faq-item[open] {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(4, 71, 110, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
    list-style: none;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.faq-item[open] .faq-question {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
}

.faq-question-text {
    flex: 1;
}

.faq-toggle-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: 1rem;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: all 0.3s ease;
}

.faq-toggle-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-toggle-icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Final CTA Section (AMaCE Style)
   =================================== */
.training-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    text-align: center;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.training-cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    border: 20px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.training-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.training-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
}

.training-cta-section h2,
.training-cta-section .training-cta-title {
    color: #ffffff !important;
}

.training-cta-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 2.5rem;
}

.training-cta-section p,
.training-cta-section .training-cta-description {
    color: rgba(255, 255, 255, 0.9) !important;
}

.training-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.training-cta-buttons .button-primary {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.training-cta-buttons .button-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 134, 21, 0.4);
}

.training-cta-buttons .button-secondary {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.training-cta-buttons .button-secondary:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
}


/* ===================================
   Responsive Design - Enhanced for Mobile & Tablet
   =================================== */

/* Tablet View (768px - 968px) */
@media (max-width: 968px) {

    /* Hero Section - Compact */
    .amace-hero {
        padding: 4rem 0 3rem;
    }

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

    .amace-hero-content {
        order: -1 !important;
        text-align: center;
    }

    .amace-hero-visual {
        display: none;
        /* Hide visual on tablet and mobile */
    }

    .amace-hero-content h1 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .amace-hero-content h2 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .amace-hero-desc {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .amace-hero-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .amace-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Section Padding - Compact */
    .why-sncl4me-section,
    .what-sncl4me-offers-section,
    .who-should-use-sncl4me-section,
    .sncl4me-benefits-section,
    .why-stands-out-section,
    .how-helps-team-section,
    .sncl4me-download-section,
    .sncl4me-faq-section,
    .training-cta-section {
        padding: 3rem 0;
    }

    .section-padding {
        padding: 3rem 0;
    }

    /* Typography - Smaller */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Struggles Grid - Compact */
    .struggles-grid,
    .modules-grid,
    .sncl4me-users-grid,
    .sncl4me-benefits-grid,
    .stands-out-grid,
    .helps-team-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .struggle-item {
        padding: 1.25rem;
        gap: 0.875rem;
    }

    .struggle-icon {
        font-size: 1.35rem;
    }

    .struggle-item p {
        font-size: 0.9rem;
    }

    /* Solution Box - Compact */
    .sncl4me-solution {
        margin-top: 2rem;
        padding: 2rem;
    }

    .solution-text {
        font-size: 1.35rem;
        margin-bottom: 0.4rem;
    }

    .solution-subtitle {
        font-size: 1.1rem;
    }

    /* Modules - Compact */
    .sncl4me-module-item {
        flex-direction: row !important;
        gap: 1rem;
        padding: 1.25rem;
    }

    .module-number {
        width: 30px !important;
        height: 30px !important;
        font-size: 1rem !important;
    }

    .module-title {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .module-intro {
        font-size: 0.875rem;
        margin-bottom: 0.65rem;
    }

    .module-features-list {
        gap: 0.4rem;
    }

    .module-features-list li {
        padding: 0.3rem 0.6rem;
        font-size: 0.775rem;
    }

    .module-footer {
        margin-top: 0.65rem;
        font-size: 0.8rem;
    }

    /* Users Grid - Compact */
    .sncl4me-user-item {
        padding: 1.5rem 1.25rem;
    }

    .user-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .sncl4me-user-item p {
        font-size: 0.95rem;
    }

    .sncl4me-users-footer {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    /* Benefits - Compact */
    .sncl4me-benefit-item {
        padding: 1.25rem;
        gap: 0.875rem;
    }

    .benefit-check {
        width: 36px;
        height: 36px;
        font-size: 1.35rem;
    }

    .sncl4me-benefit-item p {
        font-size: 0.9rem;
    }

    /* Stands Out - Compact */
    .stands-out-item {
        padding: 2rem 1.5rem;
    }

    .stands-out-icon {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .stands-out-title {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .stands-out-desc {
        font-size: 0.9rem;
    }

    /* Helps Team - Compact */
    .helps-team-item {
        padding: 1.5rem 1.25rem;
    }

    .team-icon {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }

    .helps-team-item p {
        font-size: 0.9rem;
    }

    .helps-team-footer-box {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .helps-team-footer {
        font-size: 1.2rem;
    }

    /* Download CTA - Compact */
    .download-cta {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .download-cta .button-primary,
    .download-cta .button-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    /* FAQ - Compact */
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.95rem;
    }

    /* CTA - Compact */
    .training-cta-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .training-cta-description {
        font-size: 1.1rem;
        margin-bottom: 1.75rem;
    }

    .training-cta-buttons {
        gap: 1rem;
    }

    .training-cta-buttons .button-primary,
    .training-cta-buttons .button-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

/* Mobile View (max-width: 640px) */
@media (max-width: 640px) {

    /* Container - Tighter */
    .container,
    .amace-container {
        padding: 0 1rem;
    }

    /* Hero - Very Compact */
    .amace-hero {
        padding: 3rem 0 2rem;
    }

    .amace-hero-grid {
        gap: 1.5rem;
    }

    .amace-hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .amace-hero-content h2 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .amace-hero-desc {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .amace-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    /* Sections - Very Compact */
    .why-sncl4me-section,
    .what-sncl4me-offers-section,
    .who-should-use-sncl4me-section,
    .sncl4me-benefits-section,
    .why-stands-out-section,
    .how-helps-team-section,
    .sncl4me-download-section,
    .sncl4me-faq-section,
    .training-cta-section {
        padding: 2.5rem 0;
    }

    .section-padding {
        padding: 2.5rem 0;
    }

    /* Typography - Smallest */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    /* Struggles - Very Compact */
    .struggles-grid {
        gap: 1rem;
    }

    .struggle-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .struggle-icon {
        font-size: 1.25rem;
    }

    .struggle-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Solution - Very Compact */
    .sncl4me-solution {
        margin-top: 1.75rem;
        padding: 1.5rem;
    }

    .solution-text {
        font-size: 1.2rem;
        margin-bottom: 0.35rem;
    }

    .solution-subtitle {
        font-size: 1rem;
    }

    /* Modules - Very Compact */
    .modules-grid {
        gap: 1rem;
    }

    .sncl4me-module-item {
        padding: 1rem;
        gap: 0.875rem;
        flex-direction: row !important;
    }

    .module-number {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.9rem !important;
    }

    .module-title {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }

    .module-intro {
        font-size: 0.825rem;
        margin-bottom: 0.5rem;
    }

    .module-features-list {
        gap: 0.35rem;
        margin: 0.5rem 0;
    }

    .module-features-list li {
        padding: 0.275rem 0.55rem;
        font-size: 0.725rem;
        border-left-width: 2px;
    }

    .module-footer {
        margin-top: 0.5rem;
        font-size: 0.75rem;
    }

    /* Users - Very Compact */
    .sncl4me-users-grid {
        gap: 1rem;
    }

    .sncl4me-user-item {
        padding: 1.25rem 1rem;
    }

    .user-icon {
        font-size: 2.25rem;
        margin-bottom: 0.65rem;
    }

    .sncl4me-user-item p {
        font-size: 0.9rem;
    }

    .sncl4me-users-footer {
        font-size: 1rem;
        margin-top: 1.25rem;
    }

    /* Benefits - Very Compact */
    .sncl4me-benefits-grid {
        gap: 1rem;
    }

    .sncl4me-benefit-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .benefit-check {
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }

    .sncl4me-benefit-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Stands Out - Very Compact */
    .stands-out-grid {
        gap: 1rem;
    }

    .stands-out-item {
        padding: 1.5rem 1.25rem;
    }

    .stands-out-icon {
        font-size: 2.75rem;
        margin-bottom: 1rem;
    }

    .stands-out-title {
        font-size: 1.05rem;
        margin-bottom: 0.65rem;
    }

    .stands-out-desc {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Helps Team - Very Compact */
    .helps-team-grid {
        gap: 1rem;
    }

    .helps-team-item {
        padding: 1.25rem 1rem;
    }

    .team-icon {
        font-size: 2rem;
        margin-bottom: 0.65rem;
    }

    .helps-team-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .helps-team-footer-box {
        margin-top: 1.75rem;
        padding: 1.25rem;
    }

    .helps-team-footer {
        font-size: 1.1rem;
    }

    /* Download - Very Compact */
    .download-cta {
        gap: 0.75rem;
        margin-top: 1.25rem;
        flex-direction: column;
    }

    .download-cta .button-primary,
    .download-cta .button-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }

    /* FAQ - Very Compact */
    .sncl4me-faq-list {
        margin-top: 1.5rem;
    }

    .faq-item {
        margin-bottom: 0.75rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-toggle-icon {
        width: 20px;
        height: 20px;
    }

    .faq-toggle-icon::before {
        width: 14px;
    }

    .faq-toggle-icon::after {
        height: 14px;
    }

    .faq-answer {
        padding: 0 1.25rem 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* CTA - Very Compact */
    .training-cta-section {
        padding: 3rem 0;
    }

    .training-cta-title {
        font-size: 1.65rem;
        margin-bottom: 0.875rem;
    }

    .training-cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .training-cta-buttons {
        gap: 0.75rem;
        flex-direction: column;
        align-items: stretch;
    }

    .training-cta-buttons .button-primary,
    .training-cta-buttons .button-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }
}

/* Extra Small Mobile (max-width: 480px) */
@media (max-width: 480px) {

    /* Hero - Extra Compact */
    .amace-hero {
        padding: 2.5rem 0 1.75rem;
    }

    .amace-hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.65rem;
    }

    .amace-hero-content h2 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .amace-hero-desc {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    /* Sections - Extra Compact */
    .why-sncl4me-section,
    .what-sncl4me-offers-section,
    .who-should-use-sncl4me-section,
    .sncl4me-benefits-section,
    .why-stands-out-section,
    .how-helps-team-section,
    .sncl4me-download-section,
    .sncl4me-faq-section,
    .training-cta-section {
        padding: 2rem 0;
    }

    .section-padding {
        padding: 2rem 0;
    }

    /* Typography - Extra Small */
    .section-title {
        font-size: 1.35rem;
        margin-bottom: 0.875rem;
    }

    .section-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    /* Solution - Extra Compact */
    .solution-text {
        font-size: 1.1rem;
    }

    .solution-subtitle {
        font-size: 0.95rem;
    }

    /* Icons - Smaller */
    .stands-out-icon {
        font-size: 2.5rem;
        margin-bottom: 0.875rem;
    }

    .user-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .team-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    /* CTA - Extra Compact */
    .training-cta-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .training-cta-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    /* Module Features - Extra Compact */
    .module-features-list li {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .module-title {
        font-size: 0.95rem;
    }

    .module-intro,
    .module-footer {
        font-size: 0.7rem;
    }
}