/* Simplified Home CSS */

:root{
    --font-sans: "Peyda", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    --bg:#0f0c29;
    --panel:rgba(255, 255, 255, 0.06);
    --ink:#ffffff;
    --ink-2:rgba(255, 255, 255, 0.8);
    --brand:#5b43ea;
    --danger:#f59e0b;
    --purple:#6f42c1;
    --gold:#f59f00;
    --success:#26c281;
    --info:#3b82f6;
    --warning:#ffb020;
    --accent:rgba(255, 255, 255, 0.1);
    --radius:16px;
    --radius-sm:12px;
    --shadow-sm:0 4px 12px rgba(0,0,0,.3);
    --shadow-md:0 8px 24px rgba(0,0,0,.4);
    
    /* Active state variables */
    --active-bg: rgba(91,67,234,.15);
    --active-border: var(--brand);
    --active-shadow: 0 0 0 1px rgba(91,67,234,.3);
    
    /* Service Card Colors */
    --card-bg: rgba(15, 12, 41, 0.85);
    --card-bg-hover: rgba(15, 12, 41, 0.95);
    --card-border: rgba(255, 255, 255, 0.06);
    --card-border-hover: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    --card-shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.3);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.65);
    
    /* Interactive Elements */
    --interactive-bg: rgba(255, 255, 255, 0.02);
    --interactive-bg-hover: rgba(255, 255, 255, 0.04);
    --interactive-border: rgba(255, 255, 255, 0.08);
    --interactive-border-hover: rgba(255, 255, 255, 0.12);
    
    /* Basic Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    
    /* Basic Shadows */
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.2);
    
    /* Status Colors */
    --status-success: #10b981;
    --status-warning: #f59e0b;
    --status-error: #ef4444;
    --status-info: #3b82f6;
    
    /* Typography Scale */
    --text-xs: 11px;
    --text-sm: 12px;
    --text-base: 14px;
    --text-lg: 16px;
    --text-xl: 18px;
    --text-2xl: 20px;
    --text-3xl: 24px;
    
    /* Line Heights */
    --leading-tight: 1.2;
    --leading-snug: 1.3;
    --leading-normal: 1.5;
    --leading-relaxed: 1.6;
    
    /* Spacing Scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 20px;
    --space-2xl: 24px;
    --space-3xl: 32px;
    
    /* Responsive heading scale */
    --heading-1: clamp(24px, 2.6vw + 8px, 34px);
    --heading-2: clamp(20px, 2.2vw + 6px, 28px);
    --heading-3: clamp(18px, 1.8vw + 4px, 22px);
    --heading-4: clamp(16px, 1.6vw + 2px, 18px);
    --heading-5: clamp(14px, 1.2vw + 2px, 16px);
    --heading-6: clamp(13px, 1vw + 1px, 14px);
}



.hero-subtitle {
    font-size: 1.3rem;
    color: var(--ink);
    margin: 0 0 16px;
    font-weight: 600;
    line-height: 1.4;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.discount-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease-out;
}

.original-price {
    font-size: 0.9rem;
    color: var(--ink-light);
    text-decoration: line-through;
}

.final-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f59e0b;
}

/* Hero Cards Carousel Section */
.hero-cards-carousel-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-cards-carousel-section .carousel-track {
    gap: 0;
}

.hero-cards-carousel-section .carousel-track .carousel-item {
    flex: 0 0 auto;
    margin-right: 14px;
    width: auto;
}

.hero-cards-carousel-section .hero-banner-card {
    width: fit-content;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-cards-carousel-section .hero-banner-card img {
    width: auto;
    height: 280px;
    max-width: none;
    object-fit: contain;
    display: block;
}

/* Discount Carousel Section */
.discount-carousel-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.view-more-btn svg {
    width: 14px;
    height: 14px;
}

.carousel-title {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.carousel-subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin: 8px 0 0;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 24px;
    padding: 25px 0 0 0;  
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    touch-action: pan-x;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-item {
    flex: 0 0 280px;
    width: 280px;
}

.discount-card {
    background: var(--panel, rgba(255,255,255,0.06));
    border: 1px solid var(--accent, rgba(255,255,255,0.12));
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    position: relative;
    overflow: visible;
    backdrop-filter: blur(6px);
}

.discount-card .card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ef4444;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    pointer-events: none;
}

.discount-card .card-content {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex: 1;
    position: relative;
    padding-top: 20px;
}

.discount-card .card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--accent, rgba(255,255,255,0.12));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #c7baff;
    backdrop-filter: blur(6px);
}

.discount-card .card-icon svg {
    width: 24px;
    height: 24px;
}

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

.discount-card .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink, #fff);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.discount-card .card-desc {
    font-size: 0.875rem;
    color: var(--ink-2, rgba(255,255,255,0.8));
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.discount-card .card-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.discount-card .original-price {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    text-decoration: line-through;
}

.discount-card .final-price {
    font-size: 1.125rem;
    font-weight: 800;
    color: #fff;
}

.discount-card .card-save {
    font-size: 0.75rem;
    color: #059669;
    font-weight: 600;
    background: rgba(5, 150, 105, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
}

.discount-card .card-btn {
    background: var(--brand);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.discount-card .card-btn .btn-ico {
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.discount-card .card-btn .btn-ico svg {
    width: 18px;
    height: 18px;
}

/* Panel Introduction Section */
.panel-intro-section {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.panel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-2xl);
    position: relative;
    z-index: 2;
}

.panel-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.panel-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgb(101 74 235);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.panel-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.panel-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 var(--space-xl);
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.panel-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.accordion-item {
    background: rgb(44 40 85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-2xl) var(--space-3xl);
    background: rgba(15, 12, 41, 0.2);
    border: none;
    cursor: pointer;
    text-align: right;
    position: relative;
    z-index: 1;
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.accordion-content {
    flex: 1;
    text-align: right;
}

.accordion-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
}

.accordion-content p {
    margin: 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.accordion-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.accordion-body {
    display: none;
    padding: 12px 28px 28px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accordion-item.active .accordion-body {
    display: block;
    opacity: 1;
}

.accordion-item.active .accordion-chevron {
    transform: rotate(180deg);
}

/* Why Falonic styles */
.why-falonic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.reason-card {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reason-icon {
    width: 40px;
    height: 40px;
    background: rgba(91, 67, 234, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5b43ea;
    margin: 0 auto 12px;
}

.reason-card h4 {
    color: #fff;
    margin: 0 0 8px 0;
    font-size: 1rem;
    font-weight: 600;
}

.reason-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

/* Quick Actions styles */
.quick-actions {
    text-align: center;
    padding: 32px 20px;
}

.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 4px 16px rgba(91, 67, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91, 67, 234, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.action-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.action-note p {
    margin: 0;
}