@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-main: #0a0a0c;
    --bg-card: rgba(20, 15, 15, 0.7);
    --bg-nav: rgba(10, 5, 5, 0.9);

    /* Bot Branding Colors based on the GUI */
    --primary: #c02020;
    --primary-hover: #e82a2a;
    --primary-glow: rgba(197, 32, 32, 0.5);
    --dark-glow: rgba(80, 5, 5, 0.4);

    --success: #00ff88;
    /* Switched back to green for the online/undetected pill as in screenshot */
    --warning: #ffb800;
    --disabled: #555;

    --text-primary: #FFFFFF;
    --text-secondary: #998888;

    --border-light: rgba(255, 255, 255, 0.05);
    --border-primary: rgba(197, 32, 32, 0.3);

    --transition-fast: 0.2s ease;
    --transition-base: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    /* Custom Metin2 Cursor */
    cursor: url('cursor.cur'), auto;
}

/* Hover Cursor for all clickable elements */
a, button, .faq-question, .testimo-card, .btn {
    cursor: url('cursor.cur'), pointer !important;
}

/* Typography Utility */
.text-gradient {
    background: linear-gradient(135deg, #ff4c4c, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(197, 32, 32, 0.4));
}

/* Background Effects */
body::before {
    content: '';
    position: fixed;
    top: -20vh;
    left: -10vw;
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, var(--dark-glow) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

body::after {
    content: '';
    position: fixed;
    bottom: -20vh;
    right: -10vw;
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle, rgba(160, 20, 20, 0.15) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    font-size: 26px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1.5px; /* Squeezed spacing removed, spacing increased */
    transform: scaleX(1.1); /* Stretch logo horizontally */
    transform-origin: left center; /* Stretch towards right naturally */
}

.logo i {
    color: var(--primary);
    font-size: 32px;
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.logo span {
    color: var(--text-primary);
}

.logo span span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 12px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-base);
    display: inline-block;
}

.nav-menu a:hover {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(197, 32, 32, 0.4);
    transform: translateY(-2px);
}

.btn-nav-discord {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.5);
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-nav-discord:hover {
    background: #5865F2;
    color: white;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.6);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-switcher span {
    color: var(--text-secondary);
    font-size: 13px;
    user-select: none;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 4px;
    font-family: inherit;
}

.lang-btn:hover {
    color: white;
}

.lang-btn.active {
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 50px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    opacity: 0.7;
    /* Keep it slightly dim for readability */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay: Dark on top for navbar, very dark down to blend into the black background below */
    background: linear-gradient(to bottom, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.8) 70%, rgba(10, 10, 12, 1) 100%);
    z-index: 1;
}

.hero-inner {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 3;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 32, 32, 0.15);
    border: 1px solid var(--border-primary);
    padding: 6px 14px;
    border-radius: 30px;
    color: var(--primary-hover);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(197, 32, 32, 0.2);
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(197, 32, 32, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 32, 32, 0.5);
    background: var(--primary-hover);
}

.btn-discord {
    background: #5865F2;
    color: white;
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary-hover);
    background: rgba(197, 32, 32, 0.05);
}

/* Abstract Hero Visual */
.hero-image-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.bot-gui-image {
    width: auto;
    max-width: 450px;
    height: auto;
    max-height: 600px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 25px rgba(197, 32, 32, 0.4);
    transform: perspective(1000px) rotateY(-15deg);
    transition: var(--transition-base);
    border: 2px solid var(--border-primary);
    object-fit: contain;
}

.bot-gui-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 45px rgba(197, 32, 32, 0.6);
    border-color: var(--primary);
}

/* Media Section */
.media-section {
    padding: 80px 20px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.media-grid {
    display: grid;
    grid-template-columns: minmax(280px, 720px);
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}

.media-container {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: var(--transition-base);
}

.media-container:hover {
    border-color: rgba(197, 32, 32, 0.4);
    box-shadow: 0 20px 50px rgba(197, 32, 32, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: #000;
    box-shadow: inset 0 0 20px rgba(0,0,0,1);
}

/* Features Section */
.features {
    padding: 100px 20px 50px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

/* Background grid to match the screenshot vibe completely */
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.text-yellow {
    color: var(--primary-hover);
    text-shadow: 0 0 15px rgba(197, 32, 32, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 32, 32, 0.3);
    box-shadow: 0 10px 30px rgba(197, 32, 32, 0.1);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: white;
}

.icon-circle i {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.why-card h3 {
    color: var(--primary-hover);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
    font-weight: 400;
}

/* Products Section - Clean Design like Screenshot */
.products {
    padding: 100px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    transition: var(--transition-base);
    min-height: 480px;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(197, 32, 32, 0.05);
}

.product-card.blue-variant:hover {
    border-color: #5B8EFF;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(91, 142, 255, 0.1);
}

.product-card.blue-variant .price {
    color: #5B8EFF;
}

.card-status-pill {
    position: absolute;
    top: 24px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--success);
    background: rgba(0, 255, 136, 0.05);
    z-index: 5;
}

.card-product-image {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-top: -24px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    /* Fade the bottom of the image into the card background so tone differences vanish */
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.card-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: var(--transition-base);
}

.product-card:hover .card-product-image img {
    transform: scale(1.08);
    /* slight zoom instead of Y translate for covered images */
}

.card-body {
    text-align: center;
    margin-bottom: 25px;
}

.card-body h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.card-online {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    color: var(--success);
    letter-spacing: 0.5px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.price-section {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.price {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    /* Using white for standard price */
    display: flex;
    align-items: flex-end;
}

.price b {
    color: #4da6ff;
    /* A generic light blue like the screenshot */
}

/* Use brand red for the SATIN AL button and price text */
.price {
    color: var(--primary);
}

.btn-incele {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 12px;
    text-decoration: none;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(197, 32, 32, 0.3);
}

.btn-incele:hover {
    background: var(--primary-hover);
    box-shadow: 0 8px 20px rgba(197, 32, 32, 0.6);
    transform: translateY(-2px);
}

.btn-blue {
    background: #5B8EFF;
    box-shadow: 0 5px 15px rgba(91, 142, 255, 0.3);
}

.btn-blue:hover {
    background: #4173DF;
    box-shadow: 0 8px 20px rgba(91, 142, 255, 0.6);
}

/* Why BX1 BOT Section (ZoroWare Match) */
.why-us {
    padding: 60px 20px 100px;
    max-width: 1300px;
    margin: 0 auto;
}

.why-us-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Faint line */
}

.why-us-header i {
    font-size: 30px;
}

.why-us-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.zoro-card {
    background: rgba(16, 18, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition-base);
}

.zoro-card:hover {
    background: rgba(20, 22, 30, 0.6);
    transform: translateY(-5px);
}

.zoro-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
}

.zoro-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.zoro-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Footer (Vista Software Style) */
.site-footer {
    background: transparent;
    padding: 60px 20px 40px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(100%, 980px);
    min-height: 300px;
    margin-bottom: 10px;
}

.copyright-text {
    font-size: 13px;
    letter-spacing: 2px;
    color: #6c6c75;
    font-weight: 500;
    text-transform: uppercase;
}

.copyright-text .divider {
    color: #4a4a55;
    margin: 0 8px;
}

.sub-text {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #4a4a55;
    font-weight: 600;
}

/* Logo Animation */
.spinning-logo {
    animation: spinY 4s linear infinite;
    transform-origin: center center;
    display: inline-flex;
}

@keyframes spinY {
    0% {
        transform: perspective(600px) rotateY(0deg);
    }

    100% {
        transform: perspective(600px) rotateY(360deg);
    }
}

.footer-spin-img {
    width: 300px;
    height: 300px;
    object-fit: contain;
}

.payment-methods-img {
    position: absolute;
    left: calc(50% + 150px);
    top: 50%;
    transform: translateY(-50%);
    width: min(360px, 34vw);
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
}

.testimo-container {
    overflow: hidden;
    padding: 20px 0 40px;
    position: relative;
}

.testimo-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollTestimonials 28s linear infinite;
}

.testimo-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

.testimo-card {
    min-width: 320px;
    max-width: 320px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    scroll-snap-align: center;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.testimo-card:hover {
    border-color: rgba(197, 32, 32, 0.4);
    box-shadow: 0 10px 30px rgba(197, 32, 32, 0.15);
    transform: translateY(-5px);
}

.testimo-card:nth-child(even):hover {
    border-color: rgba(91, 142, 255, 0.4);
    box-shadow: 0 10px 30px rgba(91, 142, 255, 0.15);
}

.testimo-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimo-avatar img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid var(--border-light);
}

.testimo-user-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.testimo-user-info span {
    color: #ffb800;
    font-size: 14px;
}

.testimo-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active {
    border-color: rgba(197, 32, 32, 0.3);
    box-shadow: 0 5px 20px rgba(197, 32, 32, 0.1);
    background: linear-gradient(145deg, rgba(16, 10, 10, 0.8), rgba(26, 12, 12, 0.9));
}

.faq-item.active .faq-question {
    color: var(--primary-hover);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 300px;
}

/* Responsive */
@media (max-width: 900px) {
    .navbar .nav-menu {
        display: none;
    }

    .hero {
        padding-top: 150px;
        padding-bottom: 50px;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .bot-gui-image {
        max-width: 90%;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .glass-board {
        width: 300px;
        height: 300px;
    }

    .footer-spin-img {
        width: 120px;
        height: 120px;
    }

    .footer-logo {
        min-height: auto;
        width: 100%;
        flex-direction: column;
        gap: 14px;
    }

    .payment-methods-img {
        position: static;
        transform: none;
        width: min(260px, 88vw);
    }

    .product-grid, 
    .features-grid {
        grid-template-columns: 1fr;
    }
}
