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

img {
    max-width: 100%;
    display: block;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* ========== SIDEBAR ========== */
.sidebar {
    position: fixed;
    left: 20px;
    top: 100px;
    width: 200px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 100;
}

.sidebar-header {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    align-items: center;
}

.category-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.category-chip:hover {
    background: #f9f9f9;
}

.chip-dot {
    width: 6px;
    height: 6px;
    background: #0e2745;
    border-radius: 50%;
}

.chip-icon {
    font-size: 14px;
}

.nav-dot {
    width: 32px;
    height: 32px;
    border: 1px solid #e5e5e5;
    background: white;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.nav-dot:hover {
    background: #f9f9f9;
}

.add-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e5e5e5;
    background: white;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.add-btn:hover {
    background: #f9f9f9;
}

/* Add Category Modal in Sidebar */
.add-category-modal {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.modal-header h3 {
    font-size: 14px;
    font-weight: 600;
}

.close-btn {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #0e2745;
}

.add-category-modal label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #666;
}

.category-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 16px;
    transition: all 0.2s;
}

.category-input:focus {
    outline: none;
    border-color: #3b82f6;
}

.color-picker {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.color-dot:hover,
.color-dot.active {
    border-color: #0e2745;
    transform: scale(1.1);
}

.color-input-wrapper {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 16px;
}

.hash {
    font-weight: 600;
    color: #666;
    margin-right: 4px;
}

.color-code-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 13px;
    outline: none;
    font-weight: 500;
}

.add-category-btn {
    width: 100%;
    padding: 10px;
    background: #0e2745;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.add-category-btn:hover {
    background: #0a1f35;
}

/* Category List */
.category-list {
    margin-bottom: 20px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 4px;
}

.category-item:hover {
    background: #f9f9f9;
}

.category-item.active {
    background: #f5f5f5;
}

.category-dot i {
    font-size: 8px;
    color: inherit;
}

.category-dot {
    font-size: 12px;
}

.category-name {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
}

.category-count {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    color: #666;
}

.new-category-btn {
    width: 100%;
    padding: 10px;
    background: white;
    border: 1px dashed #d0d0d0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.new-category-btn:hover {
    background: #f9f9f9;
    border-color: #0e2745;
    color: #0e2745;
}

/* ========== MAIN WRAPPER ========== */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 60px;
    overflow-x: hidden;
}

/* ========== HEADER ========== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    color: #0e2745;
}

.cta-btn-header {
    padding: 10px 24px;
    background: #0e2745;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-btn-header:hover {
    background: #0a1f35;
    transform: translateY(-1px);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #999;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #0a1f35;
}

.nav-link.active {
    color: #0e2745;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 6px 14px 6px 6px;
    border-radius: 24px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s;
}

.user-profile:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.account-label {
    font-size: 10px;
    color: #999;
}

.user-name {
    font-size: 12px;
    font-weight: 600;
}

.dropdown {
    font-size: 8px;
    color: #999;
}

/* ========== HERO SECTION ========== */
.hero {
    text-align: center;
    margin-bottom: 120px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    color: #7691AE;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.highlight {
    color: #0e2745;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.cta-btn-primary {
    padding: 16px 32px;
    background: #0e2745;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn-primary:hover {
    background: #0a1f35;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 39, 69, 0.2);
}

.cta-btn-secondary {
    padding: 16px 32px;
    background: white;
    color: #0e2745;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn-secondary:hover {
    background: #f9f9f9;
    border-color: #0e2745;
}

/* ========== FLOATING CARDS ========== */
.floating-cards {
    position: relative;
    min-height: 900px;
    margin: 40px 0 0 0;
    padding: 50px 40px;
    /* background: rgba(250, 250, 250, 0.3); */
    border-radius: 24px;
    overflow: visible;
}

/* Background wrapper for border-radius effect */
.floating-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    z-index: -1;
    pointer-events: none;
}


.floating-cards .decorative-circle-2 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    border: 2px solid rgba(0, 0, 0, 0.02);
    border-radius: 50%;
    z-index: 0;
}

.floating-cards .decorative-circle-3 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border: 2px solid rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.floating-cards .decorative-circle-4 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    z-index: 0;
}

.floating-cards .decorative-circle-5 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    z-index: 0;
}

.product-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 280px;
    z-index: 1;
}

.product-card:hover {
    transform: scale(1.02) rotate(0deg) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    z-index: 10;
}

.card-top-center {
    left: 50%;
    top: 20px;
    transform: translateX(-50%) rotate(2deg);
    z-index: 2;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.card-top-center:hover {
    transform: translateX(-50%) scale(1.03) rotate(0deg) !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.22);
}

.card-left {
    left: 20px;
    top: 50px;
    transform: rotate(-6deg);
}

.card-left:hover {
    transform: rotate(0deg) scale(1.02) !important;
}

.card-right {
    right: 50px;
    top: 50px;
    transform: rotate(6deg);
}

.card-right:hover {
    transform: rotate(0deg) scale(1.02) !important;
}

.card-bottom {
    left: 50%;
    transform: translateX(-50%) rotate(5deg);
    bottom: 280px;
}

.card-bottom:hover {
    transform: translateX(-50%) rotate(0deg) scale(1.02) !important;
}

.card-left-bottom {
    left: 80px;
    bottom: 330px;
    transform: rotate(-8deg);
}

.card-left-bottom:hover {
    transform: rotate(0deg) scale(1.02) !important;
}

.card-right-bottom {
    right: 20px;
    bottom: 370px;
    transform: rotate(8deg);
}

.card-right-bottom:hover {
    transform: rotate(0deg) scale(1.02) !important;
}

.card-auto-billing {
    left: 50%;
    bottom: 530px;
    transform: translateX(-50%) rotate(-3deg);
}

.card-auto-billing:hover {
    transform: translateX(-50%) rotate(0deg) scale(1.02) !important;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.badge i,
.stat i {
    margin-right: 6px;
    color: #0e2745;
}

.badge i:last-child,
.stat i:last-child {
    margin-right: 0;
}

.badge {
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.badge.target {
    background: #fff0f0;
    color: #dc2626;
}

.badge.amazon {
    background: #fffbeb;
    color: #f59e0b;
}

.visit-btn {
    padding: 8px 14px;
    background: #0e2745;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.visit-btn:hover {
    background: #0a1f35;
}

.card-image {
    margin-bottom: 0px;
}

.image-placeholder {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder.large {
    height: 280px;
}

.blue-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blue-light-gradient {
    background: linear-gradient(135deg, #7dd3fc 0%, #3b82f6 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #fca5a5 20%, #fb923c 50%, #fbbf24 80%);
}

.placeholder-label {
    color: white;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 1.6;
}

.feature-icon {
    font-size: 48px;
}

.feature-icon.large {
    font-size: 64px;
}

.card-content h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.feature-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.feature-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.stat {
    font-size: 10px;
    color: #0e2745;
    background: #f5f5f5;
    padding: 4px 8px;
    border-radius: 6px;
}

.price-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
}

.old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 18px;
    font-weight: 700;
}

.meta-row {
    display: flex;
    gap: 12px;
    font-size: 11px;
    margin-bottom: 10px;
}

.rating,
.stock,
.free {
    color: #666;
}

.free {
    color: #22c55e;
    font-weight: 600;
}

.updated {
    font-size: 9px;
    color: #ccc;
    letter-spacing: 0.5px;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: 80px 0;
    margin-bottom: 20px;
}

.gallery-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

/* Left Column */
.gallery-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-feature-card {
    background: #e8e8e8;
    border-radius: 24px;
    padding: 50px 40px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.feature-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    color: #0e2745;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.feature-desc {
    font-size: 13px;
    color: #0e2745;
    line-height: 1.6;
    max-width: 320px;
}

.feature-arrow {
    position: absolute;
    top: 50px;
    right: 40px;
    font-size: 48px;
    font-weight: 300;
    color: #0e2745;
}

.feature-arrow i {
    font-size: 48px;
}

.gallery-small-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.small-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    height: 200px;
    transition: all 0.3s;
}

.small-card:hover {
    transform: scale(1.02);
}

.small-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.small-card-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.card-tag {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #0e2745;
    letter-spacing: 0.5px;
}

/* Right Column */
.gallery-right {
    height: 100%;
}

.gallery-hero-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    min-height: 570px;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-hero-card:hover {
    transform: scale(1.01);
}

.hero-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-card-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-btn {
    background: white;
    color: #0e2745;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(14, 39, 69, 0.2);
    transition: all 0.3s;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Gallery Actions */
.gallery-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.gallery-action-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: white;
    border: 2px solid #e5e5e5;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
}

.gallery-action-btn:hover {
    border-color: #0e2745;
    background: #f9f9f9;
}

.btn-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0e2745;
}

/* Screenshots Grid */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.screenshot-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.screenshot-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    display: block;
}

.screenshot-info {
    padding: 20px;
}

.screenshot-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0e2745;
    margin-bottom: 6px;
}

.screenshot-info p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Gallery Modal (for expanded view) */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.gallery-modal-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: white;
    color: #0e2745;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.gallery-modal-close:hover {
    transform: rotate(90deg);
    background: #f5f5f5;
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #0e2745;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-modal-nav:hover {
    background: #f5f5f5;
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal-prev {
    left: -70px;
}

.gallery-modal-next {
    right: -70px;
}

/* ========== LOGO CAROUSEL SECTION ========== */
.logo-carousel-section {
    padding: 60px 0;
    margin-bottom: 80px;
    /* background: #f9f9f9; */
    border-radius: 24px;
    /* overflow: hidden; */
}

.logo-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo-carousel-header {
    text-align: center;
    margin-bottom: 50px;
}

.logo-carousel-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    letter-spacing: 0.5px;
}

.logo-carousel-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);
}

.logo-carousel-track {
    display: flex;
    gap: 30px;
    animation: logoScroll 30s linear infinite;
    will-change: transform;
}

.logo-carousel-slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
    height: 120px;
}

.logo-carousel-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.logo-carousel-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-carousel-slide:hover .logo-carousel-img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.logo-carousel-wrapper:hover .logo-carousel-track {
    animation-play-state: paused;
}

/* ========== FEATURES SHOWCASE SECTION ========== */
.features-showcase-section {
    /* padding: 100px 0; */
    /* margin-bottom: 80px; */
    /* background: #fafafa; */
    border-radius: 24px;
}

.features-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.features-showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    letter-spacing: 0.5px;
}

.features-showcase-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.features-showcase-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.features-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-showcase-card {
    background: white;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.feature-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-showcase-card-center {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.feature-showcase-image {
    width: 100%;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-showcase-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    box-sizing: border-box;
}

.feature-showcase-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0e2745;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-showcase-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 80px 0;
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    color: #0e2745;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.feature-item {
    background: white;
    padding: 30px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon-box i {
    font-size: 28px;
    color: #0e2745;
}

.feature-icon-box {
    width: 56px;
    height: 56px;
    background: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0e2745;
}

.feature-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ========== PRICING SECTION ========== */
.pricing-section {
    padding: 80px 20px;
    margin-bottom: 80px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto 40px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.single-pricing-card {
    border: 2px solid #0e2745;
    width: 100%;
    max-width: 500px;
}

.single-pricing-card:hover {
    transform: translateY(-8px);
}

.premium-card {
    border: 2px solid #a855f7;
}

.card-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge.popular {
    background: #0e2745;
    color: white;
}

.card-badge.recommended {
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
    color: white;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0e2745;
}

.plan-price {
    margin-bottom: 12px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #0e2745;
    transition: all 0.3s ease;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #0e2745;
    margin-left: 4px;
}

.period {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    margin-left: 4px;
}

.plan-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Expenses Module Checkbox Styles */
.expenses-checkbox-container {
    margin-bottom: 32px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.expenses-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.expenses-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #0e2745;
    border: 2px solid #0e2745;
    border-radius: 4px;
}

.expenses-checkbox-text {
    font-size: 16px;
    font-weight: 600;
    color: #0e2745;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.features-list li {
    padding: 12px 0;
    font-size: 14px;
    color: #0e2745;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f5f5f5;
    padding-right: 16px;
}

.features-list li:nth-child(even) {
    padding-right: 0;
    padding-left: 16px;
}

.features-list li:nth-last-child(-n+2) {
    border-bottom: none;
}

.check i,
.cross i {
    display: inline-block;
}

.check {
    color: #22c55e;
    font-weight: 700;
    font-size: 16px;
}

.cross {
    color: #ef4444;
    font-weight: 700;
    font-size: 16px;
}

.pricing-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.demo-btn {
    background: #f5f5f5;
    color: #0e2745;
    border: 2px solid #e5e5e5;
}

.demo-btn:hover {
    background: #0e2745;
    color: white;
    border-color: #0e2745;
}

.standard-btn {
    background: #0e2745;
    color: white;
}

.standard-btn:hover {
    background: #0a1f35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 39, 69, 0.2);
}

.premium-btn {
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
    color: white;
}

.premium-btn:hover {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

.plan-note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 12px;
}

.pricing-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 12px;
}

.pricing-note p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ========== DEMO SECTION ========== */
.demo-section {
    padding: 80px 20px;
    background: #f5f5f5;
    border-radius: 24px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.demo-content h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.demo-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.demo-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.benefit i {
    margin-right: 8px;
    color: #22c55e;
}

.benefit {
    font-size: 14px;
    color: #0e2745;
    font-weight: 500;
}

.demo-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 16px;
}

.demo-form h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 14px;
    background: white;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0e2745;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #0e2745;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #0a1f35;
    transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer {
    padding: 10px 20px 30px;
    border-top: 1px solid #e5e5e5;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-logo .logo-icon {
    font-size: 24px;
}

.footer-logo .logo-text {
    font-weight: 700;
    font-size: 16px;
}

.footer-col p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #0e2745;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.footer-bottom p:last-child {
    margin-top: 8px;
    font-size: 12px;
    color: #666;
}

.footer-bottom p:last-child a {
    color: #0e2745;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-bottom p:last-child a:hover {
    color: #0a1f35;
    text-decoration: underline;
}

/* ========== BOTTOM BAR ========== */
.bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.continue-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s;
}

.continue-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.continue-btn .icon {
    font-size: 16px;
}

.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0e2745;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(14, 39, 69, 0.2);
    transition: all 0.3s;
}

.fab-btn:hover {
    transform: rotate(90deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        max-width: 100%;
        padding: 0 20px;
    }

    .single-pricing-card {
        max-width: 100%;
    }

    .demo-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .sidebar {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        margin-bottom: 30px;
    }

    .main-wrapper {
        padding: 30px 20px;
    }

    .floating-cards {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 20px;
        margin: 20px 0 0 0;
        overflow: visible;
    }

    .floating-cards::before {
        display: none;
    }

    .floating-cards .decorative-circle-2,
    .floating-cards .decorative-circle-3,
    .floating-cards .decorative-circle-4,
    .floating-cards .decorative-circle-5 {
        display: none;
    }

    .product-card {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        transform: none !important;
        margin: 0 auto;
        max-width: 400px;
    }

    .gallery-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-feature-card {
        padding: 40px 30px;
        min-height: 280px;
    }

    .feature-title {
        font-size: 32px;
    }

    .feature-arrow {
        font-size: 36px;
        top: 40px;
        right: 30px;
    }

    .gallery-hero-card {
        min-height: 400px;
    }

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

    .logo-carousel-section {
        padding: 40px 0;
        margin-bottom: 60px;
    }

    .logo-carousel-container {
        padding: 0 20px;
    }

    .logo-carousel-title {
        font-size: 28px;
    }

    .logo-carousel-slide {
        min-width: 160px;
        height: 100px;
        padding: 15px 30px;
    }

    .logo-carousel-img {
        max-height: 60px;
    }

    .logo-carousel-track {
        gap: 40px;
    }

    .features-showcase-section {
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .features-showcase-container {
        padding: 0 10px;
    }

    .features-showcase-title {
        font-size: 36px;
    }

    .features-showcase-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-showcase-card-center {
        grid-column: 1;
        max-width: 100%;
    }

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

    .section-title {
        font-size: 32px;
    }

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

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .nav {
        gap: 20px;
    }

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

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

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
    }

    .gallery-small-cards {
        grid-template-columns: 1fr;
    }

    .small-card {
        height: 180px;
    }

    .gallery-hero-card {
        min-height: 300px;
    }

    .feature-title {
        font-size: 28px;
    }

    .gallery-feature-card {
        padding: 30px 24px;
    }

    .gallery-actions {
        flex-direction: column;
        gap: 12px;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .gallery-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .gallery-modal-prev {
        left: 10px;
    }

    .gallery-modal-next {
        right: 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .logo-carousel-section {
        padding: 30px 0;
        margin-bottom: 40px;
    }

    .logo-carousel-title {
        font-size: 24px;
    }

    .logo-carousel-slide {
        min-width: 140px;
        height: 80px;
        padding: 12px 20px;
    }

    .logo-carousel-img {
        max-height: 50px;
    }

    .logo-carousel-track {
        gap: 30px;
    }

    .features-showcase-title {
        font-size: 28px;
    }

    .features-showcase-subtitle {
        font-size: 14px;
    }

    .features-showcase-image {
        height: 200px;
    }

    .feature-showcase-card {
        padding: 10px;
    }

    .demo-benefits {
        grid-template-columns: 1fr;
    }

    .floating-cards {
        padding: 15px;
        margin: 15px 0 40px 0;
        gap: 20px;
        overflow: visible;
    }

    .floating-cards::before {
        display: none;
    }

    .product-card {
        max-width: 100%;
        padding: 15px;
    }

    .demo-form {
        padding: 30px 20px;
    }

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

    .features-list li {
        padding-right: 0;
        padding-left: 0;
    }

    .features-list li:nth-child(even) {
        padding-left: 0;
    }

    .features-list li:last-child {
        border-bottom: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
        margin-bottom: 10px;
    }

    .bottom-bar {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .floating-cards {
        padding: 10px;
        gap: 15px;
        margin: 10px 0 30px 0;
        overflow: visible;
    }

    .floating-cards::before {
        display: none;
    }

    .product-card {
        padding: 12px;
        width: 100%;
    }

    .card-content h3 {
        font-size: 13px;
    }

    .feature-desc {
        font-size: 11px;
    }

    .badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    .stat {
        font-size: 9px;
        padding: 3px 6px;
    }
}