﻿/* ============================================
   Yiwu Bingchen'an Toys Co., Ltd. - Global Styles
   B2B Squishy Toy Manufacturer Website
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #FF6B9D;
    --primary-dark: #E84580;
    --secondary: #C084FC;
    --accent: #FBBF24;
    --dark: #1E1E2E;
    --dark-light: #2D2D44;
    --text: #374151;
    --text-light: #6B7280;
    --bg: #FFFBFE;
    --bg-alt: #FFF5F9;
    --white: #FFFFFF;
    --success: #34D399;
    --whatsapp: #25D366;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(255,107,157,0.10);
    --shadow-lg: 0 8px 40px rgba(255,107,157,0.15);
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.3; color: var(--dark); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
p { margin-bottom: 1rem; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem; border-radius: 50px; font-weight: 600;
    font-size: 1rem; cursor: pointer; border: none;
    transition: var(--transition); text-align: center; justify-content: center;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white); box-shadow: 0 4px 16px rgba(255,107,157,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,107,157,0.45); }
.btn-secondary {
    background: var(--white); color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-secondary:hover { background: var(--primary); color: var(--white); }
.btn-whatsapp {
    background: var(--whatsapp); color: var(--white);
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.9rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }

/* --- Badge / Tags --- */
.badge {
    display: inline-block; padding: 0.25rem 0.75rem;
    border-radius: 50px; font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-tiktok { background: #000; color: #fff; }
.badge-hot { background: #EF4444; color: #fff; }
.badge-new { background: var(--secondary); color: #fff; }
.badge-margin { background: var(--accent); color: var(--dark); }
.badge-success { background: var(--success); color: #fff; }

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0.5rem auto 0; }
.section-label {
    display: inline-block; color: var(--primary); font-weight: 700;
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,251,254,0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,107,157,0.1);
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--max-width); margin: 0 auto; padding: 0.8rem 1.5rem;
}
.nav-logo {
    font-size: 1.4rem; font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-logo span { font-size: 1.6rem; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--text); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
    height: 2px; background: var(--primary); transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; gap: 0.5rem; align-items: center; }
.hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 0.5rem;
}
.hamburger span {
    width: 24px; height: 2px; background: var(--dark);
    transition: var(--transition); display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 50%, #FFF0F5 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,157,0.08), transparent 70%);
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: center; position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--white); padding: 0.4rem 1rem; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; color: var(--primary);
    box-shadow: var(--shadow); margin-bottom: 1.5rem;
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub { font-size: 1.15rem; color: var(--text-light); margin-bottom: 2rem; max-width: 500px; }
.hero-badges {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    margin-top: 2.5rem;
}
.hero-badge-item {
    display: flex; align-items: center; gap: 0.75rem;
    background: var(--white); padding: 0.8rem 1rem; border-radius: var(--radius);
    box-shadow: var(--shadow); font-size: 0.9rem; font-weight: 500;
}
.hero-badge-item .icon { font-size: 1.5rem; }
.hero-visual {
    display: flex; justify-content: center; align-items: center;
    position: relative;
}
.hero-image-placeholder {
    width: 100%; max-width: 480px; aspect-ratio: 1;
    background: linear-gradient(135deg, #FFE0EB, #F3D5FF);
    border-radius: 30px; display: flex; align-items: center;
    justify-content: center; font-size: 8rem; position: relative;
    box-shadow: var(--shadow-lg);
}
.floating-card {
    position: absolute; background: var(--white); padding: 0.8rem 1.2rem;
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    font-size: 0.85rem; font-weight: 600; animation: float 3s ease-in-out infinite;
}
.floating-card.card-1 { top: 10%; right: -10%; animation-delay: 0s; }
.floating-card.card-2 { bottom: 15%; left: -5%; animation-delay: 1s; }
.floating-card.card-3 { top: 50%; right: -15%; animation-delay: 2s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- Product Cards --- */
.product-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.product-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow);
    transition: var(--transition); position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img {
    width: 100%; aspect-ratio: 4/3;
    background: linear-gradient(135deg, #FFE0EB, #F3D5FF);
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem; position: relative;
}
.product-tags { position: absolute; top: 1rem; left: 1rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.product-info { padding: 1.5rem; }
.product-info h3 { margin-bottom: 0.5rem; }
.product-point { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; }
.product-meta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
    font-size: 0.85rem; margin-bottom: 1rem;
}
.product-meta span.flexible-moq {
    grid-column: 1 / -1; color: var(--success, #28a745); font-size: 0.8rem;
}
.product-meta span { color: var(--text-light); }
.product-meta strong { color: var(--dark); }
.product-use { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.product-use span {
    background: var(--bg-alt); padding: 0.2rem 0.6rem;
    border-radius: 50px; font-size: 0.75rem; color: var(--text-light);
}
.product-price {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1rem; border-top: 1px solid #f3f4f6;
}
.price-range { font-size: 1.1rem; font-weight: 700; color: var(--primary); }

/* --- Feature Cards --- */
.feature-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: var(--white); padding: 2rem; border-radius: var(--radius-lg);
    box-shadow: var(--shadow); text-align: center;
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
    width: 70px; height: 70px; margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, var(--bg-alt), #FFE0EB);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 2rem;
}
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-light); font-size: 0.95rem; }

/* --- Process Steps --- */
.process-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem; position: relative;
}
.process-step { text-align: center; position: relative; }
.step-number {
    width: 50px; height: 50px; margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white); border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 700;
}
.process-step h3 { margin-bottom: 0.5rem; }
.process-step p { color: var(--text-light); font-size: 0.9rem; }

/* --- Stats --- */
.stats-bar {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 3rem 2rem; border-radius: var(--radius-lg);
    color: var(--white); text-align: center;
}
.stat-item h3 { font-size: 2.5rem; color: var(--white); margin-bottom: 0.3rem; }
.stat-item p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* --- Testimonial --- */
.testimonial-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: var(--white); padding: 2rem; border-radius: var(--radius-lg);
    box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before {
    content: '"'; position: absolute; top: 1rem; left: 1.5rem;
    font-size: 4rem; color: var(--primary); opacity: 0.2; font-family: Georgia, serif;
}
.testimonial-text { font-style: italic; margin-bottom: 1.5rem; color: var(--text); }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, #FFE0EB, #F3D5FF);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-role { color: var(--text-light); font-size: 0.8rem; }

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 4rem 2rem; border-radius: var(--radius-lg);
    text-align: center; color: var(--white); position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; position: relative; }
.cta-banner .btn { position: relative; }

/* --- Blog Cards --- */
.blog-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow);
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb {
    width: 100%; aspect-ratio: 16/9;
    background: linear-gradient(135deg, #FFE0EB, #F3D5FF);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
}
.blog-content { padding: 1.5rem; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.75rem; }
.blog-content h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.blog-content p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; }
.blog-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; }
.blog-link:hover { text-decoration: underline; }

/* --- Blog Post --- */
.blog-post { max-width: 800px; margin: 0 auto; padding: 7rem 1.5rem 4rem; }
.blog-post-header { margin-bottom: 2rem; text-align: center; }
.blog-post-header .badge { margin-bottom: 1rem; }
.blog-post-header h1 { margin-bottom: 1rem; }
.blog-post-header .meta { color: var(--text-light); font-size: 0.9rem; }
.blog-post h2 { margin: 2.5rem 0 1rem; }
.blog-post h3 { margin: 2rem 0 0.75rem; }
.blog-post p { margin-bottom: 1.2rem; }
.blog-post ul, .blog-post ol { margin: 1rem 0 1.5rem 1.5rem; }
.blog-post li { margin-bottom: 0.5rem; }
.blog-post blockquote {
    border-left: 4px solid var(--primary); padding: 1rem 1.5rem;
    background: var(--bg-alt); border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0; font-style: italic;
}
.blog-post-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 2.5rem; border-radius: var(--radius-lg);
    text-align: center; color: var(--white); margin-top: 3rem;
}
.blog-post-cta h3 { color: var(--white); margin-bottom: 0.5rem; }
.blog-post-cta p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.blog-post-cta .btn { background: var(--white); color: var(--primary); }

/* --- About Page --- */
.about-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-alt), var(--bg));
    text-align: center;
}
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: center;
}
.about-image-placeholder {
    width: 100%; aspect-ratio: 4/3;
    background: linear-gradient(135deg, #FFE0EB, #F3D5FF);
    border-radius: var(--radius-lg); display: flex;
    align-items: center; justify-content: center;
    font-size: 6rem; box-shadow: var(--shadow-lg);
}
.about-facts {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
    margin-top: 2rem;
}
.about-fact {
    background: var(--white); padding: 1.2rem; border-radius: var(--radius);
    box-shadow: var(--shadow); text-align: center;
}
.about-fact h4 { color: var(--primary); font-size: 1.5rem; margin-bottom: 0.3rem; }
.about-fact p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* --- Timeline --- */
.timeline { position: relative; padding-left: 3rem; }
.timeline::before {
    content: ''; position: absolute; left: 14px; top: 0; bottom: 0;
    width: 3px; background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 3px;
}
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before {
    content: ''; position: absolute; left: -3rem; top: 0.5rem;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--primary); border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary);
}
.timeline-item h3 { margin-bottom: 0.3rem; }
.timeline-item p { color: var(--text-light); font-size: 0.95rem; }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white); border-radius: var(--radius);
    margin-bottom: 1rem; box-shadow: var(--shadow);
    overflow: hidden; transition: var(--transition);
}
.faq-question {
    width: 100%; padding: 1.3rem 1.5rem; background: none; border: none;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-size: 1.05rem; font-weight: 600;
    color: var(--dark); text-align: left; font-family: inherit;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
    font-size: 1.5rem; color: var(--primary);
    transition: var(--transition); flex-shrink: 0; margin-left: 1rem;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 1.5rem 1.3rem; color: var(--text-light); line-height: 1.8; }

/* --- Contact Form --- */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.contact-info-card {
    background: var(--white); padding: 2rem; border-radius: var(--radius-lg);
    box-shadow: var(--shadow); margin-bottom: 1.5rem;
}
.contact-info-card h3 { margin-bottom: 1rem; }
.contact-detail {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.2rem;
}
.contact-detail .icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-detail p { margin: 0; font-size: 0.95rem; }
.contact-detail a { color: var(--primary); font-weight: 500; }
.contact-detail a:hover { text-decoration: underline; }
.inquiry-types { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.inquiry-type {
    background: var(--bg-alt); padding: 1.2rem; border-radius: var(--radius);
    text-align: center; cursor: pointer; transition: var(--transition);
    border: 2px solid transparent;
}
.inquiry-type:hover, .inquiry-type.selected {
    border-color: var(--primary); background: var(--white);
}
.inquiry-type .icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.inquiry-type p { font-size: 0.85rem; font-weight: 600; margin: 0; }

.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 600; font-size: 0.9rem; }
.form-control {
    width: 100%; padding: 0.85rem 1rem; border: 2px solid #e5e7eb;
    border-radius: var(--radius); font-size: 1rem; font-family: inherit;
    transition: var(--transition); background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,107,157,0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

/* --- Footer --- */
.footer {
    background: var(--dark); color: rgba(255,255,255,0.7); padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .nav-logo { font-size: 1.6rem; margin-bottom: 1rem; display: inline-block; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; }
.footer h4 { color: var(--white); margin-bottom: 1.2rem; font-size: 1rem; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { font-size: 0.9rem; }
.footer ul a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--dark-light); display: flex; align-items: center;
    justify-content: center; font-size: 1.1rem;
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem; text-align: center; font-size: 0.85rem;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--whatsapp); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition); animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* --- Breadcrumb --- */
.breadcrumb {
    padding: 6rem 0 2rem;
    background: var(--bg-alt);
}
.breadcrumb-list { display: flex; gap: 0.5rem; font-size: 0.9rem; flex-wrap: wrap; }
.breadcrumb-list a { color: var(--primary); }
.breadcrumb-list span { color: var(--text-light); }

/* --- Page Header --- */
.page-header {
    padding: 7rem 0 3rem;
    background: linear-gradient(135deg, var(--bg-alt), var(--bg));
    text-align: center;
}
.page-header h1 { margin-bottom: 0.5rem; }
.page-header p { color: var(--text-light); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* --- Privacy/Terms --- */
.legal-content { max-width: 800px; margin: 0 auto; padding: 7rem 1.5rem 4rem; }
.legal-content h1 { margin-bottom: 1.5rem; }
.legal-content h2 { margin: 2rem 0 1rem; }
.legal-content p { color: var(--text-light); }

/* --- 404 --- */
.error-page {
    min-height: 100vh; display: flex; align-items: center;
    justify-content: center; text-align: center; padding: 2rem;
    background: linear-gradient(135deg, var(--bg-alt), var(--bg));
}
.error-page h1 { font-size: 8rem; background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.error-page p { font-size: 1.2rem; color: var(--text-light); margin-bottom: 2rem; }

/* --- Thank You --- */
.thankyou-page {
    min-height: 100vh; display: flex; align-items: center;
    justify-content: center; text-align: center; padding: 2rem;
    background: linear-gradient(135deg, var(--bg-alt), var(--bg));
}
.thankyou-icon { font-size: 5rem; margin-bottom: 1.5rem; }
.thankyou-page h1 { margin-bottom: 1rem; }
.thankyou-page p { color: var(--text-light); font-size: 1.1rem; margin-bottom: 2rem; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { margin: 0 auto 2rem; }
    .hero-badges { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-image-placeholder { max-width: 350px; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .nav-links { 
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); flex-direction: column; padding: 1.5rem;
        box-shadow: var(--shadow); gap: 1rem;
    }
    .nav-links.active { display: flex; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 7rem 0 3rem; }
    .hero-badges { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 2rem 1.5rem; }
    .stat-item h3 { font-size: 2rem; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .inquiry-types { grid-template-columns: 1fr; }
    .btn-group { flex-direction: column; }
    .btn { width: 100%; }
    .floating-card { display: none; }
}

@media (max-width: 480px) {
    html { font-size: 15px; }
    .container { padding: 0 1rem; }
    .stats-bar { grid-template-columns: 1fr; }
}
