/* ===== CSS Variables with New Colors ===== */
:root {
    --red: #ef4850;
    --red-dark: #d43d45;
    --red-light: #fef0f0;
    --red-border: #fecaca;
    --blue: #2c99d4;
    --blue-dark: #2280b5;
    --blue-light: #eff6ff;
    --blue-border: #bfdbfe;
    --black: #1a1a1a;
    --gray-50: #f8fafb;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #404040;
    --white: #ffffff;
    --green: #16a34a;
    --yellow: #f59e0b;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
}

/* ===== 1. BANNER SLIDER ===== */
.banner-slider-section { width: 100%; position: relative; background: var(--gray-50); }
.bannerSwiper { width: 100%; height: auto; }
.bannerSwiper .swiper-slide { position: relative; overflow: hidden; }
.banner-image { width: 100%; height: auto; max-height: 575px; object-fit: cover; display: block; }

@media (max-width: 768px) { .banner-image { max-height: 300px; } }
@media (max-width: 480px) { .banner-image { max-height: 220px; } }

.banner-placeholder { width: 100%; height: 575px; display: flex; align-items: center; justify-content: center; position: relative; }
@media (max-width: 768px) { .banner-placeholder { height: 300px; } }
@media (max-width: 480px) { .banner-placeholder { height: 220px; } }

.banner-placeholder-1 { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 50%, #b91c1c 100%); }
.banner-placeholder-2 { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 50%, #1e6fa0 100%); }
.banner-placeholder-3 { background: linear-gradient(135deg, var(--black) 0%, #2d2d2d 50%, #404040 100%); }

.banner-content { text-align: center; color: var(--white); padding: 2rem; max-width: 600px; }
.banner-badge { display: inline-block; padding: 0.375rem 1rem; background: rgba(255,255,255,0.2); border-radius: 9999px; font-size: 0.8125rem; font-weight: 600; margin-bottom: 1rem; backdrop-filter: blur(10px); }
.banner-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.75rem; line-height: 1.2; }
@media (max-width: 768px) { .banner-title { font-size: 1.75rem; } }
@media (max-width: 480px) { .banner-title { font-size: 1.25rem; } }
.banner-text { font-size: 1.125rem; opacity: 0.9; }
@media (max-width: 480px) { .banner-text { font-size: 0.875rem; } }

.banner-next, .banner-prev { color: #fff !important; width: 48px !important; height: 48px !important; background: rgba(0,0,0,0.3) !important; border-radius: 50% !important; backdrop-filter: blur(10px); transition: all 0.3s ease !important; }
.banner-next:hover, .banner-prev:hover { background: var(--red) !important; }
.banner-next::after, .banner-prev::after { font-size: 1rem !important; font-weight: 700 !important; }
@media (max-width: 768px) { .banner-next, .banner-prev { display: none !important; } }
.banner-pagination { bottom: 1.5rem !important; }
.banner-pagination .swiper-pagination-bullet { width: 10px !important; height: 10px !important; background: rgba(255,255,255,0.5) !important; opacity: 1 !important; transition: all 0.3s ease !important; }
.banner-pagination .swiper-pagination-bullet-active { width: 28px !important; border-radius: 5px !important; background: #fff !important; }

/* ===== BANNER LOADING STATE ===== */
.banner-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    opacity: 0.8;
}

.banner-loading .spinner {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.banner-loading p {
    font-size: 0.875rem;
}

/* ===== BANNER OVERLAY CONTENT ===== */
.banner-link {
    display: block;
    position: relative;
    width: 100%;
}

.banner-overlay-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
}

@media (max-width: 768px) {
    .banner-overlay-content {
        bottom: 1rem;
        left: 1rem;
    }
}

/* ===== BANNER IMAGE ENHANCEMENTS ===== */
.banner-image {
    width: 100%;
    height: auto;
    max-height: 575px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.bannerSwiper .swiper-slide:hover .banner-image {
    transform: scale(1.02);
}

/* ===== BANNER NAVIGATION ENHANCEMENT ===== */
.banner-next,
.banner-prev {
    color: #fff !important;
    width: 48px !important;
    height: 48px !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease !important;
    opacity: 0;
}

.bannerSwiper:hover .banner-next,
.bannerSwiper:hover .banner-prev {
    opacity: 1;
}

.banner-next:hover,
.banner-prev:hover {
    background: var(--red) !important;
    transform: scale(1.1);
}

.banner-next::after,
.banner-prev::after {
    font-size: 1rem !important;
    font-weight: 700 !important;
}

@media (max-width: 768px) {
    .banner-next,
    .banner-prev {
        display: none !important;
    }
}

/* ===== BANNER PAGINATION ===== */
.banner-pagination {
    bottom: 1.5rem !important;
}

.banner-pagination .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

.banner-pagination .swiper-pagination-bullet-active {
    width: 28px !important;
    border-radius: 5px !important;
    background: #fff !important;
    background: var(--red) !important;
}

/* ===== 2. HERO SECTION ===== */
.hero-section { position: relative; min-height: calc(100vh - 64px); display: flex; align-items: center; overflow: hidden; padding: 3rem 0; background: #fdfdfd; }
@media (min-width: 1024px) { .hero-section { min-height: calc(100vh - 72px); padding: 4rem 0; } }
.hero-background { position: absolute; inset: 0; pointer-events: none; }
.hero-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(239,72,80,0.06) 0%, transparent 50%), radial-gradient(ellipse 60% 80% at 80% 50%, rgba(44,153,212,0.04) 0%, transparent 50%); }
.hero-pattern { position: absolute; inset: 0; opacity: 0.015; background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000'%3E%3Cpath d='M24 22v-3h-1.5v3h-3v1.5h3v3H24v-3h3V22h-3zm0-20V0h-1.5v2h-3v1.5h3v3H24v-3h3V2h-3zM4 22v-3H2.5v3h-3v1.5h3v3H4v-3h3V22H4zM4 2V0H2.5v2h-3v1.5h3v3H4v-3h3V2H4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }

/* Floating Shapes */
.hero-floating-shapes { position: absolute; inset: 0; }
.floating-circle { position: absolute; border-radius: 50%; opacity: 0.06; }
.circle-1 { width: 300px; height: 300px; background: var(--red); top: 10%; right: -5%; animation: floatSlow 8s ease-in-out infinite; }
.circle-2 { width: 200px; height: 200px; background: var(--blue); bottom: 20%; left: -3%; animation: floatSlow 6s ease-in-out infinite reverse; }
.circle-3 { width: 150px; height: 150px; background: var(--black); top: 50%; left: 40%; animation: floatSlow 10s ease-in-out infinite; }
@keyframes floatSlow { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(5deg); } }

.hero-container { position: relative; z-index: 1; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-container { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.hero-content { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .hero-content { gap: 1.5rem; } }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: var(--gray-100); border-radius: 9999px; font-size: 0.8125rem; font-weight: 500; color: var(--gray-600); width: fit-content; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: pulse 2s infinite; }
.hero-title { font-size: 2.25rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; color: var(--black); }
@media (min-width: 640px) { .hero-title { font-size: 2.75rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4rem; } }
.text-gradient { background: linear-gradient(135deg, var(--red) 0%, var(--blue) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-description { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.7; max-width: 480px; }
@media (min-width: 768px) { .hero-description { font-size: 1.0625rem; } }
.hero-highlights { display: flex; flex-direction: column; gap: 0.625rem; }
.highlight-item { display: flex; align-items: center; gap: 0.625rem; font-size: 0.8125rem; color: var(--gray-600); }
@media (min-width: 640px) { .highlight-item { font-size: 0.875rem; } }
.highlight-icon { color: var(--red); flex-shrink: 0; width: 18px; height: 18px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.pulse-animation { animation: pulseButton 2s infinite; }
@keyframes pulseButton { 0%, 100% { box-shadow: 0 0 0 0 rgba(239,72,80,0.4); } 50% { box-shadow: 0 0 0 12px rgba(239,72,80,0); } }
.hero-trust { display: flex; align-items: center; gap: 0.75rem; }
.trust-avatars { display: flex; align-items: center; }
.trust-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--blue)); color: #fff; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; margin-right: -8px; }
.trust-plus { width: 32px; height: 32px; border-radius: 50%; background: var(--gray-100); color: var(--red); font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }
.trust-text { font-size: 0.75rem; color: var(--gray-500); }

/* Hero Visual */
.hero-visual { display: none; }
@media (min-width: 1024px) { .hero-visual { display: block; } }
.hero-stats-cards { display: flex; flex-direction: column; gap: 1.25rem; position: relative; }
.hero-stat-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 20px; padding: 1.5rem; display: flex; align-items: center; gap: 1rem; box-shadow: var(--shadow-sm); transition: all 0.3s ease; width: 85%; }
.hero-stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--red-border); }
.offset-card { margin-left: auto; }
.stat-icon-box { width: 50px; height: 50px; border-radius: 14px; background: var(--red-light); display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; transition: all 0.3s ease; }
.hero-stat-card:hover .stat-icon-box { background: var(--red); color: #fff; }
.stat-info { display: flex; align-items: baseline; gap: 2px; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--black); line-height: 1; display: inline-block; transition: transform 0.15s ease; }
.stat-suffix { font-size: 1.25rem; font-weight: 700; color: var(--red); }
.stat-label { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.25rem; }

/* ===== SECTION HEADER (Shared) ===== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); margin-bottom: 0.75rem; padding: 0.25rem 0.75rem; background: var(--red-light); border-radius: 9999px; }
.section-badge-light { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.15); }
.section-title { font-size: 2rem; font-weight: 800; color: var(--black); margin-bottom: 0.75rem; line-height: 1.2; }
@media (min-width: 768px) { .section-title { font-size: 2.5rem; } }
.section-description { font-size: 1rem; color: var(--gray-500); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.text-white { color: #fff; }
.text-white-70 { color: rgba(255,255,255,0.7); }

/* ===== 3. CATEGORY SECTION ===== */
.category-section { padding: 5rem 0; background: #fff; }
@media (min-width: 768px) { .category-section { padding: 6rem 0; } }
.categorySwiper { padding: 1rem 0.5rem; }
.category-card { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding: 1.5rem 1rem; text-decoration: none; border-radius: 16px; border: 1px solid #f0f0f0; background: #fff; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--red-border); }
.category-icon-box { width: 100px; height: 100px; border-radius: 50%; background: var(--red-light); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.category-card:hover .category-icon-box { background: var(--red); transform: scale(1.1); }
.category-icon { width: 70px; height: 70px; object-fit: contain; transition: all 0.3s ease; }
.category-card:hover .category-icon { transform: scale(1.15); filter: brightness(0) invert(1); }
.category-name { font-size: 0.875rem; font-weight: 600; color: var(--gray-600); text-align: center; transition: color 0.3s ease; }
.category-card:hover .category-name { color: var(--red); }

.category-next, .category-prev { width: 40px !important; height: 40px !important; background: #fff !important; border: 1px solid var(--gray-200) !important; border-radius: 50% !important; box-shadow: var(--shadow-sm) !important; color: var(--gray-600) !important; transition: all 0.3s ease !important; }
.category-next:hover, .category-prev:hover { background: var(--red) !important; color: #fff !important; border-color: var(--red) !important; }
.category-next::after, .category-prev::after { font-size: 0.875rem !important; font-weight: 700 !important; }
@media (max-width: 768px) { .category-next, .category-prev { display: none !important; } .category-icon-box { width: 65px; height: 65px; } .category-icon { width: 38px; height: 38px; } }

/* ===== 4. WHY US SECTION ===== */
.why-us-section { padding: 5rem 0; background: var(--gray-50); }
@media (min-width: 768px) { .why-us-section { padding: 6rem 0; } }
.why-us-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .why-us-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-us-grid { grid-template-columns: repeat(3, 1fr); } }
.why-us-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 20px; padding: 2rem; transition: all 0.3s ease; display: flex; flex-direction: column; }
.why-us-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--red-border); }
.why-us-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: all 0.3s ease; }
.icon-red { background: var(--red-light); color: var(--red); }
.icon-blue { background: var(--blue-light); color: var(--blue); }
.why-us-card:hover .why-us-icon { transform: rotateY(180deg); }
.why-us-card:hover .icon-red { background: var(--red); color: #fff; }
.why-us-card:hover .icon-blue { background: var(--blue); color: #fff; }
.why-us-title { font-size: 1.125rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem; }
.why-us-text { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.why-us-link { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; font-weight: 600; color: var(--red); text-decoration: none; transition: gap 0.3s ease; }
.why-us-link:hover { gap: 0.625rem; }
.link-blue { color: var(--blue); }
.link-blue:hover { color: var(--blue-dark); }

/* ===== 5. MARKETPLACE SECTION ===== */
.marketplace-section { padding: 5rem 0; background: var(--black); color: #fff; overflow: hidden; position: relative; }
@media (min-width: 768px) { .marketplace-section { padding: 6rem 0; } }
.marketplace-bg-animation { position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(239,72,80,0.15), transparent 50%), radial-gradient(circle at 70% 50%, rgba(44,153,212,0.1), transparent 50%); animation: bgPulse 8s ease-in-out infinite; }
@keyframes bgPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.marketplace-grid { display: grid; gap: 3rem; position: relative; z-index: 1; }
@media (min-width: 1024px) { .marketplace-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; } }
.marketplace-title { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 1rem; line-height: 1.2; }
@media (min-width: 768px) { .marketplace-title { font-size: 2.5rem; } }
.marketplace-description { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 2rem; }
@media (min-width: 768px) { .marketplace-description { font-size: 1.125rem; } }
.marketplace-cards { display: flex; flex-direction: column; gap: 1rem; }
.marketplace-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; transition: all 0.3s ease; }
.marketplace-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); transform: translateX(4px); }
.mp-card-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-red-bg { background: rgba(239,72,80,0.2); color: var(--red); }
.icon-blue-bg { background: rgba(44,153,212,0.2); color: var(--blue); }
.icon-green-bg { background: rgba(22,163,74,0.2); color: var(--green); }
.marketplace-card h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.25rem; }
.marketplace-card p { font-size: 0.8125rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.marketplace-visual { display: none; }
@media (min-width: 1024px) { .marketplace-visual { display: flex; align-items: center; justify-content: center; } }
.marketplace-image-wrapper { width: 100%; max-width: 500px; }
.marketplace-image { width: 100%; height: auto; }
.marketplace-placeholder { width: 100%; height: 400px; position: relative; display: flex; align-items: center; justify-content: center; }
.mp-placeholder-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.mp-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); animation: spin 60s linear infinite; }
.mp-ring.ring-1 { width: 400px; height: 400px; border-color: rgba(239,72,80,0.15); }
.mp-ring.ring-2 { width: 320px; height: 320px; animation-direction: reverse; animation-duration: 45s; border-color: rgba(44,153,212,0.15); }
.mp-ring.ring-3 { width: 240px; height: 240px; animation-duration: 30s; border-color: rgba(255,255,255,0.08); }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.mp-placeholder-center { text-align: center; position: relative; z-index: 1; }
.mp-brand { display: block; font-size: 3.5rem; font-weight: 800; color: var(--red); line-height: 1; }
.mp-label { display: block; font-size: 1rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem; }

/* ===== 6. DOWNLOAD APP SECTION ===== */
.download-app-section { padding: 5rem 0; background: #fff; }
@media (min-width: 768px) { .download-app-section { padding: 6rem 0; } }
.download-app-wrapper { display: grid; gap: 2rem; background: linear-gradient(135deg, var(--red-light) 0%, #fff 50%, var(--blue-light) 100%); border-radius: 32px; padding: 3rem 2rem; border: 1px solid #f0f0f0; }
@media (min-width: 1024px) { .download-app-wrapper { grid-template-columns: 1fr 1fr; gap: 4rem; padding: 4rem; align-items: center; } }
.download-title { font-size: 2rem; font-weight: 800; color: var(--black); margin-bottom: 0.75rem; }
@media (min-width: 768px) { .download-title { font-size: 2.5rem; } }
.download-text { font-size: 1rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 1.5rem; }
.download-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2rem; }
@media (max-width: 480px) { .download-features { grid-template-columns: 1fr; } }
.download-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--gray-600); }
.download-feature svg { color: var(--green); flex-shrink: 0; }
.download-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.store-btn-google, .store-btn-apple { display: inline-block; transition: all 0.3s ease; opacity: 0.85; }
.store-btn-google:hover, .store-btn-apple:hover { opacity: 1; transform: translateY(-2px); }
.store-img { height: 48px; width: auto; }
@media (max-width: 480px) { .store-img { height: 40px; } }

/* Download Mockup */
.download-mockup { display: none; }
@media (min-width: 1024px) { .download-mockup { display: flex; justify-content: center; } }
.mockup-phone { width: 240px; height: 480px; background: var(--black); border-radius: 36px; padding: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); position: relative; animation: floatPhone 4s ease-in-out infinite; }
@keyframes floatPhone { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.mockup-screen { width: 100%; height: 100%; background: #fff; border-radius: 28px; overflow: hidden; }
.mockup-header { padding: 0.75rem 1rem; background: var(--gray-50); border-bottom: 1px solid #f0f0f0; }
.mockup-time { font-size: 0.75rem; font-weight: 600; color: var(--black); }
.mockup-content { padding: 1rem; }
.mockup-logo { font-size: 1.25rem; font-weight: 800; color: var(--red); text-align: center; margin-bottom: 1rem; }
.mockup-search-bar { height: 36px; background: var(--gray-100); border-radius: 18px; margin-bottom: 1rem; display: flex; align-items: center; padding: 0 1rem; font-size: 0.75rem; color: var(--gray-400); }
.mockup-categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-bottom: 1rem; }
.mockup-cat { height: 50px; background: var(--red-light); border-radius: 12px; }
.mockup-cat:nth-child(even) { background: var(--blue-light); }
.mockup-products { display: flex; flex-direction: column; gap: 0.5rem; }
.mockup-product { height: 60px; background: var(--gray-50); border-radius: 12px; border: 1px solid #f0f0f0; }


/* ===== 8. TESTIMONIALS SECTION ===== */
.testimonials-section { padding: 5rem 0; background: linear-gradient(135deg, var(--black) 0%, #2d2d2d 100%); }
@media (min-width: 768px) { .testimonials-section { padding: 6rem 0; } }
.testimonialsSwiper { padding: 0.5rem; padding-bottom: 3rem; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem; text-align: center; transition: all 0.3s ease; height: 100%; position: relative; }
.testimonial-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(239,72,80,0.3); transform: translateY(-4px); }
.testimonial-quote { position: absolute; top: 1rem; left: 1rem; color: rgba(255,255,255,0.05); }
.testimonial-stars { margin-bottom: 1rem; display: flex; justify-content: center; gap: 4px; font-size: 1rem; }
.testimonial-text { font-size: 0.9375rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; justify-content: center; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--blue)); color: #fff; font-weight: 700; font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.testimonial-name { font-size: 0.9375rem; font-weight: 600; color: #fff; }
.testimonial-role { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.testimonials-pagination { bottom: 0 !important; }
.testimonials-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.3) !important; opacity: 1 !important; }
.testimonials-pagination .swiper-pagination-bullet-active { background: var(--red) !important; }

/* ===== 9. BRANDS SECTION ===== */
.brands-section { padding: 5rem 0; background: linear-gradient(180deg, #fff 0%, var(--gray-50) 100%); overflow: hidden; }
.brands-section[hidden] { display: none !important; }
@media (min-width: 768px) { .brands-section { padding: 6rem 0; } }
.brandsSwiper { padding: 1rem 0.5rem 1.5rem; }
.brandsSwiper .swiper-wrapper { transition-timing-function: linear !important; }
.brand-link { display: block; text-decoration: none; color: inherit; }
.brand-card { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 0.75rem; 
    padding: 1.25rem 1rem; 
    background: rgba(255,255,255,0.9); 
    border: 1px solid var(--gray-200);
    border-radius: 12px; 
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease; 
    min-height: 132px; 
    min-width: 132px;
    justify-content: center; 
}
.brand-card:hover { border-color: var(--red-border); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.brand-logo {
    width: 100%;
    height: 64px;
    max-width: 150px;
    object-fit: contain; 
    filter: grayscale(20%); 
    opacity: 0.82; 
    transition: all 0.3s ease; 
}
.brand-card:hover .brand-logo { filter: grayscale(0%); opacity: 1; }
.brand-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700; 
    color: var(--red); 
}
.brand-name { font-size: 0.8125rem; font-weight: 700; color: var(--gray-600); text-align: center; line-height: 1.3; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ===== 10. CTA SECTION ===== */
.cta-section { padding: 2rem 0; background: var(--gray-50); }
@media (min-width: 768px) { .cta-section { padding: 2rem 0; } }
.cta-wrapper { text-align: center; background: linear-gradient(135deg, var(--red) 0%, var(--blue) 100%); border-radius: 32px; padding: 3rem 2rem; color: #fff; position: relative; overflow: hidden; }
@media (min-width: 768px) { .cta-wrapper { padding: 4rem; } }
.cta-particles { position: absolute; inset: 0; pointer-events: none; }
.particle { position: absolute; width: 6px; height: 6px; background: rgba(255,255,255,0.3); border-radius: 50%; animation: particleFloat 4s ease-in-out infinite; }
.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 60%; right: 15%; animation-delay: 1s; }
.particle-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.particle-4 { top: 40%; right: 30%; animation-delay: 3s; }
@keyframes particleFloat { 0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; } 50% { transform: translateY(-20px) scale(1.5); opacity: 0.6; } }
.cta-heading { font-size: 2rem; font-weight: 800; margin-bottom: 0.75rem; line-height: 1.2; position: relative; z-index: 1; }
@media (min-width: 768px) { .cta-heading { font-size: 2.5rem; } }
.cta-subtext { font-size: 1rem; opacity: 0.85; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
@media (min-width: 768px) { .cta-subtext { font-size: 1.125rem; } }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; position: relative; z-index: 1; }
.cta-btn-primary { background: #fff; color: var(--red); border-color: #fff; font-weight: 700; }
.cta-btn-primary:hover { background: var(--black); color: #fff; border-color: var(--black); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.btn-outline-white { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ===== GLOBAL BUTTON STYLES ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.5rem 1.25rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: all 0.3s ease; text-decoration: none; white-space: nowrap; font-family: inherit; }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; height: 3.25rem; }
.btn-primary { background: var(--black); color: #fff; border-color: var(--black); }
.btn-primary:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(239,72,80,0.3); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--gray-200); }
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.counter { transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1); display: inline-block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
    .hero-section { text-align: center; }
    .hero-content { align-items: center; }
    .hero-badge { margin: 0 auto; }
    .hero-highlights { align-items: center; }
    .hero-description { margin: 0 auto; }
    .hero-trust { justify-content: center; }
}
@media (max-width: 639px) {
    .hero-title { font-size: 1.75rem; }
    .hero-cta { flex-direction: column; width: 100%; }
    .hero-cta .btn { width: 100%; }
    .section-title { font-size: 1.5rem; }
    .cta-heading { font-size: 1.5rem; }
}
