/*
 Theme Name:   Astra Child
 Theme URI:    https://wmtechno.com
 Description:  Astra Child Theme for WMTechno — custom product category pages
 Author:       WMTechno
 Author URI:   https://wmtechno.com
 Template:     astra
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  astra-child
*/

/* ========================================================
   GLOBAL DESIGN SYSTEM (Matching About Us Page)
======================================================== */

:root {
    /* Color Palette */
    --wm-navy: #0B0344;           /* Primary headings */
    --wm-dark-gray: #101218;      /* Secondary headings */
    --wm-medium-gray: #494B51;    /* Body text */
    --wm-light-gray: #F3F5F5;     /* Background */
    --wm-blue: #4175FC;           /* Primary button */
    --wm-blue-hover: #2557d6;     /* Button hover */
    --wm-cyan: #A8C7D4;           /* Hero background */
    --wm-gold: #C9A86A;           /* Accent */
    --wm-white: #FFFFFF;
    
    /* Typography */
    --wm-font-primary: 'Lato', sans-serif;
    --wm-font-secondary: 'Roboto', sans-serif;
}

/* Smooth Scroll & Snap Behavior */
html {
    scroll-behavior: auto; /* Let CSS scroll-snap handle the behavior */
}

/* Scroll container setup for snap behavior */
body.single-product {
    overflow-y: scroll;
    overflow-x: hidden;
}

/* Main scroll container with snap behavior */
.wm-single-product {
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    height: 100vh;
    overflow-x: hidden;
}

/* Global section title text-shadow */
.wm-single-product section h2 {
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

/* Section Content Fade-In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Initial state - sections hidden until scrolled into view */
.wm-product-hero__inner,
.wm-trust-bar__inner,
.wm-modules__inner,
.wm-global-features__inner,
.wm-industry-features__inner,
.wm-differentiators__inner,
.wm-faq__inner,
.wm-pricing__inner,
.wm-tech-specs__inner,
.wm-product-tabs__inner,
.wm-partnership__inner,
.wm-final-cta__inner,
.wm-related-products__inner,
.wm-testimonials__inner {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Animated state - added by JavaScript when section enters viewport */
.wm-product-hero__inner.wm-animate-in,
.wm-trust-bar__inner.wm-animate-in,
.wm-modules__inner.wm-animate-in,
.wm-global-features__inner.wm-animate-in,
.wm-industry-features__inner.wm-animate-in,
.wm-differentiators__inner.wm-animate-in,
.wm-faq__inner.wm-animate-in,
.wm-pricing__inner.wm-animate-in,
.wm-tech-specs__inner.wm-animate-in,
.wm-product-tabs__inner.wm-animate-in,
.wm-partnership__inner.wm-animate-in,
.wm-final-cta__inner.wm-animate-in,
.wm-related-products__inner.wm-animate-in,
.wm-testimonials__inner.wm-animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Initial state for grid items */
.wm-module-card,
.wm-feature-card,
.wm-global-feature-card,
.wm-industry-feature-card,
.wm-testimonial-card,
.wm-pricing-card,
.wm-tech-spec-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animated state for grid items */
.wm-module-card.wm-animate-in,
.wm-feature-card.wm-animate-in,
.wm-global-feature-card.wm-animate-in,
.wm-industry-feature-card.wm-animate-in,
.wm-testimonial-card.wm-animate-in,
.wm-pricing-card.wm-animate-in,
.wm-tech-spec-card.wm-animate-in {
    opacity: 1;
    transform: translateY(0);
}

.wm-module-card:nth-child(6),
.wm-feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Global Typography Enhancement */
body {
    font-family: var(--wm-font-primary);
    color: var(--wm-medium-gray);
    background-color: var(--wm-light-gray);
    font-size: 16px;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--wm-font-secondary);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--wm-navy);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.625rem);
    color: var(--wm-navy);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.4rem, 3vw, 1.625rem);
    color: var(--wm-dark-gray);
    font-weight: 700;
}

/* Primary Buttons */
.wm-btn,
.elementor-button,
.wp-block-button__link,
.woocommerce-button,
.button {
    background-color: var(--wm-blue) !important;
    color: var(--wm-white) !important;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.5s ease;
    border: none;
    cursor: pointer;
}

.wm-btn:hover,
.elementor-button:hover,
.wp-block-button__link:hover,
.woocommerce-button:hover,
.button:hover {
    background-color: var(--wm-blue-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(65, 117, 252, 0.3);
}

/* Section Containers */
.wm-section {
    padding: 60px 20px;
}

.wm-section--light {
    background-color: var(--wm-white);
}

.wm-section--gray {
    background-color: var(--wm-light-gray);
}

/* ========================================================
   HERO SECTION
======================================================== */
.wm-hero {
    background-size: cover;
    background-position: center;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wm-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.wm-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.wm-hero__title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ========================================================
   CATEGORY DESCRIPTION SECTION
======================================================== */
.wm-category-desc {
    background: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.wm-category-desc__inner {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

/* ========================================================
   PRODUCTS + FILTERS SECTION
======================================================== */
.wm-products-section {
    padding: 50px 20px;
}

.wm-products-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* ---- Sidebar Filters ---- */
.wm-filters {
    width: 240px;
    flex-shrink: 0;
}

.wm-filters .filter-widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 20px;
}

.wm-filters .filter-widget__title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #222;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

/* ---- Product Grid ---- */
.wm-products-grid {
    flex: 1;
    min-width: 0;
}

/* ========================================================
   RESPONSIVE
======================================================== */
@media (max-width: 768px) {
    .wm-products-section__inner {
        flex-direction: column;
    }

    .wm-filters {
        width: 100%;
    }
}

/* ========================================================
   SINGLE PRODUCT PAGE — HIGH-CONVERSION SAAS TEMPLATE
======================================================== */

/* Full-Screen Section Base */
.single-product .wm-product-hero,
.single-product .wm-trust-bar,
.single-product .wm-tech-specs,
.single-product .wm-modules,
.single-product .wm-differentiators,
.single-product .wm-industry-features,
.single-product .wm-global-features,
.single-product .wm-strategic-interconnections,
.single-product .wm-testimonials,
.single-product .wm-faq,
.single-product .wm-pricing,
.single-product .wm-product-tabs,
.single-product .wm-partnership,
.single-product .wm-final-cta,
.single-product .wm-related-products {
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ---- Hero Section ---- */
.wm-product-hero {
    background: linear-gradient(135deg, #9BB8C8 0%, #C1D9E3 100%);
    padding: 80px 20px;
    color: var(--wm-white);
    position: relative;
    overflow: hidden;
}

/* Optional: Add subtle pattern overlay like About Us page */
.wm-product-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.wm-product-hero__inner {
    max-width: 100%;
    padding: 0 40px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.wm-product-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.2;
    color: var(--wm-white);
    text-shadow: rgba(0, 0, 0, 0.3) 5px 5px 5px;
    font-family: var(--wm-font-primary);
}

.wm-product-hero__tagline {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: rgba(0, 0, 0, 0.2) 2px 2px 4px;
}

.wm-product-hero__desc {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--wm-dark-gray);
    padding: 20px 25px;

}

.wm-product-hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.wm-product-hero__cta-primary,
.wm-product-hero__cta-secondary {
    background: var(--wm-blue);
    color: var(--wm-white);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 4px 16px rgba(65, 117, 252, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.wm-product-hero__cta-primary:hover,
.wm-product-hero__cta-secondary:hover {
    background: var(--wm-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(65, 117, 252, 0.5);
}

.wm-btn {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.5s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wm-btn--secondary {
    background: transparent;
    color: var(--wm-white);
    border: 2px solid var(--wm-white);
}

.wm-btn--secondary:hover {
    background: var(--wm-white);
    color: var(--wm-blue);
}

.wm-product-hero__price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wm-white);
    text-shadow: rgba(0, 0, 0, 0.2) 2px 2px 4px;
}

.wm-product-hero__media .woocommerce-product-gallery {
    background: var(--wm-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Scroll Indicator */
.wm-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.wm-scroll-indicator:hover {
    opacity: 1;
}

.wm-scroll-indicator__text {
    color: var(--wm-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
}

.wm-scroll-indicator__arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--wm-white);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
}

.wm-scroll-indicator__arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--wm-white);
    border-radius: 50%;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0.3;
    }
}

/* ---- Trust Bar ---- */
.wm-trust-bar {
    background: var(--wm-light-gray);
    padding: 80px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.wm-trust-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.wm-trust-bar__title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--wm-medium-gray);
    margin: 0 0 35px;
    font-family: var(--wm-font-secondary);
}

.wm-trust-bar__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    overflow-x: auto;
}

.wm-trust-bar__logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.5s ease;
}

.wm-trust-bar__logo:hover {
    filter: grayscale(0%) opacity(1);
}

/* ---- Core Modules Section ---- */
.wm-modules {
    background: var(--wm-white);
    padding: 80px 20px;
}

.wm-modules__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.wm-modules__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 60px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-modules__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.wm-module-card {
    background: var(--wm-white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 35px;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wm-module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--wm-blue);
}

.wm-module-card__icon {
    font-size: 3rem;
    color: var(--wm-blue);
    margin-bottom: 20px;
}

.wm-module-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-module-card__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--wm-medium-gray);
    margin: 0;
}

/* ---- Differentiators Section ---- */
.wm-differentiators {
    background: var(--wm-light-gray);
    padding: 80px 20px;
}

.wm-differentiators__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.wm-differentiators__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 60px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-differentiators__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.wm-feature-card {
    background: var(--wm-white);
    border-radius: 8px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
}

.wm-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.wm-feature-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--wm-blue);
}

.wm-feature-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-feature-card__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--wm-medium-gray);
    margin: 0;
}

/* ---- Global Features Section ---- */
.wm-global-features {
    background: var(--wm-white);
    padding: 80px 20px;
}

.wm-global-features__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.wm-global-features__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 60px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-global-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.wm-global-feature-card {
    background: var(--wm-light-gray);
    border-radius: 8px;
    padding: 35px;
    text-align: center;
    transition: all 0.5s ease;
}

.wm-global-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.wm-global-feature-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.wm-global-feature-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-global-feature-card__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--wm-medium-gray);
    margin: 0;
}

/* ---- Industry Features Section ---- */
.wm-industry-features {
    background: var(--wm-light-gray);
    padding: 80px 20px;
}

.wm-industry-features__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.wm-industry-features__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 60px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-industry-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.wm-industry-feature-card {
    background: var(--wm-white);
    border-radius: 8px;
    padding: 35px;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wm-industry-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.wm-industry-feature-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.wm-industry-feature-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-industry-feature-card__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--wm-medium-gray);
    margin: 0;
}

/* ---- Testimonials Section ---- */
.wm-testimonials {
    background: var(--wm-white);
    padding: 80px 20px;
}

.wm-testimonials__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.wm-testimonials__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 60px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.wm-testimonial-card {
    background: var(--wm-light-gray);
    border-radius: 8px;
    padding: 35px;
    transition: all 0.5s ease;
}

.wm-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.wm-testimonial-card__rating {
    color: var(--wm-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.wm-star {
    color: var(--wm-gold);
}

.wm-testimonial-card__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--wm-medium-gray);
    margin: 0 0 25px;
    font-style: italic;
}

.wm-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wm-testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.wm-testimonial-card__author-info {
    display: flex;
    flex-direction: column;
}

.wm-testimonial-card__author-info strong {
    color: var(--wm-navy);
    font-size: 1rem;
    margin-bottom: 4px;
}

.wm-testimonial-card__author-info span {
    color: var(--wm-medium-gray);
    font-size: 0.9rem;
}

/* ---- FAQ Section (Accordion) ---- */
.wm-faq {
    background: var(--wm-light-gray);
    padding: 80px 20px;
}

.wm-faq__inner {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.wm-faq__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 60px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wm-faq-item {
    background: var(--wm-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wm-faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: var(--wm-white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
    transition: all 0.5s ease;
}

.wm-faq-item__question:hover {
    background: var(--wm-light-gray);
}

.wm-faq-item__toggle {
    font-size: 1.5rem;
    color: var(--wm-blue);
    font-weight: 700;
    transition: transform 0.5s ease;
}

.wm-faq-item--open .wm-faq-item__toggle {
    transform: rotate(45deg);
}

.wm-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.wm-faq-item--open .wm-faq-item__answer {
    max-height: 500px;
}

.wm-faq-item__answer p {
    padding: 0 30px 30px;
    margin: 0;
    color: var(--wm-medium-gray);
    line-height: 1.8;
}

/* ---- Pricing Table Section ---- */
.wm-pricing {
    background: var(--wm-white);
    padding: 80px 20px;
}

.wm-pricing__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.wm-pricing__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 60px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.wm-pricing-card {
    background: var(--wm-white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
}

.wm-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.wm-pricing-card--highlighted {
    border-color: var(--wm-blue);
    box-shadow: 0 8px 30px rgba(65, 117, 252, 0.2);
}

.wm-pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wm-blue);
    color: var(--wm-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wm-pricing-card__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wm-navy);
    margin: 0 0 20px;
    font-family: var(--wm-font-secondary);
}

.wm-pricing-card__price {
    margin-bottom: 20px;
}

.wm-pricing-card__amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--wm-blue);
}

.wm-pricing-card__period {
    font-size: 1.1rem;
    color: var(--wm-medium-gray);
}

.wm-pricing-card__description {
    font-size: 0.95rem;
    color: var(--wm-medium-gray);
    margin-bottom: 25px;
}

.wm-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.wm-pricing-card__features li {
    padding: 10px 0;
    color: var(--wm-medium-gray);
    border-bottom: 1px solid #f0f0f0;
}

.wm-pricing-card__features li:last-child {
    border-bottom: none;
}

.wm-pricing-card__cta {
    display: block;
    width: 100%;
    padding: 14px 30px;
    background: var(--wm-blue);
    color: var(--wm-white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.5s ease;
}

.wm-pricing-card__cta:hover {
    background: var(--wm-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(65, 117, 252, 0.3);
}

/* ---- Final CTA Section ---- */
.wm-final-cta {
    background: linear-gradient(135deg, var(--wm-navy) 0%, #1a0d5a 100%);
    padding: 100px 20px;
    color: var(--wm-white);
    text-align: center;
}

.wm-final-cta__inner {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.wm-final-cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--wm-white);
    font-family: var(--wm-font-secondary);
}

.wm-final-cta__subtitle {
    font-size: 1.3rem;
    margin: 0 0 40px;
    opacity: 0.95;
}

.wm-final-cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.wm-btn--primary {
    background: var(--wm-blue);
    color: var(--wm-white);
}

.wm-btn--primary:hover {
    background: var(--wm-blue-hover);
}

/* ---- Global Features Section ---- */
.wm-global-features {
    background: var(--wm-white);
    padding: 80px 20px;
}

.wm-global-features__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.wm-global-features__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 60px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-global-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.wm-global-feature-card {
    background: var(--wm-light-gray);
    border-radius: 8px;
    padding: 35px;
    text-align: center;
    transition: all 0.5s ease;
}

.wm-global-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.wm-global-feature-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.wm-global-feature-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-global-feature-card__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--wm-medium-gray);
    margin: 0;
}

/* ---- Industry Features Section ---- */
.wm-industry-features {
    background: var(--wm-light-gray);
    padding: 80px 20px;
}

.wm-industry-features__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.wm-industry-features__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 60px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-industry-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.wm-industry-feature-card {
    background: var(--wm-white);
    border-radius: 8px;
    padding: 35px;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wm-industry-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.wm-industry-feature-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.wm-industry-feature-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-industry-feature-card__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--wm-medium-gray);
    margin: 0;
}

/* ---- Testimonials Section ---- */
.wm-testimonials {
    background: var(--wm-white);
    padding: 80px 20px;
}

.wm-testimonials__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.wm-testimonials__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 60px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.wm-testimonial-card {
    background: var(--wm-light-gray);
    border-radius: 8px;
    padding: 35px;
    transition: all 0.5s ease;
}

.wm-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.wm-testimonial-card__rating {
    color: var(--wm-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.wm-star {
    color: var(--wm-gold);
}

.wm-testimonial-card__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--wm-medium-gray);
    margin: 0 0 25px;
    font-style: italic;
}

.wm-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wm-testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.wm-testimonial-card__author-info {
    display: flex;
    flex-direction: column;
}

.wm-testimonial-card__author-info strong {
    color: var(--wm-navy);
    font-size: 1rem;
    margin-bottom: 4px;
}

.wm-testimonial-card__author-info span {
    color: var(--wm-medium-gray);
    font-size: 0.9rem;
}

/* ---- FAQ Section (Accordion) ---- */
.wm-faq {
    background: var(--wm-light-gray);
    padding: 80px 20px;
}

.wm-faq__inner {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.wm-faq__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 60px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wm-faq-item {
    background: var(--wm-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wm-faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: var(--wm-white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
    transition: all 0.5s ease;
}

.wm-faq-item__question:hover {
    background: var(--wm-light-gray);
}

.wm-faq-item__toggle {
    font-size: 1.5rem;
    color: var(--wm-blue);
    font-weight: 700;
    transition: transform 0.5s ease;
}

.wm-faq-item--open .wm-faq-item__toggle {
    transform: rotate(45deg);
}

.wm-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.wm-faq-item--open .wm-faq-item__answer {
    max-height: 500px;
}

.wm-faq-item__answer p {
    padding: 0 30px 30px;
    margin: 0;
    color: var(--wm-medium-gray);
    line-height: 1.8;
}

/* ---- Pricing Table Section ---- */
.wm-pricing {
    background: var(--wm-white);
    padding: 80px 20px;
}

.wm-pricing__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.wm-pricing__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 60px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.wm-pricing-card {
    background: var(--wm-white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
}

.wm-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.wm-pricing-card--highlighted {
    border-color: var(--wm-blue);
    box-shadow: 0 8px 30px rgba(65, 117, 252, 0.2);
}

.wm-pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wm-blue);
    color: var(--wm-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wm-pricing-card__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wm-navy);
    margin: 0 0 20px;
    font-family: var(--wm-font-secondary);
}

.wm-pricing-card__price {
    margin-bottom: 20px;
}

.wm-pricing-card__amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--wm-blue);
}

.wm-pricing-card__period {
    font-size: 1.1rem;
    color: var(--wm-medium-gray);
}

.wm-pricing-card__description {
    font-size: 0.95rem;
    color: var(--wm-medium-gray);
    margin-bottom: 25px;
}

.wm-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.wm-pricing-card__features li {
    padding: 10px 0;
    color: var(--wm-medium-gray);
    border-bottom: 1px solid #f0f0f0;
}

.wm-pricing-card__features li:last-child {
    border-bottom: none;
}

.wm-pricing-card__cta {
    display: block;
    width: 100%;
    padding: 14px 30px;
    background: var(--wm-blue);
    color: var(--wm-white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.5s ease;
}

.wm-pricing-card__cta:hover {
    background: var(--wm-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(65, 117, 252, 0.3);
}

/* ---- Final CTA Section ---- */
.wm-final-cta {
    background: linear-gradient(135deg, var(--wm-navy) 0%, #1a0d5a 100%);
    padding: 100px 20px;
    color: var(--wm-white);
    text-align: center;
}

.wm-final-cta__inner {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.wm-final-cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--wm-white);
    font-family: var(--wm-font-secondary);
}

.wm-final-cta__subtitle {
    font-size: 1.3rem;
    margin: 0 0 40px;
    opacity: 0.95;
}

.wm-final-cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.wm-btn--primary {
    background: var(--wm-blue);
    color: var(--wm-white);
}

.wm-btn--primary:hover {
    background: var(--wm-blue-hover);
}

/* ---- Technical Specs Section ---- */
.wm-tech-specs {
    background: var(--wm-white);
    padding: 80px 20px;
}

.wm-tech-specs__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.wm-tech-specs__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 60px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-tech-specs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.wm-tech-spec-card {
    background: var(--wm-light-gray);
    border-radius: 8px;
    padding: 35px;
    text-align: center;
    transition: all 0.5s ease;
}

.wm-tech-spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.wm-tech-spec-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.wm-tech-spec-card__name {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

.wm-tech-spec-card__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--wm-medium-gray);
    margin: 0;
}

/* ---- Product Tabs ---- */
.wm-product-tabs {
    background: var(--wm-light-gray);
    padding: 60px 20px;
}

.wm-product-tabs__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.wm-product-tabs__inner .woocommerce-tabs {
    background: var(--wm-white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* ---- Partnership Section ---- */
.wm-partnership {
    background: var(--wm-navy);
    padding: 80px 20px;
    color: var(--wm-white);
}

.wm-partnership__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.wm-partnership__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 600;
    margin: 0 0 20px;
    color: var(--wm-white);
    font-family: var(--wm-font-secondary);
}

.wm-partnership__subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0 0 40px;
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--wm-font-primary);
}

.wm-partnership__content {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.wm-partnership__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
    margin-top: 40px;
}

.wm-partnership__item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.wm-partnership__item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.wm-partnership__item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--wm-white);
    font-family: var(--wm-font-secondary);
}

.wm-partnership__item p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* ---- Related Products Section ---- */
.wm-related-products {
    background: var(--wm-white);
    padding: 80px 20px;
}

.wm-related-products__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.wm-related-products__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 60px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
}

/* Slider Container */
.wm-related-slider {
    position: relative;
    padding: 0 60px;
}

.wm-related-slider__track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 20px 0;
}

.wm-related-slider__track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Product Cards */
.wm-related-product-card {
    flex: 0 0 280px;
    background: var(--wm-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.wm-related-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.wm-related-product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.wm-related-product-card__image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--wm-light-gray);
}

.wm-related-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wm-related-product-card:hover .wm-related-product-card__image img {
    transform: scale(1.05);
}

.wm-related-product-card__content {
    padding: 20px;
}

.wm-related-product-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--wm-navy);
    font-family: var(--wm-font-secondary);
    line-height: 1.4;
}

.wm-related-product-card__excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--wm-medium-gray);
    margin: 0;
}

/* Slider Navigation Arrows */
.wm-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--wm-navy);
    color: var(--wm-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wm-slider-arrow:hover {
    background: var(--wm-blue);
    transform: translateY(-50%) scale(1.1);
}

.wm-slider-arrow--prev {
    left: 0;
}

.wm-slider-arrow--next {
    right: 0;
}

.wm-slider-arrow span {
    display: block;
    line-height: 1;
}

/* Hide prices in related products */
.wm-related-product-card .price,
.wm-related-product-card .woocommerce-Price-amount {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .wm-related-slider {
        padding: 0 50px;
    }
    
    .wm-related-product-card {
        flex: 0 0 240px;
    }
    
    .wm-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .wm-related-slider {
        padding: 0 40px;
    }
    
    .wm-related-product-card {
        flex: 0 0 200px;
    }
    
    .wm-related-product-card__image {
        height: 160px;
    }
    
    .wm-slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
}

/* ---- Responsive Design ---- */
@media (max-width: 992px) {
    /* Disable scroll-snap on tablets for better control */
    body.single-product,
    .wm-single-product {
        scroll-snap-type: none;
        height: auto;
    }

    /* Hide scroll indicator on tablets/mobile */
    .wm-scroll-indicator {
        display: none;
    }

    /* Reduce min-height on smaller screens */
    .single-product .wm-product-hero,
    .single-product .wm-trust-bar,
    .single-product .wm-modules,
    .single-product .wm-global-features,
    .single-product .wm-industry-features,
    .single-product .wm-differentiators,
    .single-product .wm-testimonials,
    .single-product .wm-faq,
    .single-product .wm-pricing,
    .single-product .wm-tech-specs,
    .single-product .wm-product-tabs,
    .single-product .wm-partnership,
    .single-product .wm-final-cta,
    .single-product .wm-related-products {
        min-height: auto;
        padding: 60px 20px;
    }

    .wm-product-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wm-modules__title,
    .wm-differentiators__title,
    .wm-tech-specs__title,
    .wm-partnership__title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .wm-product-hero {
        padding: 40px 20px;
    }

    .wm-product-hero__inner {
        padding: 0 20px;
    }

    .wm-product-hero__ctas {
        flex-direction: column;
    }

    .wm-btn,
    .wm-product-hero__cta-primary,
    .wm-product-hero__cta-secondary {
        width: 100%;
        text-align: center;
    }

    .wm-trust-bar__logos {
        gap: 20px;
    }

    .wm-modules__grid,
    .wm-differentiators__grid,
    .wm-partnership__grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Strategic Interconnections Section ---- */
.wm-strategic-interconnections {
    background: var(--wm-navy);
    padding: 80px 20px;
    color: var(--wm-white);
}

.wm-strategic-interconnections__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.wm-strategic-interconnections__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 20px;
    color: var(--wm-white);
    font-family: var(--wm-font-secondary);
}

.wm-strategic-interconnections__intro {
    font-size: 1.125rem;
    line-height: 1.7;
    text-align: center;
    margin: 0 auto 60px;
    max-width: 800px;
    color: var(--wm-cyan);
}

.wm-strategic-interconnections__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.wm-connection-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 35px;
    transition: all 0.5s ease;
}

.wm-connection-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--wm-blue);
    transform: translateY(-5px);
}

.wm-connection-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 15px;
    color: var(--wm-cyan);
    font-family: var(--wm-font-secondary);
}

.wm-connection-card__desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}
