/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #131313;
    color: #ffffff;
    line-height: 1.5;
    font-size: 16px;
    overflow-x: hidden;
    overflow-y: auto;
}

/* CSS Custom Properties */
:root {
    /* Colors */
    --primary: #ffee00;
    --primary-dark: #b2a017;
    --accent: #e0c9ae;
    --text: #ffffff;
    --muted-text: #dec8aa;
    --bg: #131313;
    --bg-elevated: #1e1d1b;
    --bg-soft: #1f1e1c;
    --border: #36332e;
    --overlay: rgba(0, 0, 0, 0.6);
    --success: #56c271;
    --warning: #ffc107;
    --danger: #ff4d4f;
    
    /* Typography */
    --font-xs: 12px;
    --font-sm: 14px;
    --font-base: 16px;
    --font-lg: 18px;
    --font-xl: 20px;
    --font-h6: 22px;
    --font-h5: 24px;
    --font-h4: 28px;
    --font-h3: 32px;
    --font-h2: 36px;
    --font-h1: 42px;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 24px;
    --space-xxl: 32px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.3);
    --shadow-glow-primary: 0 0 0 4px rgba(255, 238, 0, 0.2);
    
    /* Breakpoints */
    --breakpoint-sm: 360px;
    --breakpoint-md: 600px;
    --breakpoint-lg: 960px;
    --breakpoint-xl: 1280px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 600px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

@media (min-width: 960px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

h1 { font-size: var(--font-h1); }
h2 { font-size: var(--font-h2); }
h3 { font-size: var(--font-h3); }
h4 { font-size: var(--font-h4); }
h5 { font-size: var(--font-h5); }
h6 { font-size: var(--font-h6); }

p {
    margin-bottom: var(--space-lg);
    color: var(--text);
    font-size: var(--font-lg);
    line-height: 1.65;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xxl);
    color: var(--text);
}

.text-intro {
    font-size: var(--font-xl);
    color: var(--text);
    margin-bottom: var(--space-xl);
}

.note, .footnote, .helper-text {
    font-size: var(--font-sm);
    color: var(--muted-text);
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-lg);
    border: none;
    border-radius: var(--radius-pill);
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--primary);
    color: var(--bg-elevated);
}

.btn--primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-glow-primary);
}

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

.btn--ghost:hover {
    background-color: var(--bg-soft);
}

.btn--sm {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-sm);
    min-height: 36px;
}

.btn--lg {
    padding: var(--space-lg) var(--space-xl);
    font-size: var(--font-lg);
    min-height: 52px;
}

/* Badge */
.badge {
    display: inline-block;
    background-color: #24231f;
    color: var(--muted-text);
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    font-size: var(--font-xs);
    font-weight: 500;
}

/* Age Gate Modal */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.age-gate__content {
    background-color: var(--bg-elevated);
    padding: var(--space-xxl);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 400px;
    margin: var(--space-lg);
    border: 1px solid var(--border);
}

.age-gate__actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.age-gate__actions .btn {
    flex: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-elevated);
    border-top: 1px solid var(--border);
    padding: var(--space-lg);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner__actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 29, 27, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    height: 80px;
}

@media (min-width: 600px) {
    .header {
        height: 88px;
    }
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
}

.header__logo {
    flex-shrink: 0;
}

.logo {
    height: 40px;
    width: auto;
}

@media (min-width: 600px) {
    .logo {
        height: 48px;
    }
}

.header__nav {
    display: none;
}

@media (min-width: 960px) {
    .header__nav {
        display: block;
        flex: 1;
        margin: 0 var(--space-xl);
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.header__actions {
    display: none;
    gap: var(--space-md);
}

@media (min-width: 600px) {
    .header__actions {
        display: flex;
    }
}

.header__menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

@media (min-width: 960px) {
    .header__menu-toggle {
        display: none;
    }
}

.header__menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text);
    transition: all 0.3s ease;
}

.header__menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 320px;
    margin-top: 80px;
}

@media (min-width: 600px) {
    .hero-section {
        height: 360px;
        margin-top: 88px;
    }
}

.hero-section__container {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.hero-section__content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--text);
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: var(--space-xxl) 0;
}

@media (min-width: 600px) {
    .hero-section__content {
        margin-left: var(--space-xl);
    }
}

@media (min-width: 960px) {
    .hero-section__content {
        margin-left: var(--space-xl);
    }
}

.hero-section h1 {
    font-size: var(--font-h2);
    margin-bottom: var(--space-lg);
}

@media (min-width: 600px) {
    .hero-section h1 {
        font-size: var(--font-h1);
    }
}

.hero-section__subtitle {
    font-size: var(--font-lg);
    margin-bottom: var(--space-xl);
    color: var(--text);
}

.hero-section__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: flex-start;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero-section__badges {
    display: flex;
    gap: var(--space-sm);
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 440px;
    overflow: hidden;
}

@media (min-width: 600px) {
    .hero-slider {
        height: 520px;
    }
}

.hero-slider__container {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--text);
    max-width: 600px;
    margin-left: 0;
}

@media (min-width: 600px) {
    .hero-slide__content {
        margin-left: var(--space-xl);
    }
}

@media (min-width: 960px) {
    .hero-slide__content {
        margin-left: var(--space-xl);
    }
}

.hero-slide h1 {
    font-size: var(--font-h2);
    margin-bottom: var(--space-lg);
}

@media (min-width: 600px) {
    .hero-slide h1 {
        font-size: var(--font-h1);
    }
}

.hero-slide__subtitle {
    font-size: var(--font-lg);
    margin-bottom: var(--space-xl);
    color: var(--text);
}

.hero-slide__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: flex-start;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero-slide__badges {
    display: flex;
    gap: var(--space-sm);
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-slider__navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 3;
}

.hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.hero-slider__arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
}

.hero-slider__arrow--prev {
    left: var(--space-lg);
}

.hero-slider__arrow--next {
    right: var(--space-lg);
}

.hero-slider__dots {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 3;
}

.hero-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider__dot.active {
    background-color: var(--primary);
}

/* Why Runa Slider */
.why-runa-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
}

@media (min-width: 600px) {
    .why-runa-slider {
        height: 480px;
    }
}

.why-runa-slider__container {
    position: relative;
    height: 100%;
}

.why-runa-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
}

.why-runa-slide.active {
    opacity: 1;
}

.why-runa-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 19, 19, 0.8) 0%, rgba(30, 29, 27, 0.7) 100%);
    z-index: 1;
}

.why-runa-slide__content {
    position: relative;
    z-index: 2;
    color: var(--text);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.why-runa-slide__content h3 {
    font-size: var(--font-h3);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.why-runa-slide__content p {
    font-size: var(--font-lg);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.why-runa-slider__navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 3;
}

.why-runa-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.why-runa-slider__arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
}

.why-runa-slider__arrow--prev {
    left: var(--space-lg);
}

.why-runa-slider__arrow--next {
    right: var(--space-lg);
}

.why-runa-slider__dots {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 3;
}

.why-runa-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.why-runa-slider__dot.active {
    background-color: var(--primary);
}

/* Slots Section */
.slots-section {
    padding: var(--space-xxl) 0;
    background-color: var(--bg-elevated);
}

.slots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

@media (min-width: 600px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

@media (min-width: 960px) {
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xxl);
    }
}

.slot-card {
    background-color: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.slot-card__image {
    height: 150px;
    overflow: hidden;
    position: relative;
}

.slot-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.slot-card:hover .slot-card__image img {
    filter: brightness(0.7) blur(2px);
}

.slot-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: var(--space-lg);
}

.slot-card:hover .slot-card__overlay {
    opacity: 1;
}

.slot-card__overlay .slot-card__content {
    padding: 0;
    text-align: center;
    margin-bottom: var(--space-lg);
}

.slot-card__overlay .slot-card__content h3 {
    font-size: var(--font-lg);
    margin-bottom: var(--space-sm);
    color: var(--text);
    font-weight: 700;
}

.slot-card__overlay .slot-card__content p {
    margin-bottom: 0;
    font-size: var(--font-sm);
    color: var(--muted-text);
    line-height: 1.4;
}

.slot-card__overlay .slot-card__actions {
    position: static;
    transform: none;
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    opacity: 1;
    transition: none;
    z-index: 2;
}

/* Promo Carousel */
.promo-carousel {
    padding: var(--space-xxl) 0;
    background-color: var(--bg-elevated);
}

.promo-carousel__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

@media (min-width: 600px) {
    .promo-carousel__container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

@media (min-width: 960px) {
    .promo-carousel__container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xxl);
    }
}

.promo-card {
    background-color: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.promo-card__image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.promo-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-card__title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    backdrop-filter: blur(4px);
    z-index: 2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.promo-card__title h3 {
    font-size: var(--font-h5);
    margin: 0;
    color: var(--text);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.promo-card__content {
    padding: var(--space-xl);
    padding-top: var(--space-lg);
    text-align: center;
}

.promo-card__content p {
    margin-bottom: var(--space-lg);
    font-size: var(--font-base);
}

/* Text Blocks */
.text-block {
    padding: var(--space-xxl) 0;
}

.apps-section {
    position: relative;
    height: 400px;
}

.apps-section__container {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.apps-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.apps-section__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: var(--space-xxl) 0;
}

.apps-section h2 {
    color: var(--text);
    font-size: var(--font-h1);
    text-align: center;
    margin-bottom: var(--space-xl);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.apps-section p {
    text-align: center;
    font-size: var(--font-xl);
    margin-bottom: var(--space-xxl);
    color: var(--text);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.apps-section .note {
    color: var(--muted-text);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.text-block h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.text-block.cta-final {
    background-color: var(--bg-elevated);
    text-align: center;
}

.section-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

/* Lists */
.feature-list, .numbered-list {
    margin: var(--space-xl) 0;
    padding-left: 0;
}

.feature-list li {
    list-style: none;
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--text);
    font-size: var(--font-lg);
    line-height: 1.65;
}

.feature-list li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.numbered-list {
    counter-reset: item;
}

.numbered-list li {
    list-style: none;
    position: relative;
    padding-left: var(--space-xxl);
    margin-bottom: var(--space-lg);
    color: var(--text);
    font-size: var(--font-lg);
    line-height: 1.65;
    counter-increment: item;
}

.numbered-list li::before {
    content: counter(item, decimal-leading-zero);
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Payment Table */
.payment-table-wrapper {
    overflow-x: auto;
    margin: var(--space-xl) 0;
}

.payment-table {
    width: 100%;
    background-color: var(--bg-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border-collapse: collapse;
}

.payment-table caption {
    caption-side: bottom;
    text-align: left;
    padding: var(--space-md) 0;
    font-size: var(--font-sm);
    color: var(--muted-text);
}

.payment-table th,
.payment-table td {
    padding: var(--space-lg);
    text-align: left;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.payment-table th {
    background-color: var(--primary);
    color: var(--bg-elevated);
    font-weight: 600;
}

.payment-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 600px) {
    .payment-table {
        display: block;
    }
    
    .payment-table thead {
        display: none;
    }
    
    .payment-table tbody,
    .payment-table tr,
    .payment-table td {
        display: block;
    }
    
    .payment-table tr {
        margin-bottom: var(--space-lg);
        background-color: var(--bg-soft);
        border-radius: var(--radius-md);
        padding: var(--space-lg);
    }
    
    .payment-table td {
        border-bottom: none;
        padding: var(--space-sm) 0;
        position: relative;
        padding-left: 50%;
    }
    
    .payment-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: 600;
        color: var(--text);
    }
}

/* App Badges */
.app-badges {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin: var(--space-xl) 0;
    flex-wrap: wrap;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background-color: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
}

.app-badge:hover {
    background-color: var(--bg-elevated);
    border-color: var(--primary);
}

.app-badge__icon {
    width: 24px;
    height: 24px;
}

.app-badge__label {
    font-size: var(--font-sm);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: var(--space-xxl) 0;
    background-color: var(--bg-elevated);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.faq-item__question {
    width: 100%;
    padding: var(--space-xl);
    background: none;
    border: none;
    color: var(--text);
    font-size: var(--font-lg);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    transition: background-color 0.3s ease;
}

.faq-item__question:hover {
    background-color: var(--bg-elevated);
}

.faq-item__icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 200px;
}

.faq-item__answer p {
    padding: 0 var(--space-xl) var(--space-xl);
    margin: 0;
    color: var(--text);
}

/* Footer */
.footer {
    background-color: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.footer__content {
    padding: var(--space-xxl) 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 600px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .footer__content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer__column h3 {
    color: var(--text);
    font-size: var(--font-h6);
    margin-bottom: var(--space-lg);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: var(--space-sm);
}

.footer__links a {
    color: var(--muted-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--primary);
}

.footer__contact {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.footer__contact h3 {
    margin-bottom: var(--space-lg);
}

.footer__contact-items {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--muted-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--primary);
}

.payment-icons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.payment-icon {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

.footer__legal {
    background-color: var(--bg);
    border-top: 1px solid var(--border);
    padding: var(--space-lg) 0;
}

.footer__legal-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
    font-size: var(--font-xs);
    color: var(--muted-text);
}

@media (min-width: 600px) {
    .footer__legal-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
button:focus,
a:focus,
input:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Skip to Content */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary);
    color: var(--bg-elevated);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: 10000;
}

.skip-to-content:focus {
    top: 6px;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Error States */
.error {
    color: var(--danger);
}

/* Success States */
.success {
    color: var(--success);
}
