/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --primary-light: #fef2f2;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-red { color: var(--primary); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.hidden { display: none; }
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
@keyframes bounce {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
    50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-fade-in { animation: fadeIn 0.8s ease-out; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-bounce { animation: bounce 1s infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

.animate-float-delay-1 { animation: float 3.5s ease-in-out infinite 0.5s; }
.animate-float-delay-2 { animation: float 4s ease-in-out infinite 1s; }
.animate-float-delay-3 { animation: float 4.5s ease-in-out infinite 1.5s; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}
.logo-icon span {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* CTA Button */
.btn-primary {
    padding: 0.625rem 0.5rem;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}
.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-gradient:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-700);
}
.mobile-menu {
    display: none;
    background: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
}
.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.3s ease;
}
.mobile-menu a:hover {
    color: var(--primary);
}
.mobile-menu .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #fef2f2, #fff7ed, #fefce8);
    overflow: hidden;
    padding-top: 80px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0;
}
.hero-content {
    text-align: left;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fee2e2;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
.hero-badge .icon {
    width: 1rem;
    height: 1rem;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}
.hero-title .underline-svg {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    max-width: 36rem;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 24rem;
}
.hero-stats .stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
}
.hero-stats .stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Hero Images */
.hero-images {
    position: relative;
    height: 600px;
}
.hero-main-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.hero-main-image .image-wrapper {
    position: relative;
}
.hero-main-image .glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #f87171, #fb923c);
    border-radius: 1.5rem;
    filter: blur(40px);
    opacity: 0.3;
}
.hero-main-image img {
    position: relative;
    width: 288px;
    height: 288px;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    border: 4px solid var(--white);
}
.hero-main-image .badge-new {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: var(--primary);
    color: var(--white);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-xl);
}

.hero-float-1 {
    position: absolute;
    top: 2rem;
    right: 3rem;
}
.hero-float-1 img {
    width: 176px;
    height: 176px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
    transform: rotate(6deg);
    transition: transform 0.3s ease;
}
.hero-float-1 img:hover {
    transform: rotate(0deg);
}

.hero-float-2 {
    position: absolute;
    bottom: 4rem;
    left: 2rem;
}
.hero-float-2 img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
    transform: rotate(-6deg);
    transition: transform 0.3s ease;
}
.hero-float-2 img:hover {
    transform: rotate(0deg);
}

.hero-float-3 {
    position: absolute;
    top: 6rem;
    left: 1rem;
}
.hero-float-3 img {
    width: 128px;
    height: 128px;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.hero-float-4 {
    position: absolute;
    bottom: 8rem;
    right: 1rem;
}
.hero-float-4 img {
    width: 144px;
    height: 144px;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    transform: rotate(3deg);
}

.hero-bg-blob-1 {
    position: absolute;
    top: 25%;
    left: 25%;
    width: 96px;
    height: 96px;
    background: #fde047;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.4;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.hero-bg-blob-2 {
    position: absolute;
    bottom: 33%;
    right: 33%;
    width: 128px;
    height: 128px;
    background: #fca5a5;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.4;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1s infinite;
    color: var(--primary);
}

/* ===== SECTION ===== */
.section {
    padding: 5rem 0;
}
.section-white { background: var(--white); }
.section-light { background: var(--gray-50); }
.section-gradient {
    background: linear-gradient(to bottom right, var(--gray-50), #fef2f2, #fff7ed);
}
.section-red {
    background: linear-gradient(to bottom right, var(--primary), #b91c1c, #991b1b);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header .badge {
    display: inline-block;
    background: #fee2e2;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}
.section-header h2 .highlight {
    color: var(--primary);
}
.section-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

.section-header-light h2 {
    color: var(--white);
}
.section-header-light p {
    color: #fca5a5;
}
.section-header-light .badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image .bg-shape {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #fecaca, #fed7aa);
    border-radius: 1.5rem;
    transform: rotate(3deg);
}
.about-image img {
    position: relative;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}
.about-image img:hover {
    transform: rotate(0deg);
}
.about-image .cert-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    border: 4px solid #fecaca;
}
.about-image .cert-badge-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.about-image .cert-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image .cert-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}
.about-image .cert-label {
    font-weight: 700;
    color: var(--gray-900);
}
.about-image .cert-sub {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
}
.about-feature .icon {
    color: var(--primary);
}
.about-feature .icon svg {
    width: 24px;
    height: 24px;
}

/* ===== PRODUCTS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.product-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s ease;
}
.product-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-0.5rem);
}
.product-card-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #fef2f2, #fff7ed);
}
.product-card-image img {
    width: 100%;
    height: 256px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img {
    transform: scale(1.1);
}
.product-card .badge-new {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    box-shadow: var(--shadow-lg);
}
.product-card-body {
    padding: 1.5rem;
}
.product-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}
.product-card:hover .product-card-body h3 {
    color: var(--primary);
}
.product-card-body p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 1rem;
}
.product-card-sizes span {
    font-size: 0.75rem;
    background: var(--gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}
.product-card .btn-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.product-card .btn-details:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

/* ===== WHY CHOOSE ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.why-card {
    position: relative;
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.5s ease;
    overflow: hidden;
}
.why-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-0.5rem);
}
.why-card .gradient-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.why-card:hover .gradient-bg {
    opacity: 0.1;
}
.why-card .icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    color: var(--white);
}
.why-card:hover .icon-wrapper {
    transform: scale(1.1);
}
.why-card .icon-wrapper svg {
    width: 48px;
    height: 48px;
}
.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.why-card p {
    color: var(--gray-600);
}

/* ===== QUALITY PROMISE ===== */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}
.quality-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}
.quality-card:hover {
    background: rgba(255, 255, 255, 0.2);
}
.quality-card .icon {
    margin-bottom: 1rem;
}
.quality-card .icon svg {
    width: 32px;
    height: 32px;
}
.quality-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.quality-card p {
    color: #fca5a5;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
}
.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}
.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: #facc15;
    color: #facc15;
}
.testimonial-text {
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.625;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}
.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fecaca;
}
.testimonial-author .name {
    font-weight: 700;
    color: var(--gray-900);
}
.testimonial-author .location {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== DISTRIBUTOR CTA ===== */
.cta-box {
    position: relative;
    background: linear-gradient(to right, var(--primary), #b91c1c, #ea580c);
    border-radius: 1.5rem;
    padding: 3rem 4rem;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}
.cta-box .pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.3) 1px, transparent 0px);
    background-size: 30px 30px;
}
.cta-box .content {
    position: relative;
    z-index: 10;
}
.cta-box .icon {
    margin: 0 auto 1.5rem;
}
.cta-box .icon svg {
    width: 64px;
    height: 64px;
}
.cta-box h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.cta-box p {
    font-size: 1.25rem;
    color: #fca5a5;
    max-width: 42rem;
    margin: 0 auto 2rem;
}
.cta-box .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cta-box .btn-white:hover {
    box-shadow: var(--shadow-2xl);
    transform: scale(1.05);
}

/* ===== FAQ ===== */
.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: var(--primary);
}
.faq-question .arrow {
    transition: transform 0.2s ease;
}
.faq-question.active .arrow {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open {
    max-height: 200px;
    padding: 0 1.5rem 1rem;
}
.faq-answer p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ===== NEWSLETTER ===== */
.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 42rem;
    margin: 0 auto;
}
.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--gray-300);
    border-radius: 9999px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}
.newsletter-form input:focus {
    border-color: var(--primary);
}
.newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 9999px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.newsletter-form button:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.footer-brand .logo-text {
    color: var(--white);
}
.footer-brand p {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}
.footer h3 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}
.footer ul {
    list-style: none;
}
.footer ul li {
    margin-bottom: 0.5rem;
}
.footer ul li a {
    font-size: 0.875rem;
    transition: color 0.3s ease;
}
.footer ul li a:hover {
    color: var(--primary);
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.footer-contact li .icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: var(--primary);
}
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.footer-social a:hover {
    background: var(--primary);
}
.footer-social a svg {
    width: 16px;
    height: 16px;
}
.footer-bottom {
    border-top: 1px solid var(--gray-800);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(to bottom right, var(--gray-50), #fef2f2, #fff7ed);
    text-align: center;
}
.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
}
.page-hero h1 .highlight {
    color: var(--primary);
}
.page-hero p {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0.5rem auto 0;
}

/* ===== ABOUT PAGE ===== */
.about-page-content {
    max-width: 48rem;
    margin: 0 auto;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
}
.about-page-content p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.625;
    margin-bottom: 1rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}
.gallery-item {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}
.gallery-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}
.gallery-item img {
    width: 100%;
    height: 256px;
    object-fit: cover;
}
.gallery-item .info {
    padding: 1rem;
}
.gallery-item .info h3 {
    font-weight: 600;
    color: var(--gray-900);
}
.gallery-item .info p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ===== BLOGS ===== */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}
.blog-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}
.blog-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px);
}
.blog-card img {
    width: 100%;
    height: 192px;
    object-fit: cover;
}
.blog-card .body {
    padding: 1.5rem;
}
.blog-card .date {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.blog-card .body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}
.blog-card:hover .body h3 {
    color: var(--primary);
}
.blog-card .body p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}
.blog-card .body .read-more {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s ease;
}
.blog-card .body .read-more:hover {
    color: var(--primary-dark);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto;
}
.contact-info {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
}
.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info-item .icon {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}
.contact-info-item .label {
    font-weight: 600;
    color: var(--gray-900);
}
.contact-info-item .value {
    color: var(--gray-600);
}

.contact-form {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
}
.contact-form h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}
.contact-form .form-group {
    margin-bottom: 1rem;
}
.contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form .btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact-form .btn-submit:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

/* ===== DISTRIBUTOR PAGE ===== */
.distributor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}
.distributor-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.distributor-benefits h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}
.benefit-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}
.benefit-card:hover {
    box-shadow: var(--shadow-xl);
}
.benefit-card .icon-wrapper {
    display: inline-flex;
    padding: 0.75rem;
    background: linear-gradient(to bottom right, var(--primary), #f97316);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
}
.benefit-card .icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}
.benefit-card h3 {
    font-weight: 700;
    color: var(--gray-900);
}
.benefit-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.distributor-form {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
}
.distributor-form h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}
.distributor-form .form-group {
    margin-bottom: 1rem;
}
.distributor-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}
.distributor-form input,
.distributor-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
}
.distributor-form input:focus,
.distributor-form textarea:focus {
    border-color: var(--primary);
}
.distributor-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.distributor-form textarea {
    resize: vertical;
    min-height: 80px;
}
.distributor-form .btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.distributor-form .btn-submit:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .mobile-menu.open {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        margin: 0 auto;
    }
    .hero-images {
        height: 400px;
    }
    .hero-main-image img {
        width: 200px;
        height: 200px;
    }
    .hero-float-1 img {
        width: 120px;
        height: 120px;
    }
    .hero-float-2 img {
        width: 100px;
        height: 100px;
    }
    .hero-float-3 img {
        width: 80px;
        height: 80px;
    }
    .hero-float-4 img {
        width: 90px;
        height: 90px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }

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

    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .quality-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .cta-box {
        padding: 2rem;
    }
    .cta-box h2 {
        font-size: 1.75rem;
    }

    .contact-grid,
    .distributor-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form button {
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn-secondary,
    .hero-buttons .btn-gradient {
        width: 100%;
        justify-content: center;
    }
    .distributor-form .form-row {
        grid-template-columns: 1fr;
    }
    .hero-main-image img {
        width: 160px;
        height: 160px;
    }
    .hero-float-1 img {
        width: 80px;
        height: 80px;
    }
    .hero-float-2 img {
        width: 70px;
        height: 70px;
    }
    .hero-float-3 img {
        width: 60px;
        height: 60px;
    }
    .hero-float-4 img {
        width: 65px;
        height: 65px;
    }
}