/* ========================
   CSS VARIABLES
======================== */
:root {
    --orange: #ec540e;
    --orange-light: #ff7b3a;
    --orange-dark: #d6361f;
    --bg: #f9f9f9;
    --header-bg: #f0f0f0;
    --text: #222;
    --text-light: #555;
    --card-bg: #fff;
    --radius: 12px;
    --shadow: rgba(0,0,0,0.08);
    --shadow-hover: rgba(236,84,14,0.25);
    --transition: all 0.3s ease;
    --border-light: rgba(0,0,0,0.05);
}

/* ========================
   BASE STYLES
======================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    -webkit-font-smoothing: antialiased;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: var(--transition);
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
}

/* ========================
   HEADER & NAVIGATION
======================== */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 28px;
    background: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 7rem;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border-radius: 10px;
    background: var(--card-bg);
    border: 2px solid var(--card-bg);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px var(--shadow);
}

.menu-toggle:hover,
.menu-toggle.active {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    box-shadow: 0 6px 16px var(--shadow-hover);
}

.menu-toggle i {
    font-size: 18px;
    pointer-events: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav {
    display: flex;
    gap: 14px;
    align-items: center;
}

nav a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 7px;
    background: var(--card-bg);
    color: var(--text);
    border: 2px solid var(--card-bg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

nav a:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ========================
   LANGUAGE SELECTOR
======================== */
.language-selector {
    position: relative;
    display: inline-block;
}

.language-toggle {
    background: var(--card-bg);
    border: 2px solid var(--card-bg);
    border-radius: 50px;
    padding: 8px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-weight: 500;
    color: var(--text);
    box-shadow: 0 2px 8px var(--shadow);
}

.language-toggle:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-hover);
}

.language-toggle i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 10px 0;
    margin-top: 8px;
    min-width: 140px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    border: 1px solid var(--border-light);
}

.language-selector.open .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-selector.open .language-toggle i {
    transform: rotate(180deg);
}

.language-option {
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
}

.language-option:hover {
    background: rgba(236, 84, 14, 0.1);
    color: var(--orange);
}

.language-option.active {
    background: rgba(236, 84, 14, 0.15);
    color: var(--orange);
    font-weight: 600;
}

button.icon-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 20px;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.icon-toggle:hover {
    background: var(--orange);
    color: white;
    transform: scale(1.1);
}

/* ========================
   HERO SECTION
======================== */
.hero {
    text-align: center;
    padding: 120px 20px 140px;
    background: linear-gradient(135deg, #fff8f3 0%, #fff1e6 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.3)"/></svg>');
    background-size: cover;
    opacity: 0.7;
}

.rainbow-slogan {
    font-size: clamp(28px, 5.2vw, 48px);
    line-height: 1.2;
    font-weight: 800;
    margin: 0 auto 20px;
    max-width: 920px;
    background: linear-gradient(90deg, #ff7a29 0%, #ff9a55 20%, #ffd166 40%, #21d4fd 65%, #7b2ff7 85%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: rainbowShift 6s linear infinite;
    position: relative;
    z-index: 1;
}

.rainbow-slogan .line {
    display: block;
}

@keyframes rainbowShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.hero-cta {
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-block;
    padding: 16px 32px;
    background: var(--orange);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(236,84,14,0.18);
    transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    background: var(--orange-dark);
    box-shadow: 0 12px 30px rgba(214,54,31,0.18);
}

/* ========================
   BROWSER ICONS
======================== */
.browser-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.browser-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    transition: var(--transition);
    padding: 12px;
    border-radius: var(--radius);
    min-width: 80px;
    background: var(--card-bg);
}

.browser-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow);
}

.browser-link img {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px var(--shadow));
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.browser-link:hover img {
    transform: scale(1.15);
}

.browser-link span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.browser-link:hover span {
    color: var(--orange);
}

/* ========================
   MAIN CONTENT
======================== */
main {
    padding: 0 20px;
    max-width: 1100px;
    margin: 0 auto;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
}

/* Section Headers */
section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text);
    font-weight: 700;
}

section .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ========================
   HOW IT WORKS SECTION
======================== */
#how {
    padding-top: 80px;
    padding-bottom: 80px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.step {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 30px 26px;
    text-align: center;
    box-shadow: 0 4px 14px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px var(--shadow-hover);
}

.step h3 {
    margin: 16px 0 12px;
    color: var(--orange);
    font-size: 1.4rem;
    font-weight: 600;
}

.step p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.step .num {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    background: var(--orange);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.step:hover .num {
    background: var(--orange-dark);
}

/* ========================
   FEATURES SECTION
======================== */
#features {
    padding-top: 80px;
    padding-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
    text-align: center;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-hover);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--orange);
    margin: 0 auto 16px;
    transition: transform 0.3s ease;
    display: block;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature h3 {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 600;
}

.feature p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================
   STORES CAROUSEL - REVAMP
======================== */
.supported-stores {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    background: var(--bg);
}

.stores-carousel {
    position: relative;
    margin: 48px auto 36px;
    padding: clamp(26px, 4vw, 48px) clamp(32px, 6vw, 68px);
    max-width: 1100px;
    background: linear-gradient(135deg, #fff6ef 0%, #ffe9d9 100%);
    border-radius: 32px;
    box-shadow: 0 25px 55px rgba(236, 84, 14, 0.16);
    overflow: hidden;
}

.stores-carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(236, 84, 14, 0.12);
    pointer-events: none;
}

.carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-container {
    scrollbar-width: none;
}

.carousel-track {
    display: flex;
    gap: clamp(12px, 3vw, 20px);
    padding: 4px;
    min-width: max-content;
}

.store-item {
    flex: 0 0 clamp(120px, 16vw, 160px);
    display: flex;
    justify-content: center;
}

.store-logo {
    width: clamp(70px, 9vw, 92px);
    height: clamp(70px, 9vw, 92px);
    border-radius: 22px;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
}

.store-logo img {
    width: 88%;
    height: 88%;
    object-fit: contain;
}

.store-logo:hover {
    transform: translateY(-6px);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: none;
    background: #fff;
    box-shadow: 0 20px 40px rgba(12, 21, 48, 0.14);
    color: var(--orange);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 2;
}

.carousel-arrow.prev {
    left: clamp(14px, 3vw, 24px);
}

.carousel-arrow.next {
    right: clamp(14px, 3vw, 24px);
}

.carousel-arrow:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 18px 38px rgba(236, 84, 14, 0.25);
}

@media (max-width: 960px) {
    .stores-carousel {
        padding: 32px 52px;
    }

    .store-item {
        flex: 0 0 clamp(140px, 22vw, 200px);
    }
}

@media (max-width: 720px) {
    .stores-carousel {
        padding: 28px 32px 36px;
    }

    .store-item {
        flex: 0 0 min(48vw, 200px);
    }

    .carousel-arrow {
        display: none;
    }
}

@media (max-width: 520px) {
    .stores-carousel {
        padding: 24px 32px 68px;
        border-radius: 26px;
    }

    .store-item {
        flex: 0 0 64vw;
    }

    .store-logo {
        width: 76px;
        height: 76px;
        border-radius: 20px;
    }
}

/* ========================
   FAQ SECTION
======================== */
#faq {
    padding-top: 80px;
    padding-bottom: 80px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px var(--shadow-hover);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
    font-size: 1.1rem;
    color: var(--text);
    background: var(--card-bg);
}

.faq-question:hover {
    background: var(--header-bg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--card-bg);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
}

.faq-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--orange);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-light);
}

/* ========================
   FOOTER
======================== */
footer {
    background: var(--header-bg);
    padding: 50px 20px 30px;
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s ease;
    padding: 4px 0;
}

.footer-column a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

.footer-column a i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================
   DARK MODE - FULL WIDTH FIX
======================== */
body.dark-mode {
    --bg: #0f0f0f;
    --header-bg: #1a1a1a;
    --text: #ffffff;
    --text-light: #cccccc;
    --card-bg: #1a1a1a;
    --shadow: rgba(0,0,0,0.4);
    --border-light: rgba(255,255,255,0.1);
    background: #0f0f0f !important;
}

body.dark-mode .hero {
    background: linear-gradient(135deg, #1a0f08 0%, #2a1508 100%);
}

/* Make sections full width with black background */
body.dark-mode #how,
body.dark-mode #features,
body.dark-mode #stores,
body.dark-mode #faq {
    background: #0f0f0f;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

/* Remove background from main in dark mode */
body.dark-mode main {
    background: #0f0f0f;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

/* Ensure footer is also dark */
body.dark-mode footer {
    background: var(--header-bg);
}

/* Stores carousel tweaks in dark mode */
body.dark-mode .stores-carousel {
    background: linear-gradient(135deg, #1a1a1a 0%, #101010 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

body.dark-mode .stores-carousel::before {
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .store-logo {
    background: transparent;
    border: none;
    box-shadow: none;
}

body.dark-mode .store-logo:hover {
    box-shadow: none;
}

body.dark-mode .carousel-arrow {
    background: #1f1f1f;
    color: var(--orange-light);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

body.dark-mode .carousel-arrow:hover {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.55);
}

/* Fix footer spacing */
body.dark-mode footer {
    background: #1a1a1a;
    margin-top: 0;
    padding-top: 80px;
}

/* Add bottom padding to FAQ */
body.dark-mode #faq {
    padding-bottom: 100px;
}

/* Center footer */
footer {
    text-align: center;
}

.footer-content {
    justify-items: center;
    text-align: center;
    gap: 40px;
}

.footer-column {
    text-align: left;
}

/* ========================
   Sticky
======================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    /* ... rest of your styles ... */
}

/* ========================
   RESPONSIVE ADJUSTMENTS
======================== */
@media (max-width: 1024px) {
    header {
        padding: 12px 18px;
    }

    nav {
        gap: 10px;
    }

    nav a {
        padding: 8px 12px;
    }

    .hero {
        padding: 110px 18px 120px;
    }

    main {
        padding: 0 18px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px 16px 0;
        box-shadow: 0 1px 6px var(--shadow);
        position: relative;
    }

    .header-left {
        width: 100%;
        justify-content: flex-start;
        gap: 12px;
        padding-right: 150px;
    }

    .header-right {
        order: 3;
        gap: 12px;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
        width: auto;
        position: absolute;
        top: 14px;
        right: 16px;
        margin: 0;
        z-index: 5;
    }

    .header-center {
        width: 100%;
        order: 2;
        display: flex;
        justify-content: center;
    }

    .menu-toggle {
        display: flex;
    }

    .header-center nav {
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 6px;
        border-radius: var(--radius);
        background: transparent;
        border: 0;
        box-shadow: none;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    }

    .header-center nav.open {
        max-height: 320px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        background: var(--card-bg);
        border: 1px solid var(--border-light);
        box-shadow: 0 12px 28px var(--shadow);
    }

    .header-center nav a {
        flex: none;
        width: 100%;
        text-align: left;
        padding: 14px 18px;
        border-radius: 0;
        border: 0;
        border-bottom: 1px solid var(--border-light);
        background: transparent;
    }

    .header-center nav a:last-child {
        border-bottom: 0;
    }

    .header-center nav a:hover {
        transform: none;
        background: rgba(236, 84, 14, 0.1);
    }

    .language-selector {
        width: auto;
        max-width: none;
        flex: 0 0 auto;
    }

    .language-toggle {
        width: auto;
        min-width: 120px;
        justify-content: center;
    }

    .header-right .icon-toggle {
        width: 36px;
        height: 36px;
        font-size: 18px;
        padding: 6px;
    }

    .hero {
        padding: 90px 16px 110px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .cta-btn {
        width: 100%;
        max-width: 320px;
    }

    .browser-icons {
        gap: 16px;
    }

    .steps {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .stores-carousel {
        flex-direction: column;
        gap: 16px;
    }

    .carousel-arrow {
        order: 2;
        width: 44px;
        height: 44px;
    }

    .carousel-container {
        order: 1;
        max-width: 100%;
    }

    footer {
        margin-top: 40px;
        padding: 40px 16px 24px;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 520px) {
    .logo-text {
        font-size: 18px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .header-left {
        gap: 10px;
        padding-right: 120px;
    }

    .header-center nav {
        margin-top: 4px;
    }

    .header-center nav a {
        font-size: 0.95rem;
        padding: 12px 16px;
    }
    
    .header-right {
        gap: 10px;
        top: 12px;
        right: 12px;
    }

    .header-right .icon-toggle {
        width: 34px;
        height: 34px;
    }

    .language-toggle {
        min-width: 110px;
        padding: 10px 12px;
    }

    .hero {
        padding: 80px 14px 90px;
    }

    .rainbow-slogan {
        font-size: clamp(26px, 8vw, 36px);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .browser-link {
        padding: 10px;
        min-width: 72px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .supported-stores {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    #faq {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .faq-question {
        padding: 16px;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        width: 100%;
    }

    .footer-column {
        width: 100%;
    }
}
