.elementor-2875 .elementor-element.elementor-element-138a97e{--display:flex;}.elementor-2875 .elementor-element.elementor-element-89449c2{--display:flex;}/* Start custom CSS for html, class: .elementor-element-26564dd */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

button,
a,
div,
section {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

button:focus,
button:active,
a:focus,
a:active,
div:focus,
div:active {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

@media (min-width: 769px) {
    html.snap-enabled {
        scroll-snap-type: y mandatory !important;
    }
    
    html.snap-enabled section:not(.hero-section) {
        scroll-snap-align: start !important;
        height: 100vh !important;
        overflow: hidden !important;
    }
    
    footer {
        scroll-snap-align: none !important;
    }
}

:root {
    --primary: #F37C21;
    --secondary: #7e5bef;
    --footer-vl: #5b5c5c;
    --bg-dark: #323333;
    --bg-light: #ffffff;
    --bg-card: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #666666;
    --text-dark: #363636;
}

/* Scroll snapping for sections */
section {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 8rem 2rem;
}

/* Hero section should never snap */
.hero-section {
    scroll-snap-align: none !important;
}

/* Enable scroll snapping for all sections starting from intro (only when snap-enabled) */
html.snap-enabled section:not(.hero-section) {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: 100vh;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Section typography */
.section-title {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--text-dark);
}

/* Intro section specific overrides */
.intro-section .section-title {
    color: var(--text-dark);
}

.benefits-section .section-title,
.setup-section .section-title,
.training-section .section-title {
    color: var(--text-primary);
}

.benefits-section .section-subtitle,
.benefits-section .section-subtitle.text-secondary,
.benefits-section-subtitle-compact,
.benefits-section-footer {
    color: #cccccc !important;
}

.setup-section .section-subtitle,
.setup-section .section-subtitle.text-secondary {
    color: #cccccc !important;
}

.training-section .section-subtitle,
.training-section .section-subtitle.text-secondary,

.section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Language button active state */
.lang-btn.active {
    border-color: var(--primary) !important;
    background: rgba(243, 124, 33, 0.15) !important;
    color: var(--primary) !important;
    transform: translateY(-2px);
}

/* Hover effects - only on hover-capable devices with precise pointing (mouse, not touch) */
@media (hover: hover) and (pointer: fine) and (min-width: 769px) {
    .lang-btn:hover {
        border-color: var(--primary) !important;
        background: rgba(243, 124, 33, 0.15) !important;
        color: var(--primary) !important;
        transform: translateY(-2px);
    }

    /* CTA button hover */
    .cta-btn:hover {
        transform: translateY(-2px);
        background-color: #d16a1c;
    }

    /* Product image hover effects */
    .product-card:hover .product-image img {
        transform: scale(1.05);
    }

    .product-image:hover .image-upload-overlay {
        opacity: 1 !important;
    }

    /* Remove hover effects from training cards (except video card) */
    .training-card:not(.training-card-video):hover .play-icon {
        transform: none;
    }

    .training-card:not(.training-card-video):hover {
        transform: none;
    }

    /* Remove hover effect for video card */
    .training-card-video:hover {
        transform: none;
    }

    /* Benefit card hover - removed */

    /* Service card hover */
    .service-card:hover {
        transform: translateY(-0.5rem);
        border-color: rgba(243, 124, 33, 0.3);
    }

    /* Product card hover */
    .product-card:hover {
        transform: translateY(-0.5rem);
        border-color: rgba(243, 124, 33, 0.3);
    }

    /* Step content hover */
    .step-content:hover {
        border-color: rgba(243, 124, 33, 0.3);
        transform: translateX(0.5rem);
    }

    /* Material card hover */
    .material-card:hover {
        border-color: rgba(243, 124, 33, 0.3);
    }

    /* Download button hover */
    .download-btn:hover {
        transform: scale(1.05);
        background-color: #d16a1c;
    }

    /* Support card hover */
    .support-card:hover {
        transform: translateY(-0.5rem);
        border-color: rgba(243, 124, 33, 0.3);
    }

    /* Contact link hover */
    .contact-link:hover {
        color: #d16a1c;
    }
}

/* Disable hover effects and animations on mobile */
@media (max-width: 768px) {
    * {
        transition: none !important;
    }
    
    /* Remove outline/focus ring on mobile - AGGRESSIVE */
    *,
    *:before,
    *:after {
        -webkit-tap-highlight-color: transparent !important;
        tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
    }
    
    *:focus,
    *:active,
    *:focus-visible,
    *:focus-within {
        outline: none !important;
        box-shadow: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    /* Benefits section layout on mobile */
    .benefits-section {
        padding: 3rem 1.5rem !important;
    }
    
    .benefits-section-container {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        padding: 0 !important;
    }

    .benefits-section-title-compact {
        text-align: center !important;
        margin-bottom: 0.75rem !important;
    }

    .benefits-section-subtitle-compact,
    .benefits-section-footer {
        text-align: center !important;
        margin-bottom: 1rem !important;
    }

    .benefit-icon-circle {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 0.75rem !important;
    }

    .benefit-icon-img {
        width: 32px !important;
        height: 32px !important;
    }

    .benefit-card-compact {
        padding: 1rem !important;
        width: 100%;
        box-sizing: border-box;
    }
    
    .benefits-section-first,
    .benefits-section-second {
        width: 100%;
        max-width: 100%;
    }

    /* Disable hover effects for cards inside grids on mobile */
    .product-card:hover,
    .products-grid .product-card:hover,
    .product-detail-card:hover,
    .product-featured-image:hover,
    .service-card:hover,
    .services-grid .service-card:hover,
    .training-card:not(.training-card-video):hover,
    .training-grid .training-card:not(.training-card-video):hover,
    .material-card:hover,
    .materials-grid .material-card:hover,
    .support-card:hover,
    .support-grid .support-card:hover,
    .setup-step:hover,
    .setup-steps-grid .setup-step:hover,
    .setup-step-content:hover,
    .setup-steps-grid .setup-step-content:hover {
        transform: none !important;
        border-color: inherit !important;
        box-shadow: none !important;
        transition: none !important;
        outline: none !important;
        background-color: inherit !important;
    }

    /* Disable hover effects for buttons on mobile */
    button:hover,
    .hero-nav-btn:hover,
    .cta-btn:hover,
    .download-button:hover,
    .download-btn:hover,
    .training-share-button:hover,
    .support-contact-link:hover,
    .contact-link:hover {
        transform: none !important;
        background-color: inherit !important;
        border-color: inherit !important;
        color: inherit !important;
        opacity: inherit !important;
    }

    /* Specifically target all grid cards and their children */
    .product-card,
    .service-card,
    .training-card,
    .benefit-card,
    .material-card,
    .support-card,
    .setup-step,
    .setup-step-content,
    .product-card *,
    .service-card *,
    .training-card *,
    .benefit-card *,
    .material-card *,
    .support-card *,
    .setup-step *,
    .setup-step-content *,
    .materials-grid *,
    .products-grid *,
    .services-grid *,
    .training-grid *,
    .benefits-grid *,
    .support-grid * {
        -webkit-tap-highlight-color: transparent !important;
        tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
    }

    .product-card:focus,
    .product-card:active,
    .product-card:focus-visible,
    .product-card:focus-within,
    .service-card:focus,
    .service-card:active,
    .service-card:focus-visible,
    .service-card:focus-within,
    .training-card:focus,
    .training-card:active,
    .training-card:focus-visible,
    .training-card:focus-within,
    .benefit-card:focus,
    .benefit-card:active,
    .benefit-card:focus-visible,
    .benefit-card:focus-within,
    .material-card:focus,
    .material-card:active,
    .material-card:focus-visible,
    .material-card:focus-within,
    .support-card:focus,
    .support-card:active,
    .support-card:focus-visible,
    .support-card:focus-within,
    .setup-step:focus,
    .setup-step:active,
    .setup-step:focus-visible,
    .setup-step:focus-within,
    .setup-step-content:focus,
    .setup-step-content:active,
    .setup-step-content:focus-visible,
    .setup-step-content:focus-within,
    .material-card button:focus,
    .material-card button:active,
    .material-card button:focus-visible,
    .material-card button:focus-within,
    .download-button:focus,
    .download-button:active,
    .download-button:focus-visible,
    .download-button:focus-within {
        outline: none !important;
        box-shadow: none !important;
        border-color: inherit !important;
        -webkit-tap-highlight-color: transparent !important;
    }
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    filter: none;
}

.product-image-placeholder img {
    opacity: 1 !important;
    filter: none !important;
}

.product-image-label {
    pointer-events: none;
}

/* Step animations */
.step {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }
.step:nth-child(5) { animation-delay: 0.5s; }
.step:nth-child(6) { animation-delay: 0.6s; }
.step:nth-child(7) { animation-delay: 0.7s; }

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

/* Products section specific */
.products-section {
    padding: 3.5rem 2rem !important;
    min-height: auto !important;
    overflow: visible;
    margin-bottom: 0;
    position: relative;
}

.products-section-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Services section specific */
.services-section {
    padding: 3.5rem 2rem !important;
    min-height: 100vh !important;
    max-height: 100vh;
    overflow-y: auto;
}

.services-section > div {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
}

/* Training section specific */
.training-section {
    padding: 3.5rem 2rem !important;
}

/* File input */
.file-input {
    display: none;
}

/* Utility Classes - Replacing Tailwind */
.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.container-sm {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.container-xs {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* Layout */

.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Spacing */
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-h-screen { max-height: 100vh; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Text */
.text-center { text-align: center; }
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }
.no-underline { text-decoration: none; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }

/* Colors */
.bg-white { background-color: #ffffff; }
.bg-dark { background-color: #323333; }
.bg-primary { background-color: #F37C21; }
.text-primary { color: #F37C21; }
.text-dark { color: #363636; }
.text-secondary { color: #666666; }
.text-gray { color: #999999; }
.text-light-gray { color: #cccccc; }

/* Borders & Shadows */
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.border-none { border: none; }

/* Grid */
.grid { display: grid; }
.gap-2 { gap: 0.5rem; }
.gap-6 { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

/* Specific Component Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background-color: #323333;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.hero p {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #666666;
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.cta-btn {
    background-color: #F37C21;
    border: none;
    padding: 1.25rem 3.5rem;
    border-radius: 1rem;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.intro-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    padding-bottom: 0 !important;
}

.intro-section-cityscape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 200px;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cityscape-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    opacity: 0.15;
}


.intro-key-sharing-image-old {
    position: absolute;
    top: 45%;
    left: 10%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: auto;
    z-index: 1;
    opacity: 0.25;
    pointer-events: none;
}

.intro-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding-bottom: 250px;
}

.intro-text-side {
    text-align: left;
    padding-right: 2rem;
}

.intro-text-side .section-title {
    color: #363636 !important;
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.intro-text-side .section-subtitle {
    color: #F37C21;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.intro-section-content {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    color: #666666;
    font-weight: 300;
    max-width: none;
}

.intro-map-side {
    position: relative;
}

.map-container {
    position: relative;
    background: #f8f9fa;
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 3px solid rgba(243, 124, 33, 0.1);
}

.map-label {
    font-size: 1rem;
    font-weight: 700;
    color: #363636;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pickup-points-map {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 1rem;
    background: #ffffff;
}

.intro-section .section-title {
    color: #363636 !important;
    position: relative;
    z-index: 10;
}

.benefits-section {
    background-color: #323333;
    text-align: center;
    padding: 4rem 2rem !important;
    min-height: auto !important;
    display: flex;
}

.benefits-section-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.benefits-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 0 2rem;
    min-width: 280px;
}

.benefits-divider-image {
    width: 280px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .benefits-grid-compact {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid-compact {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1rem !important;
        padding-bottom: 1rem;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        grid-template-columns: unset !important;
        width: 100%;
    }
    
    .benefits-grid-compact::-webkit-scrollbar {
        height: 4px;
    }
    
    .benefits-grid-compact::-webkit-scrollbar-track {
        background: rgba(243, 124, 33, 0.1);
        border-radius: 10px;
    }
    
    .benefits-grid-compact::-webkit-scrollbar-thumb {
        background: #F37C21;
        border-radius: 10px;
    }
    
    .benefits-grid-compact .benefit-card-compact {
        min-width: calc(100vw - 3rem) !important;
        max-width: calc(100vw - 3rem) !important;
        scroll-snap-align: center !important;
        flex-shrink: 0 !important;
        margin-left: 0;
        margin-right: 0;
    }
    
    .benefits-section-first,
    .benefits-section-second {
        width: 100%;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 2.5rem 1rem !important;
    }
    
    .benefits-section-container {
        padding: 0 !important;
        gap: 2rem !important;
    }
    
    .benefits-grid-compact {
        gap: 0.75rem !important;
        padding-left: 0;
        padding-right: 0;
    }
    
    .benefits-grid-compact .benefit-card-compact {
        min-width: calc(100vw - 2rem) !important;
        max-width: calc(100vw - 2rem) !important;
        padding: 1rem 0.875rem !important;
    }
    
    .benefit-icon-circle {
        width: 56px !important;
        height: 56px !important;
        margin-bottom: 0.625rem !important;
    }
    
    .benefit-icon-img {
        width: 28px !important;
        height: 28px !important;
    }
    
    .benefit-card-compact .benefit-card-title {
        font-size: 0.9rem !important;
        margin-bottom: 0.375rem !important;
    }
    
    .benefit-card-compact .benefit-card-description {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
    }
    
    .benefits-section-title-compact {
        font-size: clamp(1.1rem, 4vw, 1.5rem) !important;
        margin-bottom: 0.5rem !important;
    }
    
    .benefits-section-subtitle-compact,
    .benefits-section-footer {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.75rem !important;
    }
}

@media (max-width: 1024px) {
    .benefits-section-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-divider {
        display: none;
    }
}

.benefits-section-first,
.benefits-section-second {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.benefits-section-first {
    padding-top: 0;
}

.benefits-section-second {
    padding-top: 0;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #F37C21 0%, #ff8c3a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
    padding: 8px;
}

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

.benefits-section > div {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

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

.benefit-card {
    background-color: rgba(50, 51, 51, 0.6);
    border-radius: 1rem;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.2s ease;
}

.benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #ffffff;
}

.benefit-card p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-section {
    background-color: #ffffff;
    padding: 3.5rem 2rem;
    min-height: 100vh;
}

.services-section > div {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

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

.service-card {
    background-color: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 1rem;
    border: 2px solid rgba(243, 124, 33, 0.08);
    transition: all 0.3s ease;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #F37C21;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #363636;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 10;
    color: #666666;
}

.products-section {
    background-color: #ffffff;
    padding: 3.5rem 2rem;
    min-height: auto;
    position: relative;
    overflow: visible;
}

.products-section-mascot {
    position: absolute;
    top: 20px;
    right: 3%;
    z-index: 1;
    pointer-events: none;
    width: 50px;
    height: 100px;

}

.products-mascot-image {
    width: 100%;
    height: auto;
    opacity: 0.08;
    object-fit: contain;
    object-position: right;
}

.products-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.products-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.products-section > div {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

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

.product-card {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid rgba(243, 124, 33, 0.08);
    transition: all 0.3s ease;
}

.product-image {
    width: 100%;
    height: 180px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image-placeholder {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.product-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-label {
    font-size: 0.75rem;
    color: #999999;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 9999px;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #363636;
}

.product-content p {
    line-height: 1.6;
    font-size: 0.875rem;
    color: #666666;
}

.setup-section {
    background-color: #323333;
    position: relative;
    overflow: hidden;
}

.setup-section > div {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.steps-container {
    max-width: 1100px;
    margin: 4rem auto 0;
}

.step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.step-number {
    min-width: 70px;
    height: 70px;
    background-color: #F37C21;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    font-weight: 900;
}

.step-content {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem 3rem;
    border-radius: 1rem;
    border: 2px solid rgba(243, 124, 33, 0.08);
    transition: all 0.3s ease;
}

.step-content p {
    font-size: 1rem;
    color: #363636;
    line-height: 1.7;
    margin: 0;
}

.materials-section {
    background-color: #ffffff;
}

.materials-section > div {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

/* Desktop: material sets behave as regular grid items - MOBILE WILL OVERRIDE */
.materials-grid .material-set {
    display: contents;
}

.material-card {
    background-color: #ffffff;
    padding: 2.5rem 3rem;
    border-radius: 1rem;
    border: 2px solid rgba(243, 124, 33, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent !important;
    tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    user-select: none !important;
}

.material-card:focus,
.material-card:active,
.material-card:focus-visible {
    outline: none !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04) !important;
    border: 2px solid rgba(243, 124, 33, 0.08) !important;
}

.material-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.625rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #363636;
}

.material-info p {
    color: #666666;
    font-size: 0.875rem;
}

.download-btn {
    width: 3rem;
    height: 3rem;
    background-color: #F37C21;
    border: none;
    border-radius: 0.875rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.training-section {
    background-color: #323333;
}

.training-section > div {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

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

.training-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem 1.75rem;
    border-radius: 1rem;
    outline: none;
    border: none;
    transition: all 0.3s ease;
}

.play-icon {
    width: 60px;
    height: 60px;
    background-color: #F37C21;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.training-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 10;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.training-card p {
    line-height: 1.6;
    font-size: 0.875rem;
    color: #cccccc;
    position: relative;
    z-index: 10;
}

/* PUP Section */
.pup-section {
    background-color: #ffffff;
    padding: 3.5rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.pup-section-mascot {
    position: absolute;
    top: 20px;
    right: 3%;
    z-index: 1;
    pointer-events: none;
    width: 100px;
    height: auto;
}

.pup-mascot-image {
    width: 100%;
    height: auto;
    opacity: 0.08;
    object-fit: contain;
    object-position: right;
}

.pup-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.pup-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pup-title {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    color: #363636;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.pup-title .highlight {
    color: #F37C21;
}

.pup-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: black;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* App Showcase Section */
.app-showcase-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    background: white;
    border-radius: 1.5rem;
    padding: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.app-content {
    position: relative;
    z-index: 2;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #F37C21;
    border: 1px solid #F37C21;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.app-main-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    color: #363636;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

/* Hero logo above main title */
.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.hero-logo-img {
    width: clamp(100px, 22vw, 200px);
    height: auto;
    display: block;
}

.app-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #666666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.app-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon-small {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #363636;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
}

.app-download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.app-download-buttons a {
    display: inline-block;
    transition: all 0.3s ease;
}

.app-download-buttons img {
    height: 35px;
    width: auto;
    display: block;
}

@media (hover: hover) and (pointer: fine) {
    .app-download-buttons a:hover {
        transform: translateY(-2px);
        opacity: 0.9;
    }
}

/* Phone Showcase */
.app-screenshot {
    max-width: 300px !important;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.app-placeholder {
    display: none;
}

/* Guidelines Section */
.guidelines-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guidelines-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.guidelines-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.guidelines-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #cccccc;
}

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

.app-feature-card {
    background-color: #f8f8f8;
    padding: 2rem 1.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(243, 124, 33, 0.15);
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .app-feature-card:hover {
        transform: translateY(-0.25rem);
        border-color: rgba(243, 124, 33, 0.3);
    }
    
    .guideline-card:hover {
        transform: translateY(-0.25rem);
        border-color: rgba(243, 124, 33, 0.3);
    }
    
    .guidelines-download-button:hover {
        background-color: #e66a1a;
        transform: translateY(-1px);
    }
}

.app-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 10;
}

.app-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-feature-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 10;
    font-weight: 700;
    color: #363636;
}

.app-feature-description {
    line-height: 1.6;
    font-size: 0.875rem;
    color: #666666;
    position: relative;
    z-index: 10;
}

.app-download-info {
    margin-top: 2.5rem;
    text-align: center;
}

.app-download-text {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
}


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

.guideline-card {
    background: rgba(50, 51, 51, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
    position: relative;
}

@media (hover: hover) and (pointer: fine) {
    .guideline-card:hover {
        background: rgba(50, 51, 51, 0.95);
        border-color: rgba(243, 124, 33, 0.4);
        transform: translateY(-4px);
    }
}

.guideline-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.guideline-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.guideline-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.guideline-card-description {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.download-section {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.download-text {
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: #F37C21;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
    .download-button:hover {
        background: #e66a1a;
        transform: translateY(-2px);
    }
    
    /* Remove orange background for download buttons in materials section */
    .materials-section .download-button:hover {
        background: transparent !important;
        transform: none;
    }
}

.download-button img {
    width: 1.25rem;
    height: 1.25rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .app-showcase-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }

}

@media (max-width: 768px) {
    .pup-section {
        padding: 3rem 1.5rem;
    }

    .pup-section-mascot {
        display: none;
    }

    .pup-header {
        margin-bottom: 3rem;
    }

    .app-showcase-section {
        padding: 2rem 1.5rem;
        gap: 2.5rem;
    }

    .app-features-list {
        gap: 1rem;
    }

    .app-screenshot {
        max-width: 240px;
    }

    .guidelines-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        grid-template-columns: unset;
    }

    .guidelines-grid::-webkit-scrollbar {
        height: 4px;
    }

    .guidelines-grid::-webkit-scrollbar-track {
        background: rgba(243, 124, 33, 0.1);
        border-radius: 10px;
    }

    .guidelines-grid::-webkit-scrollbar-thumb {
        background: #F37C21;
        border-radius: 10px;
    }

    .guideline-card {
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    .guideline-card:hover {
        transform: none;
    }

    .guidelines-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .pup-section {
        padding: 2.5rem 1rem;
    }

    .app-showcase-section {
        padding: 1.5rem 1rem;
    }

    .app-screenshot {
        max-width: 220px;
    }

    .guideline-card {
        min-width: 260px;
        max-width: 260px;
        padding: 1.5rem 1.25rem;
    }
}

.guidelines-download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background-color: #F37C21;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guidelines-download-button .download-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.support-section {
    background-color: #ece1cc;
    padding: 3rem 2rem !important;
    position: relative;
    overflow: hidden;
}

.support-section-mascot {
    position: absolute;
    bottom: 70px;
    right: 14.5%;
    z-index: 1;
    pointer-events: none;
    width: 230px;
    height: auto;
}

.support-mascot-image {
    width: 100%;
    height: auto;
}

.support-section-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.support-section .section-title {
    margin-bottom: 0.75rem !important;
}

.support-section .section-subtitle {
    margin-bottom: 1.5rem !important;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.support-card {
    background-color: #ece1cc !important;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    border: 2px solid #F37C21;
    transition: all 0.3s ease;
}

.support-icon {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    background-color: #F37C21;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.support-card h3 {
    font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 10;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #363636;
    line-height: 1.3;
}

.support-card p {
    font-size: clamp(0.8125rem, 2vw, 0.9375rem);
    line-height: 1.5;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
    color: #666666;
}

.contact-link {
    color: #F37C21;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    word-break: break-word;
}


/* Responsive Typography */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

.intro-section .section-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
}

.section-subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

@media (min-width: 640px) {
    .section-title {
        font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    }
    .intro-section .section-title {
        font-size: clamp(3.5rem, 6vw, 5rem);
    }
    .section-subtitle {
        font-size: clamp(1rem, 1.8vw, 1.125rem);
    }
    .product-content h3,
    .training-card h3 {
        font-size: 1.25rem;
    }
    .product-content p,
    .training-card p {
        font-size: 1rem;
    }
    .step-content p {
        font-size: 1.125rem;
    }
    .download-btn {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: clamp(3rem, 5vw, 4.5rem);
    }
    .intro-section .section-title {
        font-size: clamp(4rem, 6vw, 6rem);
    }
    .section-subtitle {
        font-size: clamp(1.125rem, 2vw, 1.25rem);
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: clamp(4rem, 5.5vw, 5.5rem);
    }
    .intro-section .section-title {
        font-size: clamp(4rem, 6vw, 7rem);
    }
    .section-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 1280px) {
    .section-title {
        font-size: clamp(4.5rem, 6vw, 6rem);
    }
    .intro-section .section-title {
        font-size: clamp(5rem, 7vw, 7rem);
    }
}

/* Responsive */
@media (max-width: 768px) {
    html {
        scroll-snap-type: none;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    section {
        scroll-snap-align: none;
        scroll-snap-stop: normal;
        min-height: auto;
        padding: 6rem 1.5rem;
    }

    .products-section,
    .training-section,
    .services-section,
    .setup-section {
        padding: 4rem 1.5rem !important;
        min-height: auto !important;
        max-height: none !important;
        overflow-y: visible !important;
        overflow-x: visible !important;
        margin-bottom: 0 !important;
    }
    
    .product-featured {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin: 2rem 0 !important;
    }
    
    .featured-items {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
    
    .product-details-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1rem !important;
        padding-bottom: 1rem;
        scrollbar-width: thin;
    }
    
    .product-details-grid::-webkit-scrollbar {
        height: 4px;
    }
    
    .product-details-grid::-webhero-sectionkit-scrollbar-track {
        background: rgba(243, 124, 33, 0.1);
        border-radius: 10px;
    }
    
    .product-details-grid::-webkit-scrollbar-thumb {
        background: #F37C21;
        border-radius: 10px;
    }
    
    .product-detail-card {
        min-width: 280px !important;
        max-width: 280px !important;
        scroll-snap-align: center !important;
        flex-shrink: 0 !important;
    }

    /* Reduce padding for all section containers on mobile */
    .hero-section-container,
    .intro-section-container,
    .benefits-section-container,
    .services-section-container,
    .products-section-container,
    .setup-section-container,
    .materials-section-container,
    .training-section-container,
    .support-section-container,
    .pup-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow-x: visible !important;
    }

    .materials-section-container {
        padding: 0.5rem 1rem 1.5rem !important;
    }

    .materials-section {
        padding: 3rem 1rem !important;
        min-height: auto !important;
    }

    .materials-sections-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        max-width: 1200px;
        margin-inline: auto;
    }

    .materials-subsection {
        width: 100%;
        overflow: hidden;
    }

    .materials-section .section-title {
        margin-bottom: 1rem !important;
        font-size: clamp(1.75rem, 5vw, 2.5rem) !important;
    }

    .materials-section .section-subtitle {
        margin-bottom: 1.5rem !important;
        font-size: clamp(0.875rem, 2vw, 1rem) !important;
    }

    .materials-subsection-title {
        margin-bottom: 0.75rem !important;
        font-size: clamp(1.125rem, 3vw, 1.25rem) !important;
    }

    .benefits-section-container {
        padding: 0 !important;
    }

    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem) !important;
    }

    .products-section .section-title,
    .training-section .section-title,
    .services-section .section-title,
    .benefits-section .section-title,
    .setup-section .section-title,
    .intro-section .section-title,

    /* Intro section mobile layout */
    .intro-content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;

    }

    .intro-text-side {
        text-align: center !important;
        padding-right: 0 !important;
        padding: 0 1.5rem !important;
    }

    .intro-section-content {
        margin: 0 auto;
        max-width: 100%;
    }

    .map-container {
        padding: 1rem !important;
    }

    .pickup-points-map {
        height: 350px !important;
    }

    .setup-section-cityscape {
        display: none !important;
    }
    
    .support-section-mascot {
        display: none !important;
    }
    
    .products-section-mascot {
        display: none !important;
    }
    
    .pup-section-mascot {
        display: none !important;
    }
    
    .intro-section-cityscape {
        height: 200px !important;
    }

    .cityscape-image {
        opacity: 0.1 !important;
    }
    
    .intro-key-sharing-image-old {
        display: none;
    }

    .products-section .section-subtitle,
    .training-section .section-subtitle,
    .services-section .section-subtitle,

    /* Remove tap highlight and outline on all interactive elements */
    * {
        -webkit-tap-highlight-color: transparent !important;
        tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
    }
    
    *:focus,
    *:active,
    *:focus-visible {
        outline: none !important;
        box-shadow: none !important;
    }

    /* Specifically target all grid cards and their children */
    .product-card,
    .service-card,
    .training-card,
    .benefit-card,
    .material-card,
    .support-card,
    .setup-step,
    .setup-step-content,
    .app-feature-card,
    .guideline-card,
    .product-card *,
    .service-card *,
    .training-card *,
    .benefit-card *,
    .material-card *,
    .support-card *,
    .setup-step *,
    .setup-step-content *,
    .app-feature-card *,
    .guideline-card * {
        -webkit-tap-highlight-color: transparent !important;
        tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        user-select: none !important;
    }

    .product-card:focus,
    .product-card:active,
    .product-card:focus-visible,
    .service-card:focus,
    .service-card:active,
    .service-card:focus-visible,
    .training-card:focus,
    .training-card:active,
    .training-card:focus-visible,
    .benefit-card:focus,
    .benefit-card:active,
    .benefit-card:focus-visible,
    .material-card:focus,
    .material-card:active,
    .material-card:focus-visible,
    .support-card:focus,
    .support-card:active,
    .support-card:focus-visible,
    .setup-step:focus,
    .setup-step:active,
    .setup-step:focus-visible,
    .setup-step-content:focus,
    .setup-step-content:active,
    .setup-step-content:focus-visible,
    .app-feature-card:focus,
    .app-feature-card:active,
    .app-feature-card:focus-visible,
    .guideline-card:focus,
    .guideline-card:active,
    .guideline-card:focus-visible,
    .material-card button:focus,
    .material-card button:active,
    .material-card button:focus-visible,
    .download-button:focus,
    .download-button:active,
    .download-button:focus-visible,
    .guidelines-download-button:focus,
    .guidelines-download-button:active,
    .guidelines-download-button:focus-visible {
        outline: none !important;
        box-shadow: none !important;
        border-color: inherit !important;
    }


    /* Mobile carousel behavior for all grid sections */
    .products-grid,
    .services-grid,
    .training-grid,
    .benefits-grid,
    .support-grid,
    .setup-steps-grid,
    .app-content-grid,
    .guidelines-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1rem !important;
        padding-bottom: 1rem;
        margin-top: 1.5rem !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        grid-template-columns: unset !important;
    }

    /* Materials grid: carousel on mobile */
    .materials-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-padding: 0 1rem;
        padding-bottom: 1rem;
        margin-top: 1.5rem !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        width: 100%;
        gap: 1rem !important;
    }

    /* Mobile ONLY: Materials grid cards in carousel */
    .materials-grid .material-card {
        min-width: 200px !important;
        max-width: 200px !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center !important;
    }

    .products-grid::-webkit-scrollbar,
    .services-grid::-webkit-scrollbar,
    .training-grid::-webkit-scrollbar,
    .benefits-grid::-webkit-scrollbar,
    .support-grid::-webkit-scrollbar,
    .setup-steps-grid::-webkit-scrollbar,
    .materials-grid::-webkit-scrollbar,
    .app-content-grid::-webkit-scrollbar,
    .guidelines-grid::-webkit-scrollbar {
        height: 4px;
    }

    .products-grid::-webkit-scrollbar-track,
    .services-grid::-webkit-scrollbar-track,
    .training-grid::-webkit-scrollbar-track,
    .benefits-grid::-webkit-scrollbar-track,
    .support-grid::-webkit-scrollbar-track,
    .setup-steps-grid::-webkit-scrollbar-track,
    .materials-grid::-webkit-scrollbar-track,
    .app-content-grid::-webkit-scrollbar-track,
    .guidelines-grid::-webkit-scrollbar-track {
        background: rgba(243, 124, 33, 0.1);
        border-radius: 10px;
    }

    .products-grid::-webkit-scrollbar-thumb,
    .services-grid::-webkit-scrollbar-thumb,
    .training-grid::-webkit-scrollbar-thumb,
    .benefits-grid::-webkit-scrollbar-thumb,
    .support-grid::-webkit-scrollbar-thumb,
    .setup-steps-grid::-webkit-scrollbar-thumb,
    .materials-grid::-webkit-scrollbar-thumb,
    .app-content-grid::-webkit-scrollbar-thumb,
    .guidelines-grid::-webkit-scrollbar-thumb {
        background: #F37C21;
        border-radius: 10px;
    }

    /* Snap widths for cards */
    .products-grid .product-card,
    .services-grid .service-card,
    .training-grid .training-card,
    .benefits-grid .benefit-card,
    .support-grid .support-card,
    .setup-steps-grid .setup-step,
    .app-content-grid .app-feature-card,
    .guidelines-grid .guideline-card {
        min-width: 280px !important;
        max-width: 280px !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center !important;
    }

    .material-card {
        padding: 1.5rem 1.25rem !important;
    }

    .material-info-title {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .material-info-description {
        font-size: 0.75rem !important;
    }

    .download-button {
        width: 3rem !important;
        height: 3rem !important;
        min-width: 3rem !important;
        min-height: 3rem !important;
        max-width: 3rem !important;
        max-height: 3rem !important;
        font-size: 1.25rem !important;
        flex-shrink: 0 !important;
    }

    nav {
        flex-direction: column;
        gap: 1.5rem;
    }

    .step {
        flex-direction: column;
        gap: 1.5rem;
    }

    .product-image {
        height: 200px !important;
    }

    .product-image-placeholder {
        font-size: 3rem !important;
    }

    .play-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.4rem !important;
        margin-bottom: 1rem !important;
    }

    /* Support & Contact — tighter mobile layout */
    .support-section {
        padding: 3rem 1.25rem !important;
    }
    .support-grid {
        gap: 1rem !important;
    }
    .support-grid .support-card {
        padding: 1.25rem 1rem !important;
        border-radius: 20px !important;
        min-width: 240px !important;
        max-width: 240px !important;
        flex-shrink: 0;
        scroll-snap-align: center;
    }
    .support-icon {
        width: clamp(50px, 12vw, 60px) !important;
        height: clamp(50px, 12vw, 60px) !important;
        font-size: clamp(1.5rem, 5vw, 1.75rem) !important;
        margin-bottom: 1rem !important;
        border-radius: 14px !important;
    }
    .support-card h3 { 
        margin-bottom: 0.75rem !important; 
        font-size: clamp(0.9375rem, 4vw, 1rem) !important;
    }
    .support-card p  { 
        margin-bottom: 0.75rem !important; 
        font-size: clamp(0.8125rem, 3vw, 0.875rem) !important;
    }
    .contact-link    { 
        font-size: clamp(0.875rem, 3vw, 1rem) !important; 
    }
    .support-card-title {
        font-size: clamp(0.9375rem, 4vw, 1rem) !important;
    }
    .support-card-description {
        font-size: clamp(0.8125rem, 3vw, 0.875rem) !important;
    }
    .support-contact-link {
        font-size: clamp(0.875rem, 3vw, 1rem) !important;
    }


    .setup-step {
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 2rem 1.5rem;
    }
    
    .setup-step-mascot-container {
        width: 110px;
        height: 110px;
    }
    
    .setup-step-icon-overlay {
        width: 42px;
        height: 42px;
        padding: 8px;
        bottom: -3px;
        right: -3px;
    }
    
    .setup-step-title {
        font-size: 1.3rem;
    }
    
    .setup-step-text {
        font-size: 0.95rem;
    }
    
    .setup-step-number-badge {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
}

@media (max-width: 480px) {
    .products-section,
    .training-section,
    .services-section,
    
    .product-featured {
        margin: 1.5rem 0 !important;
    }
    
    .product-detail-card {
        min-width: 260px !important;
        max-width: 260px !important;
    }
    
    .featured-badge {
        top: 1rem !important;
        right: 1rem !important;
        padding: 0.375rem 1rem !important;
        font-size: 0.8rem !important;
    }

    .products-grid,
    .services-grid,
    .training-grid,
    .benefits-grid,
    .support-grid,
    .app-content-grid,
    .guidelines-grid {
        gap: 0.8rem !important;
    }

    .products-grid .product-card,
    .services-grid .service-card,
    .training-grid .training-card,
    .benefits-grid .benefit-card,
    .support-grid .support-card {
        min-width: 250px !important;
        max-width: 250px !important;
    }

    .material-card {
        padding: 1.25rem 1rem !important;
    }

    .material-info-title {
        font-size: 0.9375rem !important;
        margin-bottom: 0.375rem !important;
    }

    .material-info-description {
        font-size: 0.6875rem !important;
    }

    .download-button {
        width: 3rem !important;
        height: 3rem !important;
        min-width: 3rem !important;
        min-height: 3rem !important;
        max-width: 3rem !important;
        max-height: 3rem !important;
        font-size: 1.25rem !important;
        flex-shrink: 0 !important;
    }

    .product-image {
        height: 160px !important;
    }

    /* Support & Contact — extra small screens */
    .support-grid .support-card {
        min-width: 220px !important;
        max-width: 220px !important;
        padding: 1rem !important;
    }
    .support-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        border-radius: 12px !important;
    }

    /* Tighter steps on very small screens */
    .setup-step {
        min-width: 260px;
        max-width: 260px;
        padding: 1.75rem 1.25rem;
    }
    
    .setup-step-mascot-container {
        width: 95px;
        height: 95px;
    }
    
    .setup-step-icon-overlay {
        width: 38px;
        height: 38px;
        padding: 7px;
        bottom: -2px;
        right: -2px;
    }
    
    .setup-step-number-badge {
        width: 34px;
        height: 34px;
        font-size: 1rem;
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .setup-step-title {
        font-size: 1.2rem;
    }
    
    .setup-step-text {
        font-size: 0.9rem;
    }
    
}

/* ============================================
   Elementor Tailwind Fallback Styles
   Organized by section for readability
   ============================================ */

/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* padding: 8rem 2rem 4rem; */
    background-color: #323333;
    position: relative;
    overflow: hidden;
}

.hero-section-container {
    max-width: 1200px;
    position: relative;
    z-index: 10;
}

.hero-section-title {
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.hero-section-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #F37C21;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-nav-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-nav-btn {
    background-color: #F37C21;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.hero-nav-btn:hover {
    background-color: #d16a1c;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-nav-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-nav-btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Intro Section Styles */
.intro-section-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 0 2rem;
}

/* Benefits Section Styles */

.benefits-section-title-compact {
    margin-bottom: 0.5rem !important;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important;
    line-height: 1.2 !important;
    text-align: center;
}

.benefits-section-subtitle-compact {
    margin-bottom: 0.5rem !important;
    font-size: clamp(0.8rem, 1.2vw, 0.875rem) !important;
    line-height: 1.4 !important;
    text-align: center;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-section-footer {
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
    max-width: none !important;
    font-size: clamp(0.8rem, 1.2vw, 0.875rem) !important;
    line-height: 1.4 !important;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.benefits-grid-compact {
    gap: 1rem;
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
}

.benefit-card {
    background-color: rgba(50, 51, 51, 0.6);
    border-radius: 1rem;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.2s ease;
}

.benefit-card-compact {
    padding: 1.25rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s ease;
}

.benefit-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #F37C21;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.benefit-card-title {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin-bottom: 1rem;
    font-weight: 800;
    color: #ffffff;
}

.benefit-card-compact .benefit-card-title {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
}

.benefit-card-description {
    color: #cccccc;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.8;
}

.benefit-card-compact .benefit-card-description {
    font-size: clamp(0.8rem, 1.3vw, 0.875rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.training-video-link {
    color: #F37C21 !important;
    text-decoration: underline !important;
    margin-top: 0.5rem;
    display: block;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    transition: opacity 0.2s ease;
}

.training-video-link:hover {
    opacity: 0.8;
}

/* Training Video Wrapper - contains both thumbnail and video */
.training-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0;
    padding: 0;
}

/* Training Video Thumbnail & Player Styles */
.training-video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.75rem 0.75rem 0 0;
    overflow: hidden;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.training-video-thumbnail:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

.video-thumbnail-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0.75rem;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: transform 0.2s ease;
}

.training-video-thumbnail:hover .video-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.training-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.3s ease;
}

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

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0.75rem 0.75rem 0 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.training-video-player {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0.75rem 0.75rem 0 0;
    background: #000;
    object-fit: contain;
}


/* Training card video specific styles */
.training-card-video {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 0.75rem; /* Match the video wrapper's top border radius */
    transition: none; /* Remove transition for video card */
}

.training-card-video:hover {
    transform: none !important; /* Disable hover lift effect */
}

.training-video-content {
    padding: 1.5rem;
}

.training-card-video .training-card-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.training-card-video .training-card-description {
    margin-top: 0;
    margin-bottom: 0;
}

/* Responsive adjustments for video */
@media (max-width: 768px) {
    .training-video-thumbnail {
        margin-top: 0;
    }
    
    .video-play-overlay svg {
        width: 60px;
        height: 60px;
    }
    
    .training-video-action-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
    
    .training-video-container {
        margin-top: 0.75rem;
    }
}

/* Services Section Styles */
.services-section-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

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

.service-card {
    background-color: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 1rem;
    border: 2px solid rgba(243, 124, 33, 0.08);
    transition: all 0.3s ease;
}

.service-icon {
    width: clamp(60px, 12vw, 80px);
    height: clamp(60px, 12vw, 80px);
    background-color: #F37C21;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.875rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.service-card-title {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #363636;
}

.service-card-description {
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.6;
    position: relative;
    z-index: 10;
    color: #666666;
}

/* Products Section Styles */
.products-section-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

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

.product-card {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid rgba(243, 124, 33, 0.08);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent !important;
    tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
}

.product-card:focus,
.product-card:active,
.product-card:focus-visible {
    outline: none !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04) !important;
    border: 2px solid rgba(243, 124, 33, 0.08) !important;
}

.product-image-container {
    width: 100%;
    height: 180px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.product-image-container:hover {
    opacity: 0.9;
}

.product-image-label {
    font-size: clamp(0.6875rem, 1.5vw, 0.75rem);
    color: #999999;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 9999px;
}

.product-content-container {
    padding: 1.5rem;
}

.product-content-title {
    font-size: clamp(1rem, 3vw, 1.125rem);
    margin-bottom: 0.625rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #363636;
}

.product-content-description {
    line-height: 1.6;
    font-size: clamp(0.8125rem, 2vw, 0.875rem);
    color: #666666;
}

/* Complete Package Section */
/* Featured Product Section */
.product-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    align-items: center;
}

.product-featured-image {
    position: relative;
    cursor: pointer;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 2px solid rgba(243, 124, 33, 0.2);
    transition: transform 0.2s ease;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}


.featured-img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateZ(0);
    will-change: transform;
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #F37C21;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.product-featured-content {
    padding: 1rem 0;
}

.featured-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #363636;
    margin-bottom: 1rem;
}

.featured-description {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.featured-item {
    font-size: 0.95rem;
    color: #363636;
    font-weight: 500;
    padding: 0.5rem 0;
}

/* Product Details Grid */
.product-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    contain: layout;
}

.product-detail-card {
    background: #f8f8f8;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(243, 124, 33, 0.15);
    transition: transform 0.2s ease;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@media (hover: hover) and (pointer: fine) {
    .product-detail-card:hover {
        border-color: rgba(243, 124, 33, 0.3);
    }
    
    .product-featured-image:hover {
        transform: scale(1.02) translateZ(0);
        border-color: rgba(243, 124, 33, 0.4);
    }
    
    .gallery-main-img:hover {
        transform: translateZ(0) scale(1.05);
    }
}

/* Product Gallery */
.product-gallery {
    position: relative;
    contain: layout style paint;
}

.product-gallery-main {
    width: 100%;
    height: 220px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
    will-change: transform;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}


.product-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    overflow-x: auto;
    scrollbar-width: none;
}

.product-gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.gallery-thumb {
    width: 50px;
    height: 50px;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(243, 124, 33, 0.2);
    transition: border-color 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
    flex-shrink: 0;
    will-change: border-color, opacity, transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.gallery-thumb.active {
    border-color: #F37C21;
    border-width: 2px;
}

.gallery-thumb:hover {
    border-color: #F37C21;
    opacity: 0.8;
    transform: translateZ(0) scale(1.05);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 0.5rem;
    border: 2px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.5rem;
    flex-shrink: 0;
    cursor: default;
}

.product-detail-info {
    padding: 1.25rem;
    text-align: center;
}

.product-detail-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #363636;
    margin-bottom: 0.5rem;
}

.product-detail-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0.5rem;
    animation: modalFadeIn 0.3s ease;
    touch-action: pan-x pan-y;
}

.image-modal-caption {
    margin-top: 1rem;
    color: #ffffff;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    text-align: center;
    padding: 0 2rem;
    max-width: 90%;
}

.image-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
    z-index: 10001;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
    .image-modal-close:hover {
        opacity: 0.7;
    }
}

.modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    color: #ffffff;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.modal-arrow-left {
    left: 2rem;
}

.modal-arrow-right {
    right: 2rem;
}

.modal-arrow:hover:not(.disabled) {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.modal-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.modal-arrows-mobile {
    display: none;
}

@media (max-width: 768px) {
    .image-modal {
        padding: 1rem;
    }
    
    .image-modal-content {
        max-width: 95%;
        max-height: 75vh;
        margin-bottom: 1rem;
    }
    
    .image-modal-caption {
        font-size: 0.9rem;
        padding: 0 1rem;
        margin-top: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .image-modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 2.5rem;
        width: 44px;
        height: 44px;
    }
    
    /* Hide desktop arrows on mobile */
    .modal-arrow-left,
    .modal-arrow-right {
        display: none;
    }
    
    /* Show mobile arrows container */
    .modal-arrows-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    .modal-arrow-left-mobile,
    .modal-arrow-right-mobile {
        position: relative;
        width: 44px;
        height: 44px;
        background-color: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #ffffff;
        padding: 0;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
    }
    
    .modal-arrow-left-mobile svg,
    .modal-arrow-right-mobile svg {
        width: 20px;
        height: 20px;
    }
    
    .modal-arrow-left-mobile:active:not(.disabled),
    .modal-arrow-right-mobile:active:not(.disabled) {
        background-color: rgba(255, 255, 255, 0.25);
        transform: scale(0.95);
    }
    
    .modal-arrow-left-mobile.disabled,
    .modal-arrow-right-mobile.disabled {
        opacity: 0.3;
        cursor: not-allowed;
        pointer-events: none;
    }
    
    .image-modal-close:active {
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .image-modal-content {
        max-width: 98%;
        max-height: 70vh;
    }
    
    .image-modal-caption {
        font-size: 0.85rem;
        padding: 0 0.75rem;
    }
    
    .image-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .modal-arrow-left-mobile,
    .modal-arrow-right-mobile {
        width: 40px;
        height: 40px;
    }
    
    .modal-arrow-left-mobile svg,
    .modal-arrow-right-mobile svg {
        width: 18px;
        height: 18px;
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* PDF Preview Modal Styles */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pdf-modal-content {
    background-color: #ffffff;
    border-radius: 0.75rem;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: modalFadeIn 0.3s ease;
    overflow: hidden;
}

.pdf-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(243, 124, 33, 0.15);
    background-color: #ffffff;
}

.pdf-modal-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #363636;
    margin: 0;
}

.pdf-modal-download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background-color: #F37C21;
    color: #ffffff;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.pdf-modal-download-btn .download-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    flex-shrink: 0;
}

/* Hover effects removed - keeping it simple */

.pdf-modal-iframe {
    flex: 1;
    width: 100%;
    border: none;
    background-color: #f5f5f5;
}

.pdf-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
    z-index: 10001;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
    .pdf-modal-close:hover {
        opacity: 0.7;
    }
}

.pdf-modal-close:active {
    opacity: 0.7;
}

/* PDF Modal Responsive */
@media (max-width: 768px) {
    .pdf-modal-content {
        width: 95%;
        height: 85vh;
        max-height: 85vh;
    }
    
    .pdf-modal-header {
        padding: 1rem 1.25rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .pdf-modal-title {
        font-size: 1.125rem;
        flex: 1;
        min-width: 100%;
    }
    
    .pdf-modal-download-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
    }
    
    .pdf-modal-close {
        top: 1rem;
        right: 1rem;
        font-size: 2.5rem;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .pdf-modal-content {
        width: 98%;
        height: 80vh;
        max-height: 80vh;
    }
    
    .pdf-modal-header {
        padding: 0.875rem 1rem;
    }
    
    .pdf-modal-title {
        font-size: 1rem;
    }
    
    .pdf-modal-download-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .pdf-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
}

/* Setup Guide Section Styles */
/* Setup Guide Section Styles - Modern Visual Flow */
.setup-section-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.setup-steps-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.setup-step {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    overflow: visible;
}

.setup-step-number-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #F37C21;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    z-index: 3;
}

.setup-step-mascot-container {
    width: 140px;
    height: 140px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.setup-step-mascot {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.setup-step-icon-overlay {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 48px;
    height: 48px;
    background: rgba(243, 124, 33, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: none;
    z-index: 2;
}

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

.setup-step-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.setup-step-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}

.setup-step-text {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

@media (hover: hover) and (pointer: fine) {
    .setup-step:hover {
        transform: translateY(-2px);
    }
}

.setup-section-cityscape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    /* height: 300px; */
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    /* overflow: hidden; */
}

.setup-landmarks-image {
    width: 100%;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: center bottom;
    opacity: 0.08;
    filter: brightness(0) invert(1);
}

/* Download Materials Section Styles */
.materials-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.materials-section-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 1rem 1.5rem 2rem;
}

.materials-section .section-title {
    text-align: center;
    margin-top: 0;
    margin-bottom: 2rem;
}

.materials-sections-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.materials-subsection {
    display: flex;
    flex-direction: column;
}

.materials-subsection-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: #363636;
    margin-bottom: 1rem;
    text-align: center;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0;
}

.material-card {
    background-color: #ffffff;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(243, 124, 33, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    -webkit-tap-highlight-color: transparent !important;
    tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    user-select: none !important;
}

.material-card:focus,
.material-card:active,
.material-card:focus-visible {
    outline: none !important;
    border: 2px solid rgba(243, 124, 33, 0.08) !important;
}

.material-thumbnail {
    width: 100%;
    height: 120px;
    background-color: #f5f5f5;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(243, 124, 33, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

@media (hover: hover) and (pointer: fine) {
    .material-thumbnail:hover {
        border-color: rgba(243, 124, 33, 0.3);
        transform: translateY(-2px);
    }
}

.material-thumbnail:active {
    transform: translateY(0);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.material-info {
    text-align: center;
    flex: 1;
    width: 100%;
}

.material-info-title {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    margin-bottom: 0.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #363636;
    line-height: 1.3;
}

.material-info-description {
    color: #666666;
    font-size: clamp(0.65rem, 1.2vw, 0.7rem);
    line-height: 1.3;
}

.download-button {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    min-height: 2rem;
    max-width: 2rem;
    max-height: 2rem;
    background-color: transparent;
    border: none;
    border-radius: 0;
    color: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent !important;
    tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    user-select: none !important;
    position: relative;
    overflow: visible;
    line-height: 1;
    text-align: center;
    padding: 0;
    text-decoration: none;
}

.download-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
    transition: transform 0.2s ease;
}

/* Desktop hover effect for download button */
@media (hover: hover) and (pointer: fine) {
    .download-button:hover {
        opacity: 0.8;
    }
    
    .download-button:hover .download-icon {
        transform: scale(1.05);
    }
}

.download-button:active {
    transform: scale(0.95);
}

/* Responsive adjustments for materials section */
@media (max-width: 1024px) {
    .materials-sections-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .materials-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

.download-button:focus,
.download-button:focus-visible {
    outline: none !important;
    border: none !important;
}

/* Training Resources Section Styles */
.training-section-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

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

.training-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem 1.75rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    position: relative;
    outline: none;
    border: none;
}

.training-card[onclick] {
    cursor: pointer;
}

.training-play-icon {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    background-color: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.training-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.training-play-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.training-card-title {
    font-size: clamp(1rem, 3vw, 1.125rem);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 10;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.training-card-description {
    line-height: 1.6;
    font-size: clamp(0.8125rem, 2vw, 0.875rem);
    color: #cccccc;
    position: relative;
    z-index: 10;
    margin-bottom: 1rem;
    flex: 1;
}

.training-share-button {
    background-color: transparent;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
    margin-top: auto;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-icon-img {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
    flex-shrink: 0;
}

@media (hover: hover) and (pointer: fine) {
    .training-share-button:hover {
        opacity: 0.8;
    }
}

/* Support Section Styles */
.support-section-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.support-card {
    background-color: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    border: 2px solid rgba(243, 124, 33, 0.08);
    transition: all 0.3s ease;
}

.support-icon {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    background-color: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.support-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.support-card-title {
    font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 10;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #363636;
    line-height: 1.3;
}

.support-card-description {
    font-size: clamp(0.8125rem, 2vw, 0.9375rem);
    line-height: 1.5;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
    color: #666666;
}

.support-contact-link {
    color: #F37C21;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    word-break: break-word;
}

/* Utility Classes for Elementor Compatibility */
.elementor-utility-flex { display: flex; }
.elementor-utility-grid { display: grid; }
.elementor-utility-items-center { align-items: center; }
.elementor-utility-items-start { align-items: flex-start; }
.elementor-utility-justify-center { justify-content: center; }
.elementor-utility-justify-between { justify-content: space-between; }
.elementor-utility-text-center { text-align: center; }
.elementor-utility-flex-col { flex-direction: column; }
.elementor-utility-flex-1 { flex: 1 1 0%; }
.elementor-utility-relative { position: relative; }
.elementor-utility-absolute { position: absolute; }
.elementor-utility-w-full { width: 100%; }
.elementor-utility-max-w-1200 { max-width: 1200px; }
.elementor-utility-max-w-1400 { max-width: 1400px; }
.elementor-utility-max-w-1100 { max-width: 1100px; }
.elementor-utility-mx-auto { margin-left: auto; margin-right: auto; }
.elementor-utility-z-10 { z-index: 10; }
.elementor-utility-z-1 { z-index: 1; }
.elementor-utility-overflow-hidden { overflow: hidden; }
.elementor-utility-gap-6 { gap: 1.5rem; }
.elementor-utility-gap-10 { gap: 2.5rem; }
.elementor-utility-gap-12 { gap: 3rem; }
.elementor-utility-text-white { color: #ffffff; }
.elementor-utility-text-dark { color: #363636; }
.elementor-utility-text-secondary { color: #666666; }
.elementor-utility-text-primary { color: #F37C21; }
.elementor-utility-bg-dark { background-color: #323333; }
.elementor-utility-bg-primary { background-color: #F37C21; }
.elementor-utility-bg-white { background-color: #ffffff; }
.elementor-utility-rounded-2xl { border-radius: 1rem; }
.elementor-utility-rounded-28 { border-radius: 1.75rem; }
.elementor-utility-rounded-32 { border-radius: 2rem; }
.elementor-utility-border-2 { border-width: 2px; }
.elementor-utility-border-none { border: none; }
.elementor-utility-transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.elementor-utility-cursor-pointer { cursor: pointer; }
.elementor-utility-no-underline { text-decoration: none; }

/* Responsive Typography Utilities */
.elementor-utility-text-clamp-hero { font-size: clamp(3.5rem, 9vw, 8rem); }
.elementor-utility-text-clamp-subtitle { font-size: clamp(1.2rem, 3vw, 2rem); }
.elementor-utility-text-clamp-body { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* Responsive breakpoints */
@media (min-width: 640px) {
    .elementor-utility-sm-text-base { font-size: 1rem; }
    .elementor-utility-sm-text-lg { font-size: 1.125rem; }
}

@media (min-width: 768px) {
    .elementor-utility-md-text-base { font-size: 1rem; }
    .elementor-utility-md-text-lg { font-size: 1.125rem; }
    .elementor-utility-md-text-xl { font-size: 1.25rem; }
    .elementor-utility-md-text-4xl { font-size: 2.25rem; }
    .elementor-utility-md-text-5xl { font-size: 3rem; }
    .elementor-utility-md-text-6xl { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
    .elementor-utility-lg-text-6xl { font-size: 3.75rem; }
    .elementor-utility-lg-text-7xl { font-size: 4.5rem; }
    .elementor-utility-lg-flex-row { flex-direction: row; }
    .elementor-utility-lg-items-center { align-items: center; }
}

/* Centered CTA spanning both columns */
.pup-guidelines-cta {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2.5rem;
}

.pup-guidelines-cta .download-text {
    color: #666666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.pup-download-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background-color: #F37C21;
    color: #ffffff;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    margin: 0 auto;
    width: fit-content;
}

.pup-download-button:hover {
    transform: scale(1.05);
}

.pup-download-button .download-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    flex-shrink: 0;
}/* End custom CSS */