* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fafafa;
    min-height: 100vh;
    color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    /*max-width: 1400px;*/
    margin: 0 auto;
    /*padding: 0 40px 80px;*/
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 70vh;
    margin: 0 -40px 80px;
    overflow: hidden;
    background: #0a0a0a;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    animation: slowZoom 20s ease-in-out infinite alternate;
    background: url(https://assets.speedpresta.com/images/slider/work.webp);
    background-size: cover;
    background-position: center;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 40px;
    animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-category {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    border: 1px solid white;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-cta:hover {
    background: white;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 3;
    pointer-events: none;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #0a0a0a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #6b6b6b;
    line-height: 1.8;
}

/* Recommended Apps Section */
.recommended-section {
    margin-bottom: 80px;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.recommended-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.recommended-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.recommended-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: #d4af37;
}

.recommended-card:hover::after {
    width: 100%;
}

.recommended-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #0a0a0a;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.recommended-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.recommended-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #0a0a0a;
    margin-bottom: 10px;
}

.recommended-description {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.7;
    color: #6b6b6b;
    margin-bottom: 20px;
}

.recommended-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.recommended-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #d4af37;
    font-weight: 500;
}

.recommended-price {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #0a0a0a;
}

/* Search Page */
.search-page {
    display: none;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-page.active {
    display: block;
}

.search-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
}

.search-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6b6b6b;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.search-back:hover {
    color: #0a0a0a;
    transform: translateX(-5px);
}

.search-back::before {
    content: '←';
    font-size: 18px;
}

.search-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #0a0a0a;
    margin-bottom: 15px;
}

.search-query {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #6b6b6b;
}

.search-query-text {
    color: #0a0a0a;
    font-weight: 400;
    font-style: italic;
}

.search-results-count {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6b6b6b;
    margin-bottom: 40px;
    padding: 15px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.search-results-count span {
    color: #d4af37;
    font-weight: 500;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.search-no-results {
    text-align: center;
    padding: 100px 20px;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-no-results-icon {
    font-size: 80px;
    margin-bottom: 30px;
    opacity: 0.3;
}

.search-no-results-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #0a0a0a;
    margin-bottom: 15px;
}

.search-no-results-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #6b6b6b;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 40px;
}

.search-suggestions {
    margin-top: 50px;
}

.search-suggestions-title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0a0a0a;
    margin-bottom: 20px;
}

.search-suggestions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.search-suggestion-tag {
    padding: 10px 20px;
    background: white;
    border: 1px solid #e8e8e8;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #6b6b6b;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-suggestion-tag:hover {
    border-color: #0a0a0a;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.home-content {
    display: block;
}

.home-content.hidden {
    display: none;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #e8e8e8;
    padding: 0 40px;
    /*margin: 0 -40px 60px;*/
    z-index: 100;
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #0a0a0a;
    text-transform: uppercase;
    cursor: pointer;
    transition: letter-spacing 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    letter-spacing: 8px;
}

.header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0a0a0a;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 5px;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav a:hover {
    color: #d4af37;
}

.header-nav a:hover::after {
    width: 100%;
}

.search-container {
    flex: 1;
    max-width: 450px;
    position: relative;
}

.search-box {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    background: #ffffff;
}

.search-box:focus {
    border-color: #0a0a0a;
    box-shadow: 0 0 0 1px #0a0a0a;
}

.search-box::placeholder {
    color: #6b6b6b;
    font-weight: 300;
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b6b6b;
    font-size: 16px;
    pointer-events: none;
}

/* Categories */
.categories {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
    padding-bottom: 0;
    border-bottom: 1px solid #e8e8e8;
}

.category-btn {
    padding: 20px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #6b6b6b;
    position: relative;
}

.category-btn:hover {
    color: #0a0a0a;
}

.category-btn.active {
    color: #0a0a0a;
    border-bottom-color: #0a0a0a;
    font-weight: 500;
}

/* Apps Grid */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.app-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: #d4af37;
}

.app-image-container {
    width: 100%;
    height: 280px;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.app-card:hover .app-image-container::after {
    opacity: 1;
}

.app-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.05);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-content {
    padding: 25px;
}

.app-verified {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    z-index: 2;
}

.app-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.app-highlight-tag {
    padding: 4px 10px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #6b6b6b;
    text-transform: uppercase;
}

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

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-info {
    flex: 1;
    min-width: 0;
}

.app-category {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6b6b6b;
    margin-bottom: 6px;
}

.app-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    color: #0a0a0a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-developer {
    font-size: 13px;
    font-weight: 300;
    color: #6b6b6b;
    letter-spacing: 0.3px;
    margin-top: 4px;
}

.app-description {
    color: #6b6b6b;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 25px;
    letter-spacing: 0.2px;
}

.app-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
   /* border-top: 1px solid #e8e8e8; */
}

.app-metrics {
    /*display: grid;*/
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.app-metric {
    display: flex;
    flex-direction: column;
}

.app-metric-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6b6b6b;
    margin-bottom: 4px;
}

.app-metric-value {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #0a0a0a;
}

.app-metric-value.highlight {
    color: #d4af37;
}

.app-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e8e8e8;
}

.app-price-info {
    display: flex;
    flex-direction: column;
}

.app-price-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6b6b6b;
    margin-bottom: 4px;
}

.app-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #0a0a0a;
}

.app-monthly-price {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: #6b6b6b;
    margin-top: 2px;
}

.app-stats {
    display: flex;
    gap: 20px;
    font-size: 12px;
    font-weight: 300;
}

.stat {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6b6b6b;
    letter-spacing: 0.3px;
}

.rating {
    color: #d4af37;
    font-weight: 500;
}

.app-seller {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #6b6b6b;
    margin-top: 4px;
}

.install-btn {
    padding: 12px 30px;
    background: #0a0a0a;
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 15px;
    width: 100%;
}

.install-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.view-details-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #0a0a0a;
    color: #0a0a0a;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /*margin-top: 15px;*/
    width: 100%;
}

.view-details-btn:hover {
    background: #0a0a0a;
    color: white;
    transform: translateY(-2px);
}

.try-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.try-btn:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.app-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: linear-gradient(135deg, #0c0c0c 0%, #171717 100%);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.trial-badge::before {
    content: '⚡';
    font-size: 11px;
}

.no-results {
    text-align: center;
    padding: 100px 20px;
    font-family: 'Cormorant Garamond', serif;
    color: #6b6b6b;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content {
    background: white;
    padding: 50px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e8e8e8;
}

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

.close-modal {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b6b6b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #0a0a0a;
    transform: rotate(90deg);
}

.modal-header {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
}

.modal-icon {
    width: 100px;
    height: 100px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    color: #d4af37;
}

.modal-icon svg {
    width: 56px;
    height: 56px;
}

.selected-module-icon svg {
    width: 28px;
    height: 28px;
}

.modal-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: #0a0a0a;
}

.modal-info p {
    font-family: 'Inter', sans-serif;
    color: #6b6b6b;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.modal-stats {
    /*display: grid;*/
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
}

.modal-stat {
    text-align: center;
}

.modal-stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: #d4af37;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.modal-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #6b6b6b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.modal-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /*margin: 30px 0;*/
    padding: 25px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
}

.modal-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #0a0a0a;
}

.modal-highlight-item::before {
    content: '✓';
    color: #d4af37;
    font-weight: 600;
}

.modal-seller-info {
    padding: 25px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    margin: 30px 0;
}

.modal-seller-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6b6b6b;
    margin-bottom: 8px;
}

.modal-seller-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #0a0a0a;
}

.modal-pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.pricing-option {
    padding: 30px;
    background: white;
    border: 2px solid #e8e8e8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.pricing-option:hover {
    border-color: #d4af37;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pricing-option.selected {
    border-color: #0a0a0a;
    background: #fafafa;
}

.pricing-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6b6b6b;
    margin-bottom: 10px;
}

.pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.pricing-description {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: #6b6b6b;
    line-height: 1.6;
}

.modal-trial-section {
    padding: 30px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border: 1px solid #d4af37;
    margin: 30px 0;
}

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

.modal-trial-icon {
    width: 40px;
    height: 40px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.modal-trial-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #0a0a0a;
}

.modal-trial-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: #6b6b6b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-trial-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.modal-trial-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #0a0a0a;
}

.modal-trial-feature::before {
    content: '✓';
    color: #d4af37;
    font-weight: 600;
    font-size: 14px;
}

.modal-trial-cta {
    padding: 15px 40px;
    background: #d4af37;
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.modal-trial-cta:hover {
    background: #c9a332;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.trial-divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    gap: 15px;
}

.trial-divider::before,
.trial-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}

.trial-divider-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6b6b6b;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: #0a0a0a;
    margin: 80px -40px;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.how-it-works-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.how-it-works-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 80px;
}

.how-it-works-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 20px;
}

.how-it-works-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.3;
}

.how-it-works-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.how-it-works-card {
    text-align: center;
    position: relative;
    padding: 40px 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-it-works-card:hover {
    transform: translateY(-10px);
}

.how-it-works-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, #d4af37);
    opacity: 0.3;
}

.how-it-works-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: #d4af37;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.how-it-works-icon {
    font-size: 72px;
    margin-bottom: 30px;
    display: block;
    opacity: 0.9;
}

.how-it-works-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
}

.how-it-works-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.how-it-works-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.how-it-works-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.how-it-works-feature-icon {
    width: 40px;
    height: 40px;
    background: #d4af37;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 18px;
    font-weight: 600;
}

.how-it-works-feature-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 8px;
}

.how-it-works-feature-content p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.how-it-works-cta {
    text-align: center;
    padding-top: 40px;
}

.how-it-works-button {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.how-it-works-button:hover {
    background: #d4af37;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #fafafa;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 20px;
}

.pricing-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #0a0a0a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.pricing-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #6b6b6b;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 50px 40px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #c9a332);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: #d4af37;
}

.pricing-card:hover::before {
    width: 100%;
}

.pricing-card.featured {
    border-color: #d4af37;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.pricing-card.featured::before {
    width: 100%;
}

.pricing-badge {
    display: inline-block;
    padding: 6px 15px;
    background: #000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.pricing-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #0a0a0a;
    margin-bottom: 15px;
}

.pricing-card-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #6b6b6b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.pricing-amount {
    margin-bottom: 10px;
}

.pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #0a0a0a;
}

.pricing-period {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #6b6b6b;
    margin-left: 5px;
}

.pricing-capacity {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #d4af37;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: #0a0a0a;
    line-height: 1.6;
}

.pricing-feature::before {
    content: '✓';
    color: #d4af37;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    padding: 18px 40px;
    background: #0a0a0a;
    border: 1px solid #0a0a0a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-cta:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pricing-cta.secondary {
    background: transparent;
    color: #0a0a0a;
}

.pricing-cta.secondary:hover {
    background: #0a0a0a;
    color: #ffffff;
}

.pricing-note {
    text-align: center;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e8e8e8;
}

.pricing-note-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #6b6b6b;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 25px;
}

.pricing-contact {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-contact:hover {
    background: #d4af37;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Module Selection Cart */
.selection-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 400px;
    background: #ffffff;
    border: 2px solid #d4af37;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(calc(100% + 50px));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.selection-cart.active {
    transform: translateY(0);
}

.selection-cart-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.selection-cart-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}

.selection-cart-count {
    background: #d4af37;
    color: #0a0a0a;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.selection-cart-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

.selection-cart.minimized .selection-cart-toggle {
    transform: rotate(180deg);
}

.selection-cart-body {
    max-height: 400px;
    overflow-y: auto;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.selection-cart.minimized .selection-cart-body {
    max-height: 0;
    overflow: hidden;
}

.selection-cart-empty {
    padding: 40px 25px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6b6b6b;
}

.selected-module {
    padding: 20px 25px;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background 0.3s;
}

.selected-module:hover {
    background: #fafafa;
}

.selected-module-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.selected-module-info {
    flex: 1;
    min-width: 0;
}

.selected-module-name {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #0a0a0a;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.selected-module-category {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #6b6b6b;
}

.selected-module-remove {
    width: 30px;
    height: 30px;
    background: none;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    color: #6b6b6b;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.selected-module-remove:hover {
    background: #ff4444;
    border-color: #ff4444;
    color: white;
}

.selection-cart-footer {
    padding: 25px;
    background: #fafafa;
    border-top: 2px solid #e8e8e8;
}

.selection-summary {
    margin-bottom: 20px;
}

.selection-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.selection-summary-label {
    color: #6b6b6b;
    font-weight: 300;
}

.selection-summary-value {
    color: #0a0a0a;
    font-weight: 500;
}

.selection-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #e8e8e8;
}

.selection-total-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #0a0a0a;
}

.selection-total-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: #d4af37;
}

.selection-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.selection-btn {
    padding: 15px 20px;
    border: 1px solid #0a0a0a;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.selection-btn.try {
    background: transparent;
    color: #d4af37;
    border-color: #d4af37;
}

.selection-btn.try:hover {
    background: #d4af37;
    color: white;
}

.selection-btn.buy {
    background: #0a0a0a;
    color: white;
}

.selection-btn.buy:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.selection-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.selection-btn:disabled:hover {
    transform: none;
}

/* Add to Cart Button on Cards */
.add-to-selection {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e8e8e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.add-to-selection:hover {
    background: white;
    border-color: #d4af37;
    transform: scale(1.1);
}

.add-to-selection.selected {
    background: #d4af37;
    border-color: #d4af37;
    color: white;
}

.add-to-selection.selected::before {
    content: '✓';
    font-weight: 600;
}

.add-to-selection:not(.selected)::before {
    content: '+';
    font-size: 20px;
    font-weight: 500;
    color: #0a0a0a;
}

/* Floating Action Button */
.fab-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a332 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.fab-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.fab-cart-icon {
    font-size: 28px;
    color: white;
}

.fab-cart-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: #0a0a0a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
}

.fab-cart.has-items {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.modal-description {
    margin: 40px 0;
    line-height: 1.8;
    color: #6b6b6b;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.modal-actions {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-top: 40px;
}

.modal-btn {
    padding: 18px 40px;
    border: 1px solid #0a0a0a;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-btn.primary {
    background: #0a0a0a;
    color: white;
}

.modal-btn.primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.modal-btn.secondary {
    background: white;
    color: #0a0a0a;
}

.modal-btn.secondary:hover {
    background: #0a0a0a;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px 60px;
    }

    header {
        padding: 0 20px;
       /* margin: 0 -20px 40px;*/
    }

    .header-content {
        height: 70px;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding: 20px;
        gap: 15px;
    }

    .logo {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .search-container {
        max-width: 100%;
        width: 100%;
    }

    .header-nav {
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .header-nav a {
        font-size: 11px;
    }

    .hero-slider {
        height: 60vh;
        margin: 0 -20px 60px;
    }

    .hero-background {
        font-size: 120px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-cta {
        padding: 15px 35px;
    }

    .slider-arrows {
        padding: 0 20px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .recommended-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .how-it-works-section {
        padding: 60px 0;
        margin: 60px -20px;
    }

    .how-it-works-container {
        padding: 0 20px;
    }

    .how-it-works-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .how-it-works-card::before {
        display: none;
    }

    .how-it-works-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-section {
        padding: 60px 0;
    }

    .pricing-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card {
        padding: 40px 25px;
    }

    .categories {
        overflow-x: auto;
        margin-bottom: 40px;
        -webkit-overflow-scrolling: touch;
    }

    .categories::-webkit-scrollbar {
        display: none;
    }

    .apps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .app-image-container {
        height: 240px;
    }

    .search-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .search-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .app-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .modal-pricing {
        grid-template-columns: 1fr;
    }

    .modal-trial-features {
        grid-template-columns: 1fr;
    }

    .app-actions {
        grid-template-columns: 1fr;
    }

    .search-no-results-icon {
        font-size: 60px;
    }

    .search-no-results-title {
        font-size: 28px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .close-modal {
        top: 20px;
        right: 20px;
    }

    .modal-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .modal-info h2 {
        font-size: 28px;
    }

    .modal-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }

    .modal-actions {
        grid-template-columns: 1fr;
    }

    .selection-cart {
        width: calc(100vw - 40px);
        right: 20px;
        bottom: 20px;
    }

    .fab-cart {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .fab-cart-icon {
        font-size: 24px;
    }

    .selection-actions {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 60px 0 30px;
        margin-top: 60px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px 70px;
    }

    .hero-slider {
        margin: 0 -30px 70px;
    }

    .hero-title {
        font-size: 52px;
    }

    .how-it-works-section {
        margin: 70px -30px;
    }

    .how-it-works-container {
        padding: 0 30px;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .how-it-works-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .recommended-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .search-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Footer */
footer {
    background: #0a0a0a;
    color: white;
    padding: 80px 0 40px;
    /*margin-top: 100px;*/
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-link:hover {
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.footer-links a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #d4af37;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgb(0 0 0 / 30%);
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-current:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-1px);
}

.language-switcher.open .lang-current {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    color: #d4af37;
}

.lang-current svg {
    width: 16px;
    height: 16px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.language-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #0a0a0a;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}

.lang-option:first-child {
    border-radius: 4px 4px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 4px 4px;
}

.lang-option:hover {
    background: #fafafa;
}

.lang-option.active {
    background: #f5f5f5;
    color: #d4af37;
    font-weight: 500;
}

.lang-option .lang-flag {
    font-size: 18px;
}

.lang-option .lang-name {
    flex: 1;
}

.lang-option .lang-check {
    color: #d4af37;
    opacity: 0;
}

.lang-option.active .lang-check {
    opacity: 1;
}

/* Explore More Button */
.explore-more-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 40px 0 20px;
}

.explore-more-btn {
    padding: 18px 48px;
    background: transparent;
    border: 2px solid #000;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.explore-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #d4af37;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.explore-more-btn:hover::before {
    left: 0;
}

.explore-more-btn:hover {
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.explore-more-btn svg {
    margin-left: 8px;
    transition: transform 0.3s;
}

.explore-more-btn:hover svg {
    transform: translateX(4px);
}