* {
    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;
}

a{
    text-decoration: none;

}

.logo a {
    color:rgb(0 0 0)
}

.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;
    margin-bottom: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Add horizontal spacing between cards */
.col-md-4 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Row styling for module grid */
.row {
    margin-left: -15px;
    margin-right: -15px;
}

.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 rgb(0 0 0 / 30%);
}

.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 rgb(0 0 0 / 30%);
}

/* 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 rgb(0 0 0 / 30%);
}

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

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

/* Enhanced Search Page Controls */
.search-controls {
    padding: 0 40px 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.search-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
}

.search-filter-btn {
    padding: 12px 20px;
    background: white;
    border: 1px solid #e5e5e5;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-filter-btn i {
    font-size: 16px;
}

.search-filter-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
    background: #fffbf5;
}

.search-filter-btn.active {
    background: #d4af37;
    border-color: #d4af37;
    color: white;
}

.search-sort {
    min-width: 200px;
}

.search-sort-select {
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: 1px solid #e5e5e5;
    color: #0a0a0a;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
}

.search-sort-select:hover {
    border-color: #d4af37;
}

.search-sort-select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-back {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 1px solid #e5e5e5;
    color: #0a0a0a;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
}

.search-back:hover {
    border-color: #d4af37;
    background: #fffbf5;
    color: #d4af37;
}

.search-back i {
    font-size: 16px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 300;
    color: #d4af37;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: #0a0a0a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 2px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #0a0a0a;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0a0a0a;
    background: #fafafa;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    padding: 18px 40px;
    background: #d4af37;
    border: none;
    color: #0a0a0a;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-submit-btn:hover {
    background: #c09b2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgb(0 0 0 / 30%);
}

.contact-submit-btn i {
    font-size: 18px;
}

.form-success {
    padding: 20px;
    background: #d4f8d4;
    border: 1px solid #7bc67b;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #2d5f2d;
}

.form-success i {
    font-size: 24px;
    color: #7bc67b;
}

.form-success p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background: white;
    padding: 35px;
    border-radius: 2px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-info-icon i {
    font-size: 24px;
    color: white;
}

.contact-info-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 12px;
}

.contact-info-card a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: #c09b2e;
}

/* Responsive Design for Contact Section */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 35px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 42px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .search-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-filters {
        width: 100%;
    }
    
    .search-sort {
        width: 100%;
        min-width: auto;
    }
}

/* Inline Search Results */
.search-results-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.inline-search-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 1px solid #e5e5e5;
    color: #0a0a0a;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.inline-search-back:hover {
    border-color: #d4af37;
    background: #fffbf5;
    color: #d4af37;
}

.inline-search-back i {
    font-size: 16px;
}

.search-results-info {
    margin-top: 15px;
}

.search-results-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: #0a0a0a;
    margin-bottom: 10px;
}

.search-results-title span {
    color: #d4af37;
    font-style: italic;
}

.search-results-count-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
}

.inline-search-controls {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.inline-search-controls .search-filters {
    flex: 1;
}

.inline-search-controls .search-sort {
    min-width: 200px;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-consent-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.cookie-consent-icon {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-consent-icon i {
    font-size: 28px;
    color: white;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.cookie-consent-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.cookie-settings {
    background: transparent;
    border: 2px solid #e5e5e5;
    color: #0a0a0a;
}

.cookie-settings:hover {
    border-color: #d4af37;
    background: #fffbf5;
    color: #d4af37;
}

.cookie-accept {
    background: #d4af37;
    color: white;
}

.cookie-accept:hover {
    background: #c09b2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(0 0 0 / 30%);
}

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

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 8px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.3s ease-out;
}

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

.cookie-modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: #0a0a0a;
    margin: 0;
}

.cookie-modal-close {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-close:hover {
    background: #f5f5f5;
    color: #0a0a0a;
}

.cookie-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.cookie-modal-intro {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.cookie-category {
    padding: 20px;
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.cookie-category:hover {
    background: #f5f5f5;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.cookie-category-info {
    display: flex;
    gap: 15px;
    flex: 1;
}

.cookie-category-info i {
    font-size: 24px;
    color: #d4af37;
    margin-top: 2px;
}

.cookie-category-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0a0a0a;
    margin: 0 0 4px 0;
}

.cookie-category-info p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #999;
    margin: 0;
}

.cookie-category-description {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    padding-left: 39px;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #d4af37;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-reject {
    background: transparent;
    border: 2px solid #e5e5e5;
    color: #666;
}

.cookie-reject:hover {
    border-color: #999;
    color: #0a0a0a;
}

.cookie-save {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}

.cookie-save:hover {
    background: #d4af37;
    color: white;
}

.cookie-accept-all {
    background: #d4af37;
    color: white;
}

.cookie-accept-all:hover {
    background: #c09b2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgb(0 0 0 / 30%);
}

/* Responsive Cookie Banner */
@media (max-width: 968px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer .cookie-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Quote Request Modal */
.quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.quote-modal.show {
    display: flex;
}

.quote-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.quote-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

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

.quote-modal-header {
    padding: 50px 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-bottom: 1px solid #e5e5e5;
}

.quote-modal-icon {
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 30%);
}

.quote-modal-icon i {
    font-size: 36px;
    color: white;
}

.quote-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: #0a0a0a;
    margin-bottom: 10px;
}

.quote-modal-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.quote-modal-subtitle span {
    color: #d4af37;
    font-weight: 600;
}

.quote-form {
    padding: 40px;
}

.quote-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.quote-form-group {
    margin-bottom: 20px;
}

.quote-form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.quote-form-group input,
.quote-form-group select,
.quote-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0a0a0a;
    background: #fafafa;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.3s;
}

.quote-form-group input:focus,
.quote-form-group select:focus,
.quote-form-group textarea:focus {
    outline: none;
    background: white;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.quote-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.quote-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.quote-checkbox input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    min-width: 18px;
}

.quote-submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: #d4af37;
    border: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.quote-submit-btn:hover {
    background: #c09b2e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.quote-submit-btn i {
    font-size: 20px;
}

.quote-form-note {
    margin-top: 20px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quote-form-note i {
    font-size: 16px;
    color: #d4af37;
}

/* Quote Success Message */
.quote-success {
    padding: 60px 40px;
    text-align: center;
}

.quote-success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #7bc67b 0%, #5fb85f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

.quote-success-icon i {
    font-size: 48px;
    color: white;
}

.quote-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: #0a0a0a;
    margin-bottom: 15px;
}

.quote-success p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.quote-success p span {
    color: #d4af37;
    font-weight: 600;
}

.quote-success-details {
    background: #fafafa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.quote-success-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.quote-success-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0a0a0a;
}

.quote-success-row i {
    font-size: 20px;
    color: #d4af37;
    min-width: 20px;
}

.quote-close-btn {
    padding: 14px 40px;
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
}

.quote-close-btn:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Quote Modal */
@media (max-width: 768px) {
    .quote-modal-header {
        padding: 40px 25px 20px;
    }
    
    .quote-modal-title {
        font-size: 28px;
    }
    
    .quote-modal-icon {
        width: 60px;
        height: 60px;
    }
    
    .quote-modal-icon i {
        font-size: 28px;
    }
    
    .quote-form {
        padding: 25px;
    }
    
    .quote-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .quote-success {
        padding: 40px 25px;
    }
    
    .quote-success h3 {
        font-size: 24px;
    }
}

/* Demo Request Modal */
.demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.demo-modal.show {
    display: flex;
}

.demo-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

.demo-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

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

.demo-modal-header {
    padding: 50px 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-bottom: 1px solid #e5e5e5;
}

.demo-modal-icon {
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 30%);
}

.demo-modal-icon i {
    font-size: 36px;
    color: white;
}

.demo-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: #0a0a0a;
    margin-bottom: 10px;
}

.demo-modal-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.demo-modal-subtitle span {
    color: #d4af37;
    font-weight: 600;
}

.demo-form {
    padding: 40px;
}

.demo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.demo-form-group {
    margin-bottom: 20px;
}

.demo-form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.demo-form-group input,
.demo-form-group select,
.demo-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0a0a0a;
    background: #fafafa;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.3s;
}

.demo-form-group input:focus,
.demo-form-group select:focus,
.demo-form-group textarea:focus {
    outline: none;
    background: white;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.demo-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.demo-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.demo-checkbox input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    min-width: 18px;
}

.demo-submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: #d4af37;
    border: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.demo-submit-btn:hover {
    background: #c09b2e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.demo-submit-btn i {
    font-size: 20px;
}

.demo-form-note {
    margin-top: 20px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-form-note i {
    font-size: 16px;
    color: #d4af37;
}

/* Demo Success Message */
.demo-success {
    padding: 60px 40px;
    text-align: center;
}

.demo-success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #7bc67b 0%, #5fb85f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.demo-success-icon i {
    font-size: 48px;
    color: white;
}

.demo-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: #0a0a0a;
    margin-bottom: 15px;
}

.demo-success p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.demo-success p span {
    color: #d4af37;
    font-weight: 600;
}

.demo-success-details {
    background: #fafafa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.demo-success-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.demo-success-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0a0a0a;
}

.demo-success-row i {
    font-size: 20px;
    color: #d4af37;
    min-width: 20px;
}

.demo-close-btn {
    padding: 14px 40px;
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
}

.demo-close-btn:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
}

/* Request Demo Button Styling */
.request-demo-btn {
    padding: 12px 24px;
    background: #000;
    border: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
}

.request-demo-btn:hover {
    background: linear-gradient(135deg, #c09b2e 0%, #a88625 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Spinner animation for loading states */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ph-spinner {
    animation: spin 1s linear infinite;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* Responsive Demo Modal */
@media (max-width: 768px) {
    .demo-modal-header {
        padding: 40px 25px 20px;
    }
    
    .demo-modal-title {
        font-size: 28px;
    }
    
    .demo-modal-icon {
        width: 60px;
        height: 60px;
    }
    
    .demo-modal-icon i {
        font-size: 28px;
    }
    
    .demo-form {
        padding: 25px;
    }
    
    .demo-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .demo-success {
        padding: 40px 25px;
    }
    
    .demo-success h3 {
        font-size: 24px;
    }
}
/* Selected Modules Summary - demo style */
.demo-modal .selected-modules-summary {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.demo-modal .selected-modules-summary h3 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.demo-modal .summary-module-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.demo-modal .summary-module-item:last-child {
    border-bottom: none;
}

.demo-modal .summary-module-item .module-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.demo-modal .summary-module-item .module-price {
    font-size: 14px;
    color: #d4af37;
    font-weight: 600;
}

.demo-modal .summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #d4af37;
}

.demo-modal .summary-total span {
    font-size: 15px;
    color: #666;
}

.demo-modal .summary-total strong {
    font-size: 20px;
    color: #d4af37;
    font-weight: 700;
}

.demo-modal .pricing-note {
    margin-top: 10px;
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* Demo checkbox links styling */
.demo-checkbox a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.demo-checkbox a:hover {
    text-decoration: underline;
}

/* Button loading spinner with phosphor icon */
.demo-submit-btn .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.demo-submit-btn .spinner-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Demo success details styling */
.demo-success-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    text-align: left;
}

.demo-success-row i {
    font-size: 18px;
    color: #d4af37;
    min-width: 20px;
    margin-top: 2px;
}

.demo-success-row span {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.demo-success-row strong {
    color: #333;
    font-weight: 600;
}

/* ==========================================
   SOLUTION CHOICE SECTION
   ========================================== */

.solution-choice {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.solution-choice-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.solution-choice-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.solution-choice-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*gap: 40px;*/
    max-width: 100%;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
}

.solution-card[data-solution="platform"] {
    border-top: 4px solid #d4af37;
}

.solution-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #000;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.solution-card-badge i {
    font-size: 16px;
}

.solution-card-icon {
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.solution-card-icon i {
    font-size: 40px;
    color: white;
}

.solution-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.solution-card-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.solution-features {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.solution-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #444;
}

.solution-feature i {
    font-size: 20px;
    color: #d4af37;
    flex-shrink: 0;
}

.solution-pricing {
    background: #f8f9fa;
    /*border-radius: 12px;*/
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.solution-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price-from {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
}

.price-period {
    font-size: 15px;
    color: #666;
}

.solution-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);
}

.solution-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.solution-cta.secondary {
    background: white;
    border: 2px solid #d4af37;
    color: #d4af37;
}

.solution-cta.secondary:hover {
    background: #d4af37;
    color: white;
}

.solution-cta i {
    font-size: 20px;
}

/* ==========================================
   CUSTOM DEVELOPMENT PRICING SECTION
   ========================================== */

.custom-dev-pricing {
    padding: 100px 0;
    background: white;
}

.custom-dev-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.custom-dev-icon {
    width: 100px;
    height: 100px;
    background: #000;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.custom-dev-icon i {
    font-size: 50px;
    color: white;
}

.custom-dev-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.custom-dev-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.custom-dev-pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.custom-dev-card {
    background: white;
    border: 2px solid #e9ecef;
    /*border-radius: 20px;*/
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s;
}

.custom-dev-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #d4af37;
}

.custom-dev-card.featured {
    border-color: #d4af37;
    border-width: 3px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.custom-dev-card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.custom-dev-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.custom-dev-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.custom-dev-card-subtitle {
    font-size: 14px;
    color: #999;
}

.custom-dev-card-price {
    text-align: center;
    padding: 25px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 30px;
}

.custom-dev-price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #d4af37;
    display: block;
    margin-bottom: 5px;
}

.custom-dev-price-period {
    font-size: 14px;
    color: #666;
}

.custom-dev-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.custom-dev-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.custom-dev-feature i {
    font-size: 18px;
    color: #d4af37;
    margin-top: 2px;
    flex-shrink: 0;
}

.custom-dev-feature strong {
    color: #1a1a1a;
}

.custom-dev-cta {
    width: 100%;
    padding: 15px 25px;
    background: white;
    border: 2px solid #d4af37;
    border-radius: 10px;
    color: #d4af37;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.custom-dev-cta:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(0 0 0 / 30%);
}

.custom-dev-cta.primary {
    background: #000;
    color: white;
    border: none;
}

.custom-dev-cta.primary:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Technologies Section */
.custom-dev-tech {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 60px;
}

.custom-dev-tech-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 15px;
}

.custom-dev-tech-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

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

.tech-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
    transition: all 0.3s;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.tech-item i {
    font-size: 28px;
    color: #d4af37;
}

/* Process Section */
.custom-dev-process {
    margin-bottom: 80px;
}

.custom-dev-process-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.custom-dev-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
}

.process-step:last-child::before {
    display: none;
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.process-step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.process-step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us Section */
.custom-dev-why {
    background: #000;
    /* border-radius: 20px; */
    padding: 60px 50px;
    color: white;
}

.custom-dev-why-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.custom-dev-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-item {
    text-align: center;
}

.why-item i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.why-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.why-item p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .solution-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .custom-dev-pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .custom-dev-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .custom-dev-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .custom-dev-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solution-choice {
        padding: 60px 0;
    }
    
    .solution-choice-title {
        font-size: 32px;
    }
    
    .solution-card {
        padding: 40px 30px;
    }
    
    .custom-dev-pricing {
        padding: 60px 0;
    }
    
    .custom-dev-title {
        font-size: 36px;
    }
    
    .custom-dev-tech-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-dev-process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step::before {
        display: none;
    }
    
    .custom-dev-why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .solution-choice-title {
        font-size: 28px;
    }
    
    .solution-card-title {
        font-size: 24px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .custom-dev-title {
        font-size: 28px;
    }
    
    .custom-dev-card {
        padding: 30px 20px;
    }
}

/* ==========================================
   ELEGANT TYPOGRAPHY FOR NEW SECTIONS
   ========================================== */

/* Solution Choice Section - Titles in Cormorant Garamond */
.solution-choice-title {
    font-family: 'Cormorant Garamond', serif;
}

.solution-choice-subtitle {
    font-family: 'Inter', sans-serif;
}

.solution-card-title {
    font-family: 'Cormorant Garamond', serif;
}

.solution-card-description {
    font-family: 'Inter', sans-serif;
}

.solution-feature span {
    font-family: 'Inter', sans-serif;
}

.solution-cta {
    font-family: 'Inter', sans-serif;
}

/* Custom Development Section - Titles in Cormorant Garamond */
.custom-dev-title {
    font-family: 'Cormorant Garamond', serif;
}

.custom-dev-subtitle {
    font-family: 'Inter', sans-serif;
}

.custom-dev-card-title {
    font-family: 'Cormorant Garamond', serif;
}

.custom-dev-card-subtitle {
    font-family: 'Inter', sans-serif;
}

.custom-dev-feature {
    font-family: 'Inter', sans-serif;
}

.custom-dev-cta {
    font-family: 'Inter', sans-serif;
}

/* Technology Section */
.custom-dev-tech-title {
    font-family: 'Cormorant Garamond', serif;
}

.custom-dev-tech-subtitle {
    font-family: 'Inter', sans-serif;
}

.tech-item {
    font-family: 'Inter', sans-serif;
}

/* Process Section */
.custom-dev-process-title {
    font-family: 'Cormorant Garamond', serif;
}

.process-step-content h4 {
    font-family: 'Cormorant Garamond', serif;
}

.process-step-content p {
    font-family: 'Inter', sans-serif;
}

/* Why Choose Us Section */
.custom-dev-why-title {
    font-family: 'Cormorant Garamond', serif;
}

.why-item h4 {
    font-family: 'Cormorant Garamond', serif;
}

.why-item p {
    font-family: 'Inter', sans-serif;
}

/* Pricing Cards */
.custom-dev-price-amount {
    font-family: 'Cormorant Garamond', serif;
}

.custom-dev-price-period {
    font-family: 'Inter', sans-serif;
}

.solution-price .price-amount {
    font-family: 'Cormorant Garamond', serif;
}

.solution-price .price-from,
.solution-price .price-period {
    font-family: 'Inter', sans-serif;
}

/* ==========================================
   ELEGANT SOLUTION CHOICE SECTION
   ========================================== */

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(192, 155, 46, 0.05) 100%);
    border: 1px solid rgb(0 0 0 / 30%);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: badgeGlow 3s ease-in-out infinite;
}

.section-badge i {
    font-size: 18px;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    }
}

/* Enhanced Solution Cards */
.solution-card {
    position: relative;
    overflow: hidden;
}

.solution-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.solution-card:hover .solution-card-glow {
    opacity: 1;
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Platform Card - Golden Accent */
.platform-card {
    border: 2px solid rgb(0 0 0 / 30%);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(252, 249, 240, 1) 100%);
}

.platform-card:hover {
    border-color: #d4af37;
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.1) inset;
}

/* Custom Card - Elegant Accent */
.custom-card {
    border: 2px solid rgba(26, 26, 26, 0.1);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 249, 250, 1) 100%);
}

.custom-card:hover {
    border-color: rgba(26, 26, 26, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(26, 26, 26, 0.05) inset;
}

/* Enhanced Card Badge */
.solution-card-badge {
    background: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Enhanced Card Icon */
.solution-card-icon {
    background: #000;
    box-shadow: 0 8px 25px rgb(0 0 0 / 30%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover .solution-card-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Animated Check Icons */
.solution-feature i {
    transition: all 0.3s ease;
}

.solution-card:hover .solution-feature i {
    transform: scale(1.1);
    color: #b89830;
}

/* Enhanced Pricing Display */
.solution-pricing {
    background: rgba(10, 10, 10, 0.05);
    /*border: 1px solid rgba(212, 175, 55, 0.2);*/
    position: relative;
    overflow: hidden;
}

.solution-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.6s ease;
}

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

/* Enhanced CTA Buttons */
.solution-cta.primary {
    background: #000;
    box-shadow: 0 4px 15px rgb(0 0 0 / 30%);
    position: relative;
    overflow: hidden;
}

.solution-cta.primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.solution-cta.primary:hover::before {
    width: 300px;
    height: 300px;
}

.solution-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.solution-cta.secondary {
    background: white;
    border: 2px solid #d4af37;
    color: #d4af37;
    position: relative;
    overflow: hidden;
}

.solution-cta.secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    transition: left 0.4s ease;
    z-index: 0;
}

.solution-cta.secondary span,
.solution-cta.secondary i {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.solution-cta.secondary:hover::after {
    left: 0;
}

.solution-cta.secondary:hover {
    color: white;
    border-color: #d4af37;
}

.solution-cta.secondary:hover span,
.solution-cta.secondary:hover i {
    color: white;
}

/* Elegant Typography Enhancement */
.solution-choice-title {
    background: linear-gradient(135deg, #1a1a1a 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.solution-choice-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Card Title Enhancement */
.solution-card-title {
    position: relative;
    display: inline-block;
}

.solution-card:hover .solution-card-title {
    color: #d4af37;
    transition: color 0.4s ease;
}

/* Feature List Animation */
.solution-features {
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.solution-card:hover .solution-features {
    opacity: 1;
}

/* Price Amount Special Effect */
.price-amount {
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.solution-card:hover .price-amount {
    text-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

/* Responsive Elegance */
@media (max-width: 1024px) {
    .section-badge {
        font-size: 13px;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .solution-choice-title::after {
        width: 60px;
        height: 2px;
    }
    
    .solution-card-glow {
        display: none;
    }
}

/* ==========================================
   NEWS & INNOVATION SECTION
   ========================================== */

.news-innovation {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.news-innovation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.news-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.news-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.news-grid {
    display: grid;
    gap: 80px;
}

/* News Category */
.news-category {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.news-category:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.news-category-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.news-category-icon {
    width: 70px;
    height: 70px;
    background: #000;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgb(0 0 0 / 30%);
}

.news-category-icon.analyst {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.news-category-icon i {
    font-size: 35px;
    color: white;
}

.news-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.news-category-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Blog Cards */
.news-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.news-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #000;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.news-card-badge.success {
    background: linear-gradient(135deg, #50C878 0%, #3DA863 100%);
    box-shadow: 0 4px 12px rgba(80, 200, 120, 0.4);
}

.news-card-badge i {
    font-size: 14px;
}

.news-card-content {
    padding: 25px;
}

.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 13px;
    color: #999;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-card-reading {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-card-reading i {
    font-size: 14px;
}

.news-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover .news-card-title {
    color: #d4af37;
}

.news-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-card-link:hover {
    gap: 12px;
    color: #b89830;
}

.news-card-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-link i {
    transform: translateX(3px);
}

/* Analyst Reports */
.analyst-reports {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.analyst-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.analyst-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #4A90E2;
    background: white;
}

.analyst-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(74, 144, 226, 0.3);
}

.analyst-card-icon i {
    font-size: 28px;
    color: white;
}

.analyst-card-content {
    flex: 1;
}

.analyst-card-source {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.analyst-card-source img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
}

.analyst-card-source span {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.analyst-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.analyst-card:hover .analyst-card-title {
    color: #4A90E2;
}

.analyst-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.analyst-card-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #999;
}

.analyst-card-date,
.analyst-card-pages {
    display: flex;
    align-items: center;
    gap: 6px;
}

.analyst-card-date i,
.analyst-card-pages i {
    font-size: 14px;
}

.analyst-card-download {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.analyst-card-download:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.5);
}

/* View All Button */
.news-category-footer {
    text-align: center;
    padding-top: 20px;
}

.news-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: #000;
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(0 0 0 / 30%);
}

.news-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.news-view-all i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.news-view-all:hover i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .news-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-innovation {
        padding: 60px 0;
    }
    
    .news-header {
        margin-bottom: 50px;
    }
    
    .news-title {
        font-size: 36px;
    }
    
    .news-category {
        padding: 30px 20px;
    }
    
    .news-category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .news-cards {
        grid-template-columns: 1fr;
    }
    
    .analyst-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .analyst-card-icon {
        margin: 0 auto;
    }
    
    .analyst-card-source {
        justify-content: center;
    }
    
    .analyst-card-meta {
        justify-content: center;
    }
    
    .analyst-card-download {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .news-title {
        font-size: 28px;
    }
    
    .news-category-title {
        font-size: 24px;
    }
    
    .news-category {
        padding: 25px 15px;
    }
}

/* ==========================================
   INDUSTRIES SECTION
   ========================================== */

.industries-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.industries-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.industries-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.industries-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.industries-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Industry Cards */
.industry-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--industry-color), var(--industry-color-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--industry-color-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.industry-card:hover .industry-card-glow {
    opacity: 0.3;
    animation: rotateGlow 8s linear infinite;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--industry-color);
}

/* Industry Icons with Colors */
.industry-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    background:#000;
    box-shadow: 0 8px 25px var(--industry-shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover .industry-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px var(--industry-shadow);
}

.industry-card-icon i {
    font-size: 40px;
    color: white;
}

/* Retail - Orange */
.industry-card-icon.retail {
    --industry-color: #FF9500;
    --industry-color-dark: #FF6B00;
    --industry-shadow: rgba(255, 149, 0, 0.4);
    --industry-color-glow: rgba(255, 149, 0, 0.2);
}

/* Manufacturing - Blue Steel */
.industry-card-icon.manufacturing {
    --industry-color: #5C7CFA;
    --industry-color-dark: #4263EB;
    --industry-shadow: rgba(92, 124, 250, 0.4);
    --industry-color-glow: rgba(92, 124, 250, 0.2);
}

/* Healthcare - Red/Pink */
.industry-card-icon.healthcare {
    --industry-color: #FA5252;
    --industry-color-dark: #E03131;
    --industry-shadow: rgba(250, 82, 82, 0.4);
    --industry-color-glow: rgba(250, 82, 82, 0.2);
}

/* Technology - Purple */
.industry-card-icon.technology {
    --industry-color: #9775FA;
    --industry-color-dark: #7950F2;
    --industry-shadow: rgba(151, 117, 250, 0.4);
    --industry-color-glow: rgba(151, 117, 250, 0.2);
}

/* Finance - Green */
.industry-card-icon.finance {
    --industry-color: #51CF66;
    --industry-color-dark: #37B24D;
    --industry-shadow: rgba(81, 207, 102, 0.4);
    --industry-color-glow: rgba(81, 207, 102, 0.2);
}

/* Education - Teal */
.industry-card-icon.education {
    --industry-color: #20C997;
    --industry-color-dark: #12B886;
    --industry-shadow: rgba(32, 201, 151, 0.4);
    --industry-color-glow: rgba(32, 201, 151, 0.2);
}

/* Real Estate - Brown/Copper */
.industry-card-icon.realestate {
    --industry-color: #D4AF37;
    --industry-color-dark: #C09B2E;
    --industry-shadow: rgba(212, 175, 55, 0.4);
    --industry-color-glow: rgba(212, 175, 55, 0.2);
}

/* Professional Services - Navy */
.industry-card-icon.professional {
    --industry-color: #4A90E2;
    --industry-color-dark: #357ABD;
    --industry-shadow: rgba(74, 144, 226, 0.4);
    --industry-color-glow: rgba(74, 144, 226, 0.2);
}

/* Apply colors to cards */
.industry-card:nth-child(1) { --industry-color: #FF9500; --industry-color-dark: #FF6B00; --industry-shadow: rgba(255, 149, 0, 0.2); --industry-color-glow: rgba(255, 149, 0, 0.15); }
.industry-card:nth-child(2) { --industry-color: #5C7CFA; --industry-color-dark: #4263EB; --industry-shadow: rgba(92, 124, 250, 0.2); --industry-color-glow: rgba(92, 124, 250, 0.15); }
.industry-card:nth-child(3) { --industry-color: #FA5252; --industry-color-dark: #E03131; --industry-shadow: rgba(250, 82, 82, 0.2); --industry-color-glow: rgba(250, 82, 82, 0.15); }
.industry-card:nth-child(4) { --industry-color: #9775FA; --industry-color-dark: #7950F2; --industry-shadow: rgba(151, 117, 250, 0.2); --industry-color-glow: rgba(151, 117, 250, 0.15); }
.industry-card:nth-child(5) { --industry-color: #51CF66; --industry-color-dark: #37B24D; --industry-shadow: rgba(81, 207, 102, 0.2); --industry-color-glow: rgba(81, 207, 102, 0.15); }
.industry-card:nth-child(6) { --industry-color: #20C997; --industry-color-dark: #12B886; --industry-shadow: rgba(32, 201, 151, 0.2); --industry-color-glow: rgba(32, 201, 151, 0.15); }
.industry-card:nth-child(7) { --industry-color: #D4AF37; --industry-color-dark: #C09B2E; --industry-shadow: rgba(212, 175, 55, 0.2); --industry-color-glow: rgba(212, 175, 55, 0.15); }
.industry-card:nth-child(8) { --industry-color: #4A90E2; --industry-color-dark: #357ABD; --industry-shadow: rgba(74, 144, 226, 0.2); --industry-color-glow: rgba(74, 144, 226, 0.15); }

.industry-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
    transition: color 0.3s ease;
}

.industry-card:hover .industry-card-title {
    color: var(--industry-color);
}

.industry-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 20px;
}

.industry-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.industry-feature {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    color: #666;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-feature {
    background: var(--industry-color);
    color: white;
    transform: translateY(-2px);
}

/* Industries Footer */
.industries-footer {
    text-align: center;
    padding: 50px;
    background: rgba(10, 10, 10, 0.05);
    /* border-radius: 20px; */
    border: 1px solid rgb(194 158 47);
    position: relative;
    z-index: 1;
}

.industries-footer-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.industries-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: #000;
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(0 0 0 / 30%);
}

.industries-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.industries-cta i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.industries-cta:hover i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-section {
        padding: 60px 0;
    }
    
    .industries-header {
        margin-bottom: 50px;
    }
    
    .industries-title {
        font-size: 36px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .industry-card {
        padding: 35px 25px;
    }
    
    .industries-footer {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .industries-title {
        font-size: 28px;
    }
    
    .industries-subtitle {
        font-size: 16px;
    }
    
    .industry-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .industry-card-icon i {
        font-size: 35px;
    }
    
    .industry-card-title {
        font-size: 20px;
    }
}

/* ==========================================
   MODERN STICKY NAVIGATION
   ========================================== */

.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.modern-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

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

.header-logo a {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

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

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Dropdowns */
.nav-item {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-item i {
    font-size: 24px;
    color: #d4af37;
    flex-shrink: 0;
}

.dropdown-item strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    margin-bottom: 3px;
}

.dropdown-item span {
    font-size: 12px;
    color: #999;
    display: block;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-search-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    background: white;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.header-search-btn:hover {
    background: #f8f9fa;
    border-color: #d4af37;
    color: #d4af37;
    transform: scale(1.05);
}

.header-cta {
    padding: 12px 28px;
    background: #000;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgb(0 0 0 / 30%);
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Search */
.mobile-search {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-search.active {
    max-height: 80px;
    border-top: 1px solid #e9ecef;
}

.mobile-search .search-container {
    padding: 15px 40px;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid #e9ecef;
}

.mobile-menu-logo {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: #e9ecef;
    transform: rotate(90deg);
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
    display: block;
    padding: 20px 25px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: #f8f9fa;
    color: #d4af37;
    padding-left: 35px;
}

.mobile-nav-cta {
    padding: 25px;
}

.mobile-cta {
    display: block;
    text-align: center;
    padding: 16px;
    background: #000;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgb(0 0 0 / 30%);
    transition: all 0.3s ease;
}

.mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Adjust body for fixed header */
body {
    padding-top: 80px;
}

.home-content {
    margin-top: 0;
}

/* Hero Slider adjustment */
.hero-slider {
    margin-top: 0;
}

/* Hide old header */
header .header-content {
    display: none !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 30px;
    }
    
    .header-nav {
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-search-btn {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        height: 70px;
        max-width: 100%;
        align-items: center;
        justify-content: normal;
    }
    
    body {
        padding-top: 70px;
    }
    
    .header-logo a {
        font-size: 20px;
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }
    
    .header-logo a {
        font-size: 18px;
        letter-spacing: 3px;
    }
    
    .header-search-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}


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

.choice-card{
    width: 100%;
    padding: 25px;
}

.right-badge{
    position: absolute;
    right: 10px
}

#modules{
    padding: 100px 0px 0px;
    background: rgb(250, 250, 250);
}

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

/* ==========================================
   PAGES INDEPENDANTES - STYLES
   ========================================== */

/* Page Hero Section */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.page-hero.dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 30px;
    color: #666;
}

.page-hero.dark .page-breadcrumb {
    color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero.dark .page-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumb a:hover {
    color: #d4af37;
}

.page-breadcrumb i {
    font-size: 12px;
}

.page-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.page-hero.dark .page-hero-title {
    color: white;
}

.page-hero-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 50px;
}

.page-hero.dark .page-hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
}

.hero-stat-label {
    font-size: 16px;
    color: #666;
}

.page-hero.dark .hero-stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Page CTA Section */
.page-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(192, 155, 46, 0.02) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.page-cta-section.dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.page-cta-section.dark .page-cta-content h2 {
    color: white;
}

.page-cta-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.page-cta-section.dark .page-cta-content p {
    color: rgba(255, 255, 255, 0.8);
}

.page-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #000;
    color: white;
    box-shadow: 0 4px 15px rgb(0 0 0 / 30%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: white;
    color: #1a1a1a;
    border: 2px solid #e9ecef;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #d4af37;
    transform: translateY(-3px);
}

.page-cta-section.dark .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.page-cta-section.dark .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive Pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero-title {
        font-size: 36px;
    }
    
    .page-hero-subtitle {
        font-size: 16px;
    }
    
    .page-hero-stats {
        gap: 30px;
    }
    
    .hero-stat-number {
        font-size: 36px;
    }
    
    .page-cta-content h2 {
        font-size: 32px;
    }
    
    .page-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
