/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #F7EE21;
    --yellow-accent: #F7EE21;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --hover-bg: #f5f5f5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Remove body padding for hero sections */
body:has(.support-hero),
body:has(.warranty-hero) {
    padding-top: 0;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Policy Pages
   =================================== */
.policy-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0b0b0b 0%, #2a2a2a 100%);
    color: var(--secondary-color);
    text-align: center;
}

.policy-hero-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.policy-hero-subtitle {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
}

.policy-content {
    padding: 64px 0 120px;
    background: var(--bg-white);
}

.policy-card {
    max-width: 920px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: 40px;
}

.policy-section + .policy-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.policy-section h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.policy-section p {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.policy-section ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-secondary);
}

.policy-section li + li {
    margin-top: 8px;
}

@media (max-width: 768px) {
    .policy-hero-title {
        font-size: 36px;
    }

    .policy-hero-subtitle {
        font-size: 16px;
    }

    .policy-card {
        padding: 28px;
    }
}

/* ===================================
   Top Banner
   =================================== */
.top-banner {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.top-banner p {
    margin: 0;
}

/* ===================================
   Header
   =================================== */
.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary-color);
}

.logo-img {
    height: 50px;
    width: auto;
    min-width: 100px;
    object-fit: contain;
    display: block;
    max-width: 150px;
    position: relative;
    z-index: 10;
    visibility: visible;
    opacity: 1;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-primary);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

.has-dropdown {
    position: relative;
}

.has-dropdown .arrow {
    font-size: 10px;
    margin-left: 4px;
    display: inline-block;
    transition: var(--transition);
}

.has-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    padding: 12px 0;
    margin-top: 8px;
    border-radius: 8px;
    z-index: 1001;
    pointer-events: none;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown li {
    padding: 0;
}

.dropdown a {
    display: block;
    padding: 12px 24px;
    font-weight: 400;
}

.dropdown a:hover {
    background-color: var(--hover-bg);
}

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

.search-btn,
.cart-btn {
    color: var(--text-primary);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: var(--transition);
}

.search-btn:hover,
.cart-btn:hover {
    background-color: var(--hover-bg);
    transform: scale(1.1);
}

.cart-btn {
    position: relative;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
}

/* Removed cart-count styles as it's no longer used */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 24px;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    filter: brightness(0.7) saturate(1.1);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--secondary-color);
    max-width: 800px;
    padding: 0 24px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 32px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

/* ===================================
   Section Loading Animation
   =================================== */
@keyframes sectionLoad {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* All sections start hidden and animate when in view */
section:not(.hero):not(.promo-section):not(.video-hero-section):not(.policy-hero):not(.policy-content):not(.product-detail-section):not(.product-banners-section) {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When section is in view, animate it */
section.section-loaded {
    opacity: 1;
    transform: scale(1) translateY(0);
    animation: sectionLoad 0.6s ease-out forwards;
}

/* Hero section, promo section, and video hero section should be visible immediately */
section.hero,
section.promo-section,
section.video-hero-section {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Disable section animation on pages that opt out */
body.no-section-animate section {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 13px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--hover-bg);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: var(--hover-bg);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border-radius: 50%;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Category Section
   =================================== */
.category-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.category-section .container {
    max-width: 1600px;
    padding: 0 40px;
}

.category-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

/* New simple horizontal row layout for categories */
.categories-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
}

.category-item:hover {
    transform: translateY(-4px);
}

.category-item-image {
    width: 100%;
    max-width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
}

.category-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.category-item-label {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.4;
    margin-top: 0;
}

.category-card {
    background-color: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #F7EE21, var(--accent-color));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.category-card:hover::before {
    transform: scaleX(1);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(247, 238, 33, 0.1);
    border-color: rgba(247, 238, 33, 0.3);
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f0f0 100%);
    overflow: hidden;
}

.category-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(247, 238, 33, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.category-card:hover .category-image-wrapper::after {
    opacity: 1;
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 25px;
    z-index: 2;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(15%) brightness(0.98);
    transform: scale(0.95);
}

.category-card:hover .category-image img {
    transform: scale(1.08) translateY(-4px);
    filter: grayscale(0%) brightness(1.05);
}

.category-content {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-white) 100%);
}

.category-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.8px;
    transition: color 0.3s ease;
    position: relative;
}

/* Force two-line display for Mobile and Vehicle Accessories */
a[href="#mobile-accessories"] .category-name,
a[href="#vehicle-accessories"] .category-name {
    max-width: 140px;
    line-height: 1.3;
    word-break: break-word;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-card:hover .category-name {
    color: var(--accent-color);
}

.category-count {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.category-count::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.category-card:hover .category-count::before {
    opacity: 1;
    transform: scale(1);
}

.category-card:hover .category-count {
    color: var(--text-primary);
}

.category-arrow {
    position: absolute;
    bottom: 32px;
    right: 28px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    transform: translateX(-15px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0) scale(1);
    background: linear-gradient(135deg, var(--accent-color), #F7EE21);
    box-shadow: 0 6px 20px rgba(247, 238, 33, 0.4);
}

.category-arrow svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.category-card:hover .category-arrow svg {
    transform: translateX(3px);
}

/* ===================================
   Featured Products
   =================================== */
.featured-products {
    padding: 80px 0;
    background-color: var(--bg-white);
}

/* Single line truncation for product names in featured products section only */
.featured-products .product-name,
#featured-products-grid .product-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.category-section .section-header {
    margin-bottom: 70px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.category-section .section-title {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
    position: relative;
}

.category-section .section-subtitle {
    font-size: 19px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===================================
   Subcategory Carousel
   =================================== */
.subcategory-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.subcategory-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.subcategory-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.subcategory-nav:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: rgba(247, 238, 33, 0.3);
    color: var(--accent-color);
}

.subcategory-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    gap: 20px;
    overflow-x: auto;
    padding: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.subcategory-track::-webkit-scrollbar {
    display: none;
}

.subcategory-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 248, 248, 0.9));
    border-radius: 22px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    scroll-snap-align: start;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.subcategory-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0%, rgba(247, 238, 33, 0.10) 0%, transparent 55%),
                radial-gradient(circle at 90% 100%, rgba(0, 0, 0, 0.06) 0%, transparent 55%);
    opacity: 0;
    transition: transform 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

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

.subcategory-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
    border-color: rgba(247, 238, 33, 0.35);
}

.subcategory-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 55%),
                linear-gradient(135deg, #111827, #020617);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: var(--transition);
}

.subcategory-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    fill: none;
}

.subcategory-card:hover .subcategory-icon {
    background: linear-gradient(135deg, var(--accent-color), #F7EE21);
    transform: translateY(-2px) scale(1.05);
    box-shadow: none;
}

.subcategory-card:hover .subcategory-icon svg {
    stroke: var(--secondary-color);
}

.subcategory-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.4px;
}

/* ===================================
   Split Content Section
   =================================== */
.split-content-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.split-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(247, 238, 33, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundPulse 8s ease-in-out infinite;
}

.split-content-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(247, 238, 33, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(247, 238, 33, 0.04) 0%, transparent 30%);
    pointer-events: none;
    animation: backgroundRotate 20s linear infinite;
    z-index: 0;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes backgroundRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Floating animated shapes */
.split-content-section {
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(247, 238, 33, 0.06) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.04) 0%, transparent 20%);
    background-size: 400% 400%;
    animation: backgroundMove 15s ease infinite;
}

@keyframes backgroundMove {
    0% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Additional floating elements */
.split-content-wrapper::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(247, 238, 33, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float1 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.split-content-wrapper::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float2 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.5;
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    33% {
        transform: translate(-40px, 40px) scale(1.2);
        opacity: 0.7;
    }
    66% {
        transform: translate(30px, -20px) scale(0.8);
        opacity: 0.4;
    }
}

.split-content-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.split-content-left,
.split-content-right {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.split-content-item {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.split-content-right .split-content-item {
    transform: translateX(30px);
    animation: slideInRight 0.8s ease-out forwards;
}

.split-content-item:nth-child(1) { animation-delay: 0.1s; }
.split-content-item:nth-child(2) { animation-delay: 0.3s; }

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.split-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: var(--secondary-color);
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.split-content-item:hover .split-icon {
    transform: translateY(-5px) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-color), #F7EE21);
    box-shadow: 0 8px 24px rgba(247, 238, 33, 0.3);
}

.split-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.8px;
    transition: color 0.3s ease;
}

.split-content-item:hover .split-title {
    color: var(--accent-color);
}

.split-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.split-content-item .btn {
    width: auto;
    display: inline-block;
}

.split-image-center {
    position: relative;
    flex-shrink: 0;
}

.split-image-wrapper {
    position: relative;
    width: 500px;
    height: 600px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: scale(0.95);
    opacity: 0;
    animation: scaleIn 0.8s ease-out 0.2s forwards;
}

.split-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-image-wrapper:hover img {
    transform: scale(1.1);
}

.split-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.split-image-wrapper:hover .split-image-overlay {
    opacity: 0.8;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge.sale {
    background-color: var(--accent-color);
}

.product-badge.new {
    background-color: #10b981;
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background-color: var(--bg-light);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.product-category {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.product-warranty {
    font-size: 13px;
    color: #28a745;
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.rating-count {
    font-size: 14px;
    color: var(--text-secondary);
}

.product-info .btn-block {
    margin-top: auto;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.original-price {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
}

/* ===================================
   Image Gallery Slider
   =================================== */
.image-gallery-section {
    padding: 100px 0 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.image-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(247, 238, 33, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.image-gallery-section .container {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    background-color: var(--primary-color);
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    transition: opacity 0.8s ease;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.gallery-slide.active .gallery-image-wrapper img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: opacity 0.8s ease;
}

.gallery-content {
    text-align: center;
    color: var(--secondary-color);
    padding: 0 40px;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.gallery-slide.active .gallery-content {
    opacity: 1;
    transform: translateY(0);
}

.gallery-content h3 {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2.5px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #ffffff;
}

.gallery-content p {
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.3px;
    opacity: 1;
}

/* Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.gallery-nav::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.gallery-nav:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(247, 238, 33, 0.2);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.gallery-nav:hover::before {
    opacity: 1;
}

.gallery-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.gallery-prev {
    left: 40px;
}

.gallery-next {
    right: 40px;
}

.gallery-nav svg {
    width: 28px;
    height: 28px;
    stroke-width: 3;
    transition: transform 0.3s ease;
}

.gallery-nav:hover svg {
    transform: scale(1.1);
}

/* Dots Navigation */
.gallery-dots {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
    padding: 14px 28px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.gallery-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.gallery-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.gallery-dot:hover::before {
    opacity: 1;
}

.gallery-dot.active {
    background: var(--accent-color);
    width: 36px;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(247, 238, 33, 0.7), 0 4px 12px rgba(247, 238, 33, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   Video Hero Section
   =================================== */
.video-hero-section {
    position: relative;
    width: 100%;
    padding: 80px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    min-height: 600px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 500px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) saturate(0.9);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: var(--secondary-color);
    padding: 0 24px;
    max-width: 800px;
    width: 100%;
}

.video-title {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--secondary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.video-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--secondary-color);
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}


/* ===================================
   Statistics Section
   =================================== */
.statistics-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

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

.statistics-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    margin: 0;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background-color: var(--bg-white);
    border-radius: 24px;
    padding: 48px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #F7EE21);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(247, 238, 33, 0.3);
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    min-width: fit-content;
    padding: 0 2px;
}

.stat-card:hover .stat-number {
    background: linear-gradient(135deg, var(--accent-color), #F7EE21);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
    color: var(--text-primary);
}

/* ===================================
   Interactive FAQ Section
   =================================== */
.interactive-faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 20px;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(247, 238, 33, 0.1), var(--shadow-lg);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-color), #F7EE21);
    transition: height 0.4s ease;
}

.faq-item.active .faq-question::before {
    height: 100%;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: var(--secondary-color);
    border-radius: 12px;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, var(--accent-color), #F7EE21);
    transform: rotate(360deg) scale(1.1);
}

.faq-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
    margin: 0;
    transition: var(--transition);
}

.faq-item.active .faq-title {
    color: var(--accent-color);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: rotate(180deg);
}

.faq-toggle svg {
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 32px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 28px 100px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.2s;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects */
.faq-item:hover .faq-icon {
    transform: scale(1.05);
}

.faq-item:hover .faq-toggle {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* ===================================
   Promo Section
   =================================== */
.promo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #333333 100%);
    color: var(--secondary-color);
    text-align: center;
}

.promo-content h2 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.promo-content p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border-radius: 50%;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 15px;
    color: var(--text-secondary);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--secondary-color);
    padding-left: 4px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.newsletter-form .btn {
    padding: 12px 24px;
    white-space: nowrap;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

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

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .image-gallery-section {
        padding: 80px 0 0;
    }

    .image-gallery-section .container {
        margin-bottom: 50px;
    }

    .gallery-slider {
        height: 600px;
    }

    .gallery-content h3 {
        font-size: 48px;
    }

    .gallery-content p {
        font-size: 22px;
    }

    .gallery-nav {
        width: 56px;
        height: 56px;
    }

    .gallery-prev {
        left: 24px;
    }

    .gallery-next {
        right: 24px;
    }

    .gallery-dots {
        bottom: 32px;
    }

    .statistics-section {
        padding: 80px 0;
    }

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

    .statistics-grid {
        gap: 24px;
    }

    .stat-number {
        font-size: 56px;
    }

    .split-content-section {
        padding: 80px 0;
    }

    .split-content-wrapper {
        gap: 40px;
    }

    .split-image-wrapper {
        width: 400px;
        height: 500px;
    }

    .split-title {
        font-size: 24px;
    }

    .split-description {
        font-size: 15px;
    }

}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-md);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition);
        padding: 24px;
        border-top: 1px solid var(--border-color);
        z-index: 99999 !important;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        z-index: 99999 !important;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .nav-menu li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a::after {
        display: none;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 8px 0 0 16px;
        border-radius: 0;
        z-index: 99999 !important;
    }
    
    /* Ensure all navigation elements are above page content */
    .header {
        z-index: 99998 !important;
    }
    
    .nav-menu li,
    .nav-menu a {
        position: relative;
        z-index: 99999 !important;
    }

    .hero {
        height: 500px;
    }

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

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

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

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .categories-row {
        gap: 12px;
        justify-content: space-between;
    }

    .category-item-image {
        height: 180px;
        padding: 18px;
        margin-bottom: 6px;
    }

    .category-item-label {
        font-size: 14px;
    }

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

    .category-image-wrapper {
        padding-top: 70%;
    }

    .category-image {
        padding: 25px 20px;
    }

    .category-image img {
        transform: scale(0.9);
    }

    .category-card:hover .category-image img {
        transform: scale(1.05) translateY(-5px);
    }

    .category-content {
        padding: 24px 20px;
    }

    .category-name {
        font-size: 20px;
    }

    .category-arrow {
        width: 40px;
        height: 40px;
        bottom: 24px;
        right: 20px;
    }

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

    .stat-number {
        font-size: 48px;
    }

    .promo-content h2 {
        font-size: 36px;
    }

    .promo-content p {
        font-size: 16px;
    }

    .video-hero-section {
        padding: 60px 20px;
        min-height: 500px;
    }

    .video-container {
        height: 450px;
        border-radius: 24px;
    }

    .video-title {
        font-size: 48px;
    }

    .video-subtitle {
        font-size: 20px;
    }

    .image-gallery-section {
        padding: 60px 0 0;
    }

    .image-gallery-section .container {
        margin-bottom: 40px;
    }

    .gallery-slider {
        height: 500px;
    }

    .gallery-content h3 {
        font-size: 40px;
    }

    .gallery-content p {
        font-size: 18px;
    }

    .gallery-nav {
        width: 52px;
        height: 48px;
    }

    .gallery-prev {
        left: 16px;
    }

    .gallery-next {
        right: 16px;
    }

    .gallery-dots {
        bottom: 24px;
        padding: 10px 16px;
    }

    .split-content-section {
        padding: 60px 0;
    }

    .split-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .split-content-left,
    .split-content-right {
        gap: 40px;
    }

    .split-image-center {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .split-image-wrapper {
        width: 100%;
        max-width: 500px;
        height: 400px;
    }

    .split-content-item {
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .statistics-title {
        font-size: 36px;
    }

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

    .stat-card {
        padding: 40px 24px;
    }

    .stat-number {
        font-size: 48px;
        padding: 0 2px;
    }

    .stat-label {
        font-size: 16px;
    }

    .interactive-faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 24px;
        gap: 16px;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
    }

    .faq-title {
        font-size: 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 24px 24px 80px;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

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

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

    .categories-row {
        gap: 12px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .categories-row::-webkit-scrollbar {
        height: 4px;
    }

    .categories-row::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .categories-row::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 2px;
    }

    .category-item {
        min-width: 110px;
        max-width: 110px;
        flex-shrink: 0;
    }

    .category-item-image {
        width: 100%;
        max-width: 100%;
        height: 130px;
        padding: 18px;
        margin-bottom: 8px;
    }

    .category-item-label {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.4;
    }

    .category-section {
        padding: 50px 0;
    }

    .category-section .section-header {
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .category-image-wrapper {
        padding-top: 70%;
    }

    .category-content {
        padding: 24px 20px;
    }

    .category-name {
        font-size: 20px;
    }

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

    .stat-number {
        font-size: 40px;
    }

    .bento-product-info {
        padding: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .btn {
        width: 100%;
    }

    .video-hero-section {
        padding: 40px 16px;
        min-height: 400px;
    }

    .video-container {
        height: 350px;
        border-radius: 20px;
    }

    .video-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .video-subtitle {
        font-size: 18px;
    }

    .image-gallery-section {
        padding: 40px 0 0;
    }

    .image-gallery-section .container {
        margin-bottom: 30px;
    }

    .gallery-slider-wrapper {
        border-radius: 0;
    }

    .gallery-slider {
        height: 400px;
    }

    .gallery-content {
        padding: 0 24px;
    }

    .gallery-content h3 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .gallery-content p {
        font-size: 16px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-prev {
        left: 12px;
    }

    .gallery-next {
        right: 12px;
    }

    .gallery-nav svg {
        width: 20px;
        height: 20px;
    }

    .gallery-dots {
        bottom: 16px;
        padding: 8px 12px;
        gap: 8px;
    }

    .gallery-dot {
        width: 10px;
        height: 10px;
    }

    .gallery-dot.active {
        width: 24px;
    }

    .split-content-section {
        padding: 40px 0;
    }

    .split-content-wrapper {
        gap: 40px;
    }

    .split-content-left,
    .split-content-right {
        gap: 32px;
    }

    .split-image-wrapper {
        height: 350px;
        border-radius: 24px;
    }

    .split-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .split-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .split-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .split-content-item {
        max-width: 100%;
    }

    .interactive-faq-section {
        padding: 40px 0;
    }

    .faq-container {
        padding: 0 16px;
    }

    .faq-question {
        padding: 20px;
        gap: 12px;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
    }

    .faq-title {
        font-size: 16px;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 68px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

/* ===================================
   Warranty Page Styles
   =================================== */
.warranty-hero {
    padding: 120px 0 80px;
    color: var(--secondary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warranty-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.warranty-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.warranty-hero-slide.active {
    opacity: 1;
}

.warranty-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.warranty-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(45, 55, 72, 0.7) 100%);
    z-index: 2;
}

.warranty-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

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

.warranty-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.warranty-hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.warranty-hero-dot.active {
    background: var(--accent-color);
    border-color: rgba(255, 255, 255, 0.8);
    width: 32px;
    border-radius: 6px;
}

.warranty-check-section {
    padding: 80px 0 100px;
    background: var(--bg-white);
}

.warranty-check-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fafafa;
    border-radius: 24px;
    padding: 40px 36px 36px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.warranty-check-header {
    text-align: center;
    margin-bottom: 32px;
}

.warranty-check-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin: 0 0 4px;
    color: var(--text-primary);
}

.warranty-check-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.warranty-check-underline {
    display: inline-block;
    margin-top: 16px;
    width: 60px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-color), #F7EE21);
}

.warranty-check-form {
    margin-top: 10px;
}

.warranty-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
}

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

.warranty-form-group.full {
    grid-column: 1 / -1;
}

.warranty-form-group.half {
    grid-column: span 1;
}

.warranty-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.warranty-form-group label span {
    color: var(--accent-color);
}

/* Ensure form inputs are above dropdowns and can receive clicks */
.warranty-check-form,
.warranty-check-form *,
input,
textarea,
select,
button[type="submit"],
button[type="button"] {
    position: relative;
    z-index: 1002 !important;
    pointer-events: auto !important;
}

.warranty-form-group input[type="text"],
.warranty-form-group input[type="tel"],
.warranty-form-group input[type="email"],
.warranty-form-group input[type="date"],
.warranty-form-group input[type="file"] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    font-size: 14px;
    color: var(--text-primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.warranty-form-group input[type="file"] {
    padding: 8px 10px;
    background-color: #f9fafb;
}

/* Date Input Styling */
.warranty-form-group input[type="date"] {
    position: relative;
    padding-right: 42px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px 20px;
    padding-left: 14px;
    font-family: 'Inter', sans-serif;
}

/* Hide default calendar icon but keep functionality */
.warranty-form-group input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}

/* Hover state with icon color change */
.warranty-form-group input[type="date"]:hover {
    border-color: var(--accent-color);
    background-color: #fefefe;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23F7EE21' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
}

/* Focus state */
.warranty-form-group input[type="date"]:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23F7EE21' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
}

/* Date field text styling */
.warranty-form-group input[type="date"]::-webkit-datetime-edit-text {
    color: var(--text-primary);
    padding: 0 3px;
    font-weight: 400;
}

.warranty-form-group input[type="date"]::-webkit-datetime-edit-month-field,
.warranty-form-group input[type="date"]::-webkit-datetime-edit-day-field,
.warranty-form-group input[type="date"]::-webkit-datetime-edit-year-field {
    color: var(--text-primary);
    padding: 0 3px;
    font-weight: 500;
}

/* Highlight date parts on focus */
.warranty-form-group input[type="date"]:focus::-webkit-datetime-edit-month-field,
.warranty-form-group input[type="date"]:focus::-webkit-datetime-edit-day-field,
.warranty-form-group input[type="date"]:focus::-webkit-datetime-edit-year-field {
    background-color: rgba(247, 238, 33, 0.15);
    border-radius: 4px;
    color: var(--text-primary);
}

/* Firefox date input styling */
@-moz-document url-prefix() {
    .warranty-form-group input[type="date"] {
        padding-right: 14px;
    }
    
    .warranty-form-group input[type="date"]::-moz-placeholder {
        color: var(--text-secondary);
        opacity: 0.6;
    }
}

.warranty-form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 1px rgba(247, 238, 33, 0.25);
    background-color: #ffffff;
}

.warranty-helper-text {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

.warranty-submit-btn {
    margin-top: 26px;
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px 18px;
}

.warranty-hero-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.warranty-hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

.warranty-steps-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.warranty-steps-header {
    text-align: center;
    margin-bottom: 60px;
}

.warranty-steps-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0 0 12px;
    color: var(--text-primary);
}

.warranty-steps-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
}

.warranty-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.warranty-step-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
}

.warranty-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.warranty-step-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(247, 238, 33, 0.1), rgba(247, 238, 33, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid rgba(247, 238, 33, 0.1);
    position: relative;
}

.warranty-step-card:hover .warranty-step-icon {
    background: linear-gradient(135deg, var(--accent-color), #F7EE21);
    color: var(--secondary-color);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(247, 238, 33, 0.3);
    border-color: transparent;
}

.warranty-step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), #333);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--bg-white);
    z-index: 2;
}

.warranty-step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.3;
}

.warranty-step-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.warranty-overview-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.warranty-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.warranty-overview-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.warranty-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.warranty-overview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--accent-color), #F7EE21);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(247, 238, 33, 0.3);
}

.warranty-overview-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.warranty-overview-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.warranty-details-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.warranty-details-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.warranty-details-main h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.warranty-covered-list,
.warranty-not-covered-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.warranty-covered-item,
.warranty-not-covered-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.warranty-covered-item {
    border-left: 4px solid var(--accent-color);
}

.warranty-not-covered-item {
    border-left: 4px solid #e5e7eb;
}

.warranty-covered-item svg,
.warranty-not-covered-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.warranty-covered-item svg {
    color: var(--accent-color);
}

.warranty-not-covered-item svg {
    color: #9ca3af;
}

.warranty-covered-item h4,
.warranty-not-covered-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.warranty-covered-item p,
.warranty-not-covered-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.warranty-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.warranty-sidebar-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 32px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.warranty-sidebar-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.warranty-period {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin: 16px 0 8px;
    line-height: 1;
}

.warranty-sidebar-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.warranty-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.warranty-steps li {
    counter-increment: step-counter;
    padding-left: 40px;
    position: relative;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.warranty-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--accent-color), #F7EE21);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.warranty-faq-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.warranty-faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.warranty-faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.warranty-faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(247, 238, 33, 0.1);
}

.warranty-faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(247, 238, 33, 0.15);
}

.warranty-faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.warranty-faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.warranty-faq-question svg {
    flex-shrink: 0;
    margin-left: 20px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.warranty-faq-item.active .warranty-faq-question svg {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.warranty-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.warranty-faq-item.active .warranty-faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.warranty-faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive styles for warranty page */
@media (max-width: 1024px) {
    .warranty-details-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .warranty-details-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .warranty-hero {
        padding: 80px 0 60px;
        min-height: 400px;
    }

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

    .warranty-hero-subtitle {
        font-size: 18px;
    }

    .warranty-hero-dots {
        bottom: 20px;
    }

    .warranty-steps-section,
    .warranty-overview-section,
    .warranty-details-section,
    .warranty-faq-section {
        padding: 60px 0;
    }

    .warranty-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .warranty-steps-title {
        font-size: 32px;
    }

    .warranty-step-icon {
        width: 100px;
        height: 100px;
    }

    .warranty-step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .warranty-step-title {
        font-size: 18px;
    }

    .warranty-overview-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .warranty-details-main h2 {
        font-size: 28px;
    }

    .warranty-sidebar-card {
        padding: 24px;
    }

    .warranty-period {
        font-size: 36px;
    }

    .warranty-faq-question {
        padding: 20px;
    }

    .warranty-faq-question h3 {
        font-size: 16px;
    }

    .warranty-steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .warranty-step-card {
        padding: 32px 24px;
    }

    .warranty-step-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .warranty-step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
        top: -8px;
        right: -8px;
    }

    .warranty-steps-title {
        font-size: 28px;
    }

    .warranty-faq-item.active .warranty-faq-answer {
        padding: 0 20px 20px;
    }
}

/* ===================================
   Partner Page Styles
   =================================== */
.partner-hero {
    padding: 120px 0 80px;
    color: var(--secondary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.partner-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.partner-hero-slide.active {
    opacity: 1;
}

.partner-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.partner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.partner-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.partner-hero-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.partner-hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

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

.partner-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.partner-hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.partner-hero-dot.active {
    background: var(--accent-color);
    border-color: rgba(255, 255, 255, 0.8);
    width: 32px;
    border-radius: 6px;
}

.partner-benefits-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.partner-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.partner-benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.partner-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.partner-benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--accent-color), #F7EE21);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(247, 238, 33, 0.3);
}

.partner-benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.partner-benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.partner-form-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.partner-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 24px;
    padding: 48px 56px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
}

.partner-form-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.partner-form-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.partner-form-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.partner-form-underline {
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #F7EE21);
    margin: 0 auto;
    border-radius: 2px;
}

.partner-form {
    margin-top: 40px;
}

.partner-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.partner-form-group {
    display: flex;
    flex-direction: column;
}

.partner-form-group.full {
    grid-column: 1 / -1;
}

.partner-form-group.half {
    grid-column: span 1;
}

.partner-form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.partner-form-group label span {
    color: var(--accent-color);
}

.partner-form-group input,
.partner-form-group select,
.partner-form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-primary);
}

.partner-form-group input:focus,
.partner-form-group select:focus,
.partner-form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(247, 238, 33, 0.1);
}

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

.partner-form-group input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

.partner-helper-text {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 6px;
    line-height: 1.5;
}

.partner-submit-btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-faq-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.partner-faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.partner-faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.partner-faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(247, 238, 33, 0.1);
}

.partner-faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(247, 238, 33, 0.15);
}

.partner-faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.partner-faq-question svg {
    flex-shrink: 0;
    margin-left: 20px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.partner-faq-item.active .partner-faq-question svg {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.partner-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.partner-faq-item.active .partner-faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.partner-faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive styles for partner page */
@media (max-width: 1024px) {
    .partner-form-wrapper {
        padding: 40px 48px;
    }
}

@media (max-width: 768px) {
    .partner-hero {
        padding: 80px 0 60px;
        min-height: 400px;
    }

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

    .partner-hero-subtitle {
        font-size: 18px;
    }

    .partner-hero-dots {
        bottom: 20px;
    }

    .partner-benefits-section,
    .partner-form-section,
    .partner-faq-section {
        padding: 60px 0;
    }

    .partner-benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .partner-form-wrapper {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .partner-form-title {
        font-size: 32px;
    }

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

    .partner-form-group.half {
        grid-column: 1;
    }

    .partner-faq-question {
        padding: 20px;
    }

    .partner-faq-question h3 {
        font-size: 16px;
    }

    .partner-faq-item.active .partner-faq-answer {
        padding: 0 20px 20px;
    }
}

/* ===================================
   About Page Styles
   =================================== */
.about-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    filter: brightness(0.7) saturate(1.1);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--secondary-color);
    max-width: 900px;
    padding: 0 24px;
}

.about-hero-title {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.about-hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 48px;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-meta {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 32px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-hero-meta-item {
    min-width: 160px;
    text-align: center;
    position: relative;
    padding: 0 30px;
}

.about-hero-meta-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.about-hero-meta-item:last-child::after {
    display: none;
}

.about-hero-meta-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
    line-height: 1.2;
}

.about-hero-meta-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);

.about-hero-meta-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
}

.about-hero-media {
    display: flex;
    justify-content: flex-end;
}

.about-hero-card {
    position: relative;
    width: 100%;
    max-width: 460px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.25);
}

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

.about-hero-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.2));
}

.about-hero-card-content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 28px 28px 26px;
    color: var(--secondary-color);
}

.about-hero-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-hero-card-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* New Redesigned About Story Section */
.about-story-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.about-story-section::before,
.about-story-section::after {
    display: none;
}

.about-story-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.about-story-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.about-story-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-story-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-story-text-card.premium-v2 {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(252, 252, 252, 0.97) 100%),
        radial-gradient(circle at top right, rgba(247, 238, 33, 0.03) 0%, transparent 60%);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 52px 48px;
    border: 2px solid rgba(0, 0, 0, 0.04);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.about-story-text-card.premium-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--accent-color) 25%,
        #F7EE21 50%,
        var(--accent-color) 75%,
        transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
}

.about-story-text-card.premium-v2::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(247, 238, 33, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.about-story-card-header {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.about-story-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(247, 238, 33, 0.12), rgba(247, 238, 33, 0.06));
    border: 1.5px solid rgba(247, 238, 33, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
}

.about-story-divider {
    margin-top: 32px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 0, 0, 0.08) 20%,
        rgba(0, 0, 0, 0.08) 80%,
        transparent 100%);
    position: relative;
}

.about-story-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.about-story-lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.about-story-description {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0;
}

.about-story-principles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-principle-card.premium-v2 {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 252, 252, 0.96) 100%),
        radial-gradient(circle at top left, rgba(247, 238, 33, 0.04) 0%, transparent 50%);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 32px 36px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: flex-start;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.05),
        0 1px 4px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.about-principle-card.premium-v2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color), #F7EE21, var(--accent-color));
    background-size: 100% 200%;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
}

.about-principle-card.premium-v2:hover {
    transform: translateX(12px) translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(247, 238, 33, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(247, 238, 33, 0.25);
}

.about-principle-card.premium-v2:hover::before {
    transform: scaleY(1);
}

.about-principle-number {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(247, 238, 33, 0.08), rgba(247, 238, 33, 0.03));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.about-principle-card.premium-v2:hover .about-principle-number {
    opacity: 0.6;
}

.about-principle-icon-wrapper {
    position: relative;
    grid-row: 1 / 3;
}

.about-principle-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: 
        linear-gradient(135deg, rgba(247, 238, 33, 0.15), rgba(247, 238, 33, 0.08)),
        radial-gradient(circle at top left, rgba(247, 238, 33, 0.2), transparent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(247, 238, 33, 0.15);
    position: relative;
    z-index: 1;
}

.about-principle-card.premium-v2:hover .about-principle-icon {
    background: linear-gradient(135deg, var(--accent-color), #F7EE21);
    color: var(--secondary-color);
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 
        0 8px 24px rgba(247, 238, 33, 0.4),
        0 0 0 8px rgba(247, 238, 33, 0.1);
    border-color: transparent;
}

.about-principle-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(247, 238, 33, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, 30%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.about-principle-card.premium-v2:hover .about-principle-accent {
    opacity: 1;
    transform: translate(20%, 20%) scale(1.2);
}

.about-principle-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.about-principle-content p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

.about-story-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-stat-card.premium-v2 {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(252, 252, 252, 0.97) 100%),
        radial-gradient(ellipse at top right, rgba(247, 238, 33, 0.06) 0%, transparent 60%);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 42px 38px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-stat-card-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 238, 33, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%) scale(0.8);
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.about-stat-card.premium-v2:hover .about-stat-card-bg {
    transform: translate(20%, -20%) scale(1.2);
    opacity: 1;
}

.about-stat-card.premium-v2:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(247, 238, 33, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(247, 238, 33, 0.3);
}

.about-stat-icon-wrapper {
    position: relative;
    width: fit-content;
    z-index: 1;
}

.about-stat-icon {
    width: 72px;
    height: 72px;
    background: 
        linear-gradient(135deg, rgba(247, 238, 33, 0.18), rgba(247, 238, 33, 0.1)),
        radial-gradient(circle at top left, rgba(247, 238, 33, 0.25), transparent);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2.5px solid rgba(247, 238, 33, 0.2);
    position: relative;
    z-index: 1;
}

.about-stat-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(247, 238, 33, 0.3) 0%, transparent 70%);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    filter: blur(20px);
    z-index: 0;
}

.about-stat-card.premium-v2:hover .about-stat-icon {
    background: linear-gradient(135deg, var(--accent-color), #F7EE21);
    color: var(--secondary-color);
    transform: scale(1.2) rotate(-10deg);
    box-shadow: 
        0 12px 32px rgba(247, 238, 33, 0.5),
        0 0 0 12px rgba(247, 238, 33, 0.15);
    border-color: transparent;
}

.about-stat-card.premium-v2:hover .about-stat-icon-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
}

.about-stat-corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(247, 238, 33, 0.15), transparent);
    border-radius: 0 28px 0 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.about-stat-card.premium-v2:hover .about-stat-corner-accent {
    opacity: 1;
}

.about-stat-content {
    position: relative;
    z-index: 1;
}

.about-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    opacity: 0.8;
}

.about-stat-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 16px;
    background: linear-gradient(135deg, var(--accent-color), #F7EE21, var(--accent-color));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1.1;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.about-stat-card.premium-v2 p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.about-stat-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(247, 238, 33, 0.3) 20%,
        var(--accent-color) 50%,
        rgba(247, 238, 33, 0.3) 80%,
        transparent 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 28px 28px;
}

.about-stat-card.premium-v2:hover .about-stat-decoration {
    transform: scaleX(1);
}

.about-story-content-new {
    max-width: 1000px;
    margin: 0 auto;
}

.about-story-text-block {
    margin-bottom: 60px;
}

.about-story-badge-new {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.about-story-lead-new {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-story-description-new {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-secondary);
}

.about-story-principles-new {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-principle-item-new {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    padding-left: 20px;
}

.about-principle-item-new::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-color), transparent);
}

.about-principle-number-new {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 32px;
    margin-top: 2px;
}

.about-principle-icon-new {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    opacity: 0.6;
}

.about-principle-text-new h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.about-principle-text-new p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.about-story-stats-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-stat-item-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-stat-icon-new {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    opacity: 0.8;
}

.about-stat-info-new {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-stat-number-new {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.about-stat-label-new {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.about-stat-info-new p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-top: 8px;
    margin-bottom: 0;
}

/* New Redesigned Values Section */
.about-values-section-new {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-values-header-new {
    text-align: center;
    margin-bottom: 60px;
}

.about-values-title-new {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.about-values-subtitle-new {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-values-list-new {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-value-item-new {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.about-value-item-new:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-value-item-new h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.about-value-item-new p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0;
}

/* Version 3 - Two Column Layout */
.about-story-section-v3 {
    padding: 100px 0;
    background: var(--bg-white);
}

/* Redesigned About Story Section */
.about-story-redesign {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: visible;
}

.about-story-redesign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Header */
.about-story-header-redesign {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
}

.about-story-kicker-redesign {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(247, 238, 33, 0.1);
    border-radius: 20px;
}

.about-story-title-redesign {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.1;
}

.about-story-subtitle-redesign {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 400;
    margin: 0;
}

/* Foundation Card */
.about-foundation-card-redesign {
    max-width: 1000px;
    margin: 0 auto 80px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    transition: none;
}

.about-foundation-label-redesign {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.about-foundation-content-redesign {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-foundation-text-redesign {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0;
}

/* Principles Grid */
.about-principles-grid-redesign {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-principle-card-redesign {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    transition: none;
    position: relative;
    overflow: visible;
}

.about-principle-icon-wrapper-redesign {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.about-principle-number-redesign {
    display: none;
}

.about-principle-icon-redesign {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    color: var(--text-primary);
    margin-right: 0;
}

.about-principle-title-redesign {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0;
    line-height: 1.4;
}

.about-principle-desc-redesign {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Achievements Section */
.about-achievements-section-redesign {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-achievement-card-redesign {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 40px 32px;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-achievement-card-redesign::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 238, 33, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-achievement-card-redesign:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-achievement-card-redesign:hover::before {
    opacity: 1;
}

.about-achievement-icon-redesign {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    margin-bottom: 24px;
    color: var(--accent-color);
    position: relative;
    z-index: 1;
}

.about-achievement-content-redesign {
    position: relative;
    z-index: 1;
}

.about-achievement-number-redesign {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 12px;
}

.about-achievement-title-redesign {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.about-achievement-text-redesign {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Modern About Story Section */
.about-story-section-modern {
    padding: 100px 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), #f3f4f6);
}

.about-story-header-modern {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.about-story-kicker-modern {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.about-story-title-modern {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1.4px;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.about-story-subtitle-modern {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.about-story-grid-modern {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto 56px;
}

.about-story-panel-modern {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 32px 32px 34px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.about-story-panel-title-modern {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.about-story-panel-modern p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.about-story-stats-modern {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-story-stat-card-modern {
    background: #0f172a;
    color: #f9fafb;
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.5);
}

.about-story-stat-label-modern {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.75;
}

.about-story-stat-value-modern {
    display: block;
    font-size: 34px;
    font-weight: 800;
    margin: 6px 0 4px;
}

.about-story-stat-card-modern p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
    margin: 0;
}

.about-story-pillars-modern {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.about-story-pillar-modern {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 22px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-story-pillar-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(249, 115, 22, 0.4);
}

.about-story-pillar-number-modern {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-story-pillar-content-modern h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text-primary);
}

.about-story-pillar-content-modern p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.about-story-header-v3 {
    text-align: center;
    margin-bottom: 70px;
}

.about-story-title-v3 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.about-story-subtitle-v3 {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-story-layout-v3 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-story-left-v3 {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-foundation-v3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-foundation-label-v3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
}

.about-foundation-text-v3 {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 0;
}

.about-principles-grid-v3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.about-principle-box-v3 {
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: var(--bg-white);
    transition: all 0.3s ease;
}

.about-principle-box-v3:hover {
    border-color: rgba(247, 238, 33, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.about-principle-header-v3 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.about-principle-num-v3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 36px;
}

.about-principle-icon-box-v3 {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 238, 33, 0.1);
    border-radius: 8px;
    color: var(--accent-color);
}

.about-principle-title-v3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.about-principle-desc-v3 {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.about-story-right-v3 {
    display: flex;
    align-items: flex-start;
}

.about-stats-column-v3 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-stat-box-v3 {
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: var(--bg-white);
    display: flex;
    gap: 24px;
    transition: all 0.3s ease;
}

.about-stat-box-v3:hover {
    border-color: rgba(247, 238, 33, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.about-stat-icon-v3 {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 238, 33, 0.1);
    border-radius: 12px;
    color: var(--accent-color);
}

.about-stat-content-v3 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-stat-number-v3 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.about-stat-label-v3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.about-stat-text-v3 {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-top: 4px;
    margin-bottom: 0;
}

/* Values Section V3 */
.about-values-section-v3 {
    padding: 80px 0;
    background: #ffffff;
}

.about-values-header-v3 {
    text-align: left;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.about-values-title-v3 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: #2d2d2d;
    line-height: 1.2;
}

.about-values-subtitle-v3 {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 100%;
    margin: 0;
    line-height: 1.6;
}

.about-values-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-value-card-v3 {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: none;
}

.about-value-card-v3:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.about-value-title-v3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0;
    line-height: 1.4;
}

.about-value-text-v3 {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.about-values-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-values-grid {
    max-width: 1100px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.about-value-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.about-value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.about-cta-section {
    padding: 80px 0;
    background: #ffffff;
    color: var(--text-primary);
}

.about-cta-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-cta-text {
    text-align: left;
}

.about-cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d2d2d;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.about-cta-text p {
    font-size: 16px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-cta-actions .btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.about-cta-actions .btn-primary {
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
}

.about-cta-actions .btn-primary:hover {
    background: #333333;
    border-color: #333333;
}

.about-cta-actions .btn-secondary {
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}

.about-cta-actions .btn-secondary:hover {
    background: #f5f5f5;
    border-color: #000000;
}

@media (max-width: 1024px) {
    .about-hero {
        height: 500px;
    }

    .about-hero-title {
        font-size: 56px;
    }

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

    .about-hero-meta {
        gap: 40px;
    }

    .about-hero-meta-item {
        min-width: 140px;
        padding: 0 25px;
    }

    .about-hero-meta-number {
        font-size: 36px;
    }

    .about-story-layout-v3 {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-story-title-v3 {
        font-size: 40px;
    }

    .about-values-grid-v3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-story-title-editorial {
        font-size: 48px;
    }

    .about-story-achievements-editorial {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    /* Redesigned Section - Tablet */
    .about-story-title-redesign {
        font-size: 44px;
    }

    .about-story-subtitle-redesign {
        font-size: 18px;
    }

    .about-foundation-card-redesign {
        padding: 40px;
    }

    .about-principles-grid-redesign {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-achievements-section-redesign {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .about-story-section-v3 {
        padding: 80px 0;
    }

    .about-story-title-v3 {
        font-size: 36px;
    }

    .about-story-subtitle-v3 {
        font-size: 16px;
    }

    .about-story-layout-v3 {
        gap: 50px;
    }

    .about-story-left-v3 {
        gap: 40px;
    }

    .about-foundation-text-v3 {
        font-size: 16px;
    }

    .about-principles-grid-v3 {
        gap: 24px;
    }

    .about-principle-box-v3 {
        padding: 24px;
    }

    .about-stats-column-v3 {
        gap: 24px;
    }

    .about-stat-box-v3 {
        padding: 24px;
        flex-direction: column;
        gap: 20px;
    }

    .about-stat-icon-v3 {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .about-stat-number-v3 {
        font-size: 32px;
    }

    .about-values-section-v3 {
        padding: 80px 0;
    }

    .about-values-title-v3 {
        font-size: 36px;
    }

    .about-values-subtitle-v3 {
        font-size: 16px;
    }

    .about-values-grid-v3 {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-value-title-v3 {
        font-size: 18px;
    }

    .about-story-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-story-title {
        font-size: 40px;
    }

    /* Redesigned Section - Mobile */
    .about-story-redesign {
        padding: 80px 0;
    }

    .about-story-header-redesign {
        margin-bottom: 60px;
    }

    .about-story-title-redesign {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .about-story-subtitle-redesign {
        font-size: 17px;
    }

    .about-foundation-card-redesign {
        padding: 32px 24px;
        margin-bottom: 60px;
        border-radius: 20px;
    }

    .about-foundation-text-redesign {
        font-size: 17px;
    }

    .about-principles-grid-redesign {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }

    .about-principle-card-redesign {
        padding: 32px 24px;
    }

    .about-principle-title-redesign {
        font-size: 20px;
    }

    .about-achievements-section-redesign {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-achievement-card-redesign {
        padding: 32px 24px;
    }

    .about-achievement-number-redesign {
        font-size: 40px;
    }

    .about-achievement-title-redesign {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 500px;
    }

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

    .about-hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .about-hero-meta {
        gap: 24px;
        margin-top: 24px;
    }

    .about-hero-meta-item {
        min-width: 100px;
        padding: 0 15px;
    }

    .about-hero-meta-item::after {
        height: 40px;
    }

    .about-hero-meta-number {
        font-size: 28px;
    }

    .about-hero-meta-label {
        font-size: 12px;
    }

    .about-story-title {
        font-size: 36px;
    }

    .about-story-subtitle {
        font-size: 16px;
    }

    .about-story-lead-new {
        font-size: 18px;
    }

    .about-story-description-new {
        font-size: 16px;
    }

    .about-story-section-editorial {
        padding: 80px 0;
    }

    .about-story-title-editorial {
        font-size: 36px;
    }

    .about-story-subtitle-editorial {
        font-size: 16px;
    }

    .about-story-main-editorial {
        gap: 50px;
    }

    .about-story-lead-editorial {
        font-size: 17px;
    }

    .about-story-body-editorial {
        font-size: 16px;
    }

    .about-story-section-editorial {
        padding: 60px 0 80px;
    }

    .about-values-title-v3 {
        font-size: 36px;
    }

    .about-cta-text h2 {
        font-size: 36px;
    }

    .about-story-features-editorial {
        gap: 28px;
        padding: 40px 0;
    }

    .about-feature-item-editorial {
        gap: 24px;
    }

    .about-feature-title-editorial {
        font-size: 20px;
    }

    .about-story-achievements-editorial {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-achievement-number-editorial {
        font-size: 28px;
    }

    .about-achievement-label-editorial {
        font-size: 15px;
    }

    .about-story-principles-new {
        gap: 24px;
        margin-bottom: 60px;
    }

    .about-principle-item-new {
        gap: 16px;
        padding-left: 16px;
    }

    .about-principle-text-new h4 {
        font-size: 18px;
    }

    .about-story-stats-new {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 40px;
    }

    .about-stat-number-new {
        font-size: 32px;
    }

    .about-values-section-new {
        padding: 80px 0;
    }

    .about-values-title-new {
        font-size: 36px;
    }

    .about-values-subtitle-new {
        font-size: 16px;
    }

    .about-values-list-new {
        gap: 32px;
    }

    .about-value-item-new {
        padding-bottom: 32px;
    }

    .about-value-item-new h3 {
        font-size: 22px;
    }

    .about-story-header {
        margin-bottom: 40px;
    }

    .about-story-title {
        font-size: 36px;
    }

    .about-story-subtitle {
        font-size: 16px;
    }

    .about-story-text-card.premium-v2 {
        padding: 36px 28px;
    }

    .about-story-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .about-story-lead {
        font-size: 16px;
    }

    .about-principle-card.premium-v2 {
        padding: 28px 24px;
        gap: 20px;
    }

    .about-principle-number {
        font-size: 56px;
        top: 20px;
        right: 24px;
    }

    .about-principle-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .about-principle-icon svg {
        width: 24px;
        height: 24px;
    }

    .about-principle-content h4 {
        font-size: 18px;
    }

    .about-stat-card.premium-v2 {
        padding: 32px 28px;
    }

    .about-stat-icon {
        width: 64px;
        height: 64px;
    }

    .about-stat-icon svg {
        width: 36px;
        height: 36px;
    }

    .about-stat-number {
        font-size: 40px;
    }

    .about-cta-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 450px;
    }

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

    .about-hero-subtitle {
        font-size: 16px;
    }

    .about-hero-meta {
        flex-direction: column;
        gap: 24px;
    }

    .about-hero-meta-item {
        padding: 0;
        min-width: auto;
    }

    .about-hero-meta-item::after {
        display: none;
    }

    .about-hero-meta-number {
        font-size: 32px;
    }

    .about-story-section,
    .about-values-section,
    .about-cta-section {
        padding: 60px 0;
    }

    .about-cta-text h2 {
        font-size: 36px;
    }

    .about-cta-text p {
        font-size: 16px;
    }

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

    .about-cta-actions .btn {
        width: 100%;
        text-align: center;
    }

    .about-story-content-new {
        max-width: 100%;
    }

    .about-story-stats-new {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-principle-item-new {
        gap: 20px;
    }

    .about-values-list-new {
        gap: 32px;
    }

    .about-value-item-new {
        padding-bottom: 32px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-wrapper {
        flex-direction: column;
        text-align: left;
    }
}

/* ===================================
   Support Page Styles
   =================================== */

/* Support Hero Section */
.support-hero {
    padding: 120px 0 80px;
    color: var(--secondary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.support-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.support-hero-slide.active {
    opacity: 1;
}

.support-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.support-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(45, 55, 72, 0.7) 100%);
    z-index: 2;
}

.support-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

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

.support-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.support-hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.support-hero-dot.active {
    background: var(--accent-color);
    border-color: rgba(255, 255, 255, 0.8);
    width: 32px;
    border-radius: 6px;
}

.support-hero-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.support-hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

/* Support Contact Methods Section */
.support-contact-methods {
    padding: 100px 0;
    background: var(--bg-white);
}

.support-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.support-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.support-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(247, 238, 33, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.support-contact-card:hover::before {
    opacity: 1;
}

.support-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--accent-color), #F7EE21);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(247, 238, 33, 0.2);
}

.support-contact-card:hover .support-contact-icon {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 8px 24px rgba(247, 238, 33, 0.4);
}

.support-contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.support-contact-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.support-contact-card .btn {
    width: 100%;
    justify-content: center;
}

/* Support Form Section */
.support-form-section {
    padding: 80px 0 100px;
    background: var(--bg-light);
}

.support-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fafafa;
    border-radius: 24px;
    padding: 40px 36px 36px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.support-form-header {
    text-align: center;
    margin-bottom: 32px;
}

.support-form-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin: 0 0 4px;
    color: var(--text-primary);
}

.support-form-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.support-form-underline {
    display: inline-block;
    margin-top: 16px;
    width: 60px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-color), #F7EE21);
}

.support-form {
    margin-top: 10px;
}

.support-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
}

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

.support-form-group.full {
    grid-column: 1 / -1;
}

.support-form-group.half {
    grid-column: span 1;
}

.support-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.support-form-group label span {
    color: var(--accent-color);
}

.support-form-group input[type="text"],
.support-form-group input[type="tel"],
.support-form-group input[type="email"],
.support-form-group select,
.support-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    font-size: 14px;
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.support-form-group select {
    cursor: pointer;
}

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

.support-form-group input:focus,
.support-form-group select:focus,
.support-form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 1px rgba(247, 238, 33, 0.25);
    background-color: #ffffff;
}

.support-submit-btn {
    margin-top: 26px;
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px 18px;
}

/* Support Resources Section */
.support-resources-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.support-resources-section .section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
    display: block;
}

.support-resources-section .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 40px;
}

.support-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.support-resource-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
    border-radius: 20px;
    padding: 32px;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.support-resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.support-resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(247, 238, 33, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.support-resource-card:hover::before {
    opacity: 1;
}

.support-resource-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(247, 238, 33, 0.1), rgba(247, 238, 33, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(247, 238, 33, 0.1);
}

.support-resource-card:hover .support-resource-icon {
    background: linear-gradient(135deg, var(--accent-color), #F7EE21);
    color: var(--secondary-color);
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(247, 238, 33, 0.3);
    border-color: transparent;
}

.support-resource-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.support-resource-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.support-resource-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.support-resource-link:hover {
    color: #F7EE21;
    gap: 8px;
}

/* Support FAQ Section */
.support-faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.support-faq-section .section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
    display: block;
}

.support-faq-section .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 40px;
}

.support-faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.support-faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.support-faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(247, 238, 33, 0.1);
}

.support-faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(247, 238, 33, 0.15);
}

.support-faq-item.active .support-faq-question {
    background: rgba(247, 238, 33, 0.03);
}

.support-faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.support-faq-question:hover {
    background: rgba(247, 238, 33, 0.02);
}

.support-faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.support-faq-question svg {
    flex-shrink: 0;
    margin-left: 20px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.support-faq-item.active .support-faq-question svg {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.support-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.support-faq-item.active .support-faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.support-faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Support Hours Section */
.support-hours-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.support-hours-content {
    max-width: 600px;
    margin: 0 auto;
}

.support-hours-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    border: 2px solid var(--border-color);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.support-hours-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.support-hours-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.support-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.support-hours-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(247, 238, 33, 0.1);
    transform: translateX(4px);
}

.support-hours-day {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.support-hours-time {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.support-hours-note {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Responsive Styles for Support Page */
@media (max-width: 768px) {
    .support-hero {
        padding: 100px 0 60px;
        min-height: 400px;
    }

    .support-hero-title {
        font-size: 36px;
    }

    .support-hero-subtitle {
        font-size: 16px;
    }

    .support-contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .support-form-grid {
        grid-template-columns: 1fr;
    }

    .support-form-wrapper {
        padding: 32px 24px;
    }

    .support-resources-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .support-hours-card {
        padding: 32px 24px;
    }

    .support-hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .support-hero-title {
        font-size: 28px;
    }

    .support-form-title {
        font-size: 24px;
    }

    .support-hours-card h2 {
        font-size: 24px;
    }
}

