/* ===================================
   SCBIO IMC - Main Stylesheet
   White & Pastel Premium Theme
   =================================== */

/* --- CSS Variables --- */
:root {
    --primary: #4A90D9;
    --secondary: #2C3E6B;
    --accent: #6BC5B8;
    --accent-warm: #F0A875;
    --success: #5CB88A;

    --pastel-blue: #EBF3FD;
    --pastel-mint: #E8F6F3;
    --pastel-lavender: #F0EBF8;
    --neutral-bg: #F8F9FC;

    --text-dark: #1E293B;
    --text-mid: #64748B;
    --text-light: #94A3B8;
    --white: #FFFFFF;
    --border: #E2E8F0;

    --nav-height: 72px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-pill: 50px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(74, 144, 217, 0.12);
}

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

body {
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    height: var(--nav-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

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

.logo-svg {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-svg {
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.9375rem;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        flex-direction: column;
        background: var(--white);
        padding: 5rem 2.5rem 2rem;
        gap: 1.75rem;
        transition: right 0.35s ease;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
        border-left: 1px solid var(--border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.0625rem;
        color: var(--text-dark);
    }

    .language-switcher {
        margin-top: 1rem;
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--white) 0%, var(--pastel-blue) 50%, var(--pastel-mint) 100%);
    color: var(--text-dark);
    padding: 0 6%;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}

/* Hero: 심플 두 블록 형식 (The Face | SNAP SYSTEM 세로 배치) */
.hero-simple {
    background: #fff;
}

.hero-simple::before,
.hero-simple::after {
    display: none;
}

.hero-simple .hero-deco {
    display: none;
}

.hero-simple-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.kimes-popup {
    position: fixed;
    top: calc(var(--nav-height) + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: min(360px, calc(100vw - 24px));
    z-index: 1200;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 8px;
}

.kimes-popup-link {
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.kimes-popup-image {
    display: block;
    width: 100%;
    height: auto;
}

.kimes-popup-close {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.kimes-popup-close:hover {
    background: #f8fafc;
}

.hero-block {
    display: block;
    text-decoration: none;
    color: #1a1a1a;
    transition: opacity 0.3s ease;
}

.hero-block:hover {
    opacity: 0.85;
}

.hero-block .hero-block-logo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-block-logo-face {
    max-width: 760px;
    max-height: 280px;
    min-width: 400px;
    min-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hero-block-tagline {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #333;
    margin-top: 0.5rem;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

.hero-block-snap .hero-block-logo-snap {
    max-width: 840px;
    max-height: 240px;
    min-width: 440px;
    min-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hero-block-tagline-snap {
    font-size: 0.8125rem;
    color: #555;
    margin-top: 0.375rem;
}

.hero-block-main { margin-bottom: 0.5rem; }
.hero-snap-intro {
    font-size: 0.875rem;
    color: #555;
    margin: 0.5rem 0 0.75rem;
    max-width: 420px;
}
.hero-block-secondary .hero-block-logo-snap {
    max-width: 320px;
    max-height: 200px;
    min-width: 180px;
    min-height: 100px;
}

/* The Face 스토리 / 교육용도 / FAQ (scbioimc.com 반영) */
.theface-story,
.theface-uses,
.theface-faq {
    padding: 5rem 8%;
    background: var(--white);
}
.theface-story { background: var(--pastel-blue); }
.theface-uses { background: var(--white); }
.theface-faq { background: var(--pastel-mint); }

.theface-story-text p,
.theface-uses-list {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.theface-story-text p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
    color: var(--text-dark);
}
.theface-uses-list {
    list-style: none;
    padding: 0;
}
.theface-uses-list li {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--accent);
}
.theface-uses-list strong { display: block; margin-bottom: 0.25rem; color: var(--secondary); }

.faq-list { max-width: 640px; margin: 2rem auto 0; text-align: left; }
.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { font-size: 1rem; color: var(--secondary); margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.9375rem; color: var(--text-mid); margin: 0; line-height: 1.6; }

.brand-card-main { grid-column: 1 / -1; }
.brand-card-snap {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
}
.brand-card-snap .brand-body .cta-secondary {
    display: block;
    width: fit-content;
    margin: auto auto 0;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-pill);
    text-decoration: none;
}
.brand-card-snap .brand-body .cta-secondary:hover { opacity: 0.9; }

@media (max-width: 768px) {
    .hero-simple-inner {
        gap: 3rem;
    }

    .kimes-popup {
        left: 50%;
        transform: translateX(-50%);
        top: calc(var(--nav-height) + 8px);
        width: min(360px, calc(100vw - 24px));
    }

    .hero-block-logo-face {
        max-width: 560px;
        max-height: 200px;
    }
    .hero-block-snap .hero-block-logo-snap {
        max-width: 600px;
        max-height: 160px;
    }
    .hero-block-tagline {
        font-size: 0.875rem;
    }
    .hero-block-tagline-snap {
        font-size: 0.75rem;
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hero-logo-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

.title-sc { color: var(--secondary); }
.title-bio { color: var(--primary); }
.title-imc { color: var(--secondary); }

.hero .hero-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Mission Pillars */
.hero-pillars {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 1.5rem 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
    text-align: left;
}

.pillar-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pillar strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.pillar p {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.pillar-divider {
    width: 1px;
    background: var(--border);
    margin: 0 1.5rem;
    flex-shrink: 0;
}

/* Hero Decorations */
.hero-deco {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.hero-deco-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    background: radial-gradient(circle, rgba(107, 197, 184, 0.1) 0%, transparent 70%);
    animation-delay: 0s;
}

.hero-deco-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 8%;
    background: radial-gradient(circle, rgba(74, 144, 217, 0.08) 0%, transparent 70%);
    animation-delay: -3s;
}

.hero-deco-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 15%;
    background: radial-gradient(circle, rgba(240, 168, 117, 0.08) 0%, transparent 70%);
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Hero brand logos: The Face V2 (left) | SNAP System (right) - 첫 화면 상단 표시 */
.hero-brands {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    max-width: 200px;
    transition: transform 0.3s ease;
}

.hero-brand:hover {
    transform: translateY(-4px);
}

.hero-brand img {
    width: 100%;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.hero-brand-snap img {
    max-height: 80px;
}

.hero-brand-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
}

.hero .cta-button {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    font-family: inherit;
    text-decoration: none;
}

.hero .cta-button:hover {
    background-color: #5bb8aa;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 197, 184, 0.35);
}

/* ===================================
   Section Base Styles
   =================================== */
section {
    padding: 7rem 8%;
}

section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary);
}

/* ===================================
   About Section
   =================================== */
.about {
    background-color: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
    margin-bottom: 3rem;
}

.about-text h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    color: var(--text-mid);
    line-height: 1.85;
    max-width: 680px;
    margin: 0 auto 1.5rem;
}

.about-story {
    width: min(860px, 100%);
    margin: 0 auto 2.4rem;
    text-align: center;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    padding: 1.2rem 1.3rem;
}

.about-story-preview {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0 0 0.85rem;
    text-align: justify;
    text-justify: inter-word;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.about-story-full {
    text-align: center;
}

.about-story-full p {
    color: var(--text-mid);
    line-height: 1.82;
    margin: 0 0 1rem;
    text-align: justify;
    text-justify: inter-word;
}

.about-story-toggle {
    display: inline-block;
    margin-top: 0.25rem;
    padding: 0.42rem 0.92rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: #ffffff;
    color: var(--secondary);
    cursor: pointer;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.about-story-toggle:hover {
    border-color: rgba(18, 34, 53, 0.22);
}

/* 4 Principles Grid */
.about .principles-grid {
    display: none;
}

.about-story.is-open + .principles-grid {
    display: grid;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.principle-card {
    background: var(--neutral-bg);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.principle-card:hover {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.principle-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.principle-card h4 {
    font-size: 0.9375rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.principle-card p {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

/* ===================================
   Two Brands Section
   =================================== */
.brands {
    background-color: var(--pastel-blue);
}

/* Brand Showcase */
.brand-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.brand-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.brand-training:hover { border-color: var(--primary); }
.brand-regenerative:hover { border-color: var(--accent); }

.brand-header {
    padding: 2rem 2rem 0;
}

.brand-name-equal {
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: var(--secondary);
    margin-bottom: 0.55rem;
}

.brand-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}

.brand-regenerative .brand-tag {
    background: var(--accent);
}

.brand-header h3 {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.brand-tagline {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin: 0;
}

.brand-logo {
    max-width: 260px;
    height: auto;
    margin-top: 1rem;
}

.brand-visual-snap {
    height: 170px;
}

.brand-logo-snap-main {
    margin-top: 0;
    max-width: 340px;
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.brand-regenerative .brand-tagline {
    color: var(--accent);
}

.brand-visual {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1.5rem;
}

.brand-visual img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.brand-card:hover .brand-visual img {
    transform: scale(1.05);
}

.brand-body {
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.brand-mission {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--pastel-blue);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}

.brand-mission-rect {
    display: block;
    width: 100%;
    border-radius: 12px;
    padding: 0.5rem 0.85rem;
}

.brand-regenerative .brand-mission {
    color: var(--accent);
    background: var(--pastel-mint);
}

.brand-body > p {
    color: var(--text-mid);
    line-height: 1.75;
    font-size: 0.9375rem;
}

.brand-features-title {
    margin-top: 1.1rem;
    margin-bottom: 0.45rem;
    color: var(--secondary);
    font-size: 0.84rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.brand-features {
    list-style: none;
    margin-top: 1.25rem;
    padding: 0;
}

.brand-features li {
    padding: 0.375rem 0;
    color: var(--text-mid);
    font-size: 0.875rem;
    position: relative;
    padding-left: 1.5rem;
}

.brand-features li strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.08rem;
}

.brand-features li span {
    display: block;
    color: var(--text-mid);
    line-height: 1.6;
    font-size: 0.82rem;
}

.brand-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.brand-training .brand-features li::before {
    background: var(--primary);
}

@media (max-width: 768px) {
    .brand-showcase {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Global Presence Section
   =================================== */
.global-presence {
    background-color: var(--white);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
    margin: 3rem auto;
    max-width: 900px;
}

.country-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--pastel-mint);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.country-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--accent);
}

.country-flag {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.country-name {
    font-size: 0.8125rem;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.trade-shows {
    margin-top: 4rem;
    text-align: center;
}

.trade-shows h3 {
    margin-bottom: 2rem;
    color: var(--secondary);
}

.shows-list {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.show-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.show-badge:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* ===================================
   Quality & Certifications Section
   =================================== */
.quality {
    background-color: var(--pastel-mint);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.cert-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent);
}

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

.cert-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.cert-card h3 {
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.cert-card p {
    color: var(--text-mid);
    font-size: 0.9375rem;
    line-height: 1.75;
}

/* ===================================
   Partners Section
   =================================== */
.partners {
    background-color: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.partner-item {
    background: var(--white);
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.partner-item:hover {
    background: var(--pastel-blue);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.partner-item span {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.partner-item:hover span {
    color: var(--secondary);
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--pastel-lavender);
    text-align: center;
}

.contact h2 {
    color: var(--secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--pastel-mint);
    margin-left: auto;
    margin-right: auto;
}

.contact-icon svg {
    width: 1.35rem;
    height: 1.35rem;
    display: block;
}

.contact-item h4 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p,
.contact-item a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary);
}

/* ===================================
   Footer
   =================================== */
footer {
    background-color: var(--neutral-bg);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    font-size: 0.8125rem;
    border-top: 1px solid var(--border);
}

.footer-seo-links {
    margin-top: 0.45rem;
}

.footer-seo-links a {
    color: var(--text-mid);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    section {
        padding: 5.5rem 6%;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4.5rem 5%;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-logo-img {
        max-width: 200px;
    }

    .hero-brands {
        gap: 2rem;
        margin-top: 2rem;
    }

    .hero-brand {
        max-width: 140px;
    }

    .hero-brand img {
        max-height: 70px;
    }

    .hero-brand-snap img {
        max-height: 56px;
    }

    .hero-eyebrow {
        font-size: 0.6875rem;
    }

    .hero .hero-description {
        font-size: 0.9375rem;
    }

    .hero-pillars {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
    }

    .pillar-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .stats-row {
        gap: 1.25rem;
    }

    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .shows-list {
        gap: 0.75rem;
    }

    .brand-visual {
        height: 200px;
    }

    .logo-svg {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-logo-img {
        max-width: 160px;
    }

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

    .stats-row {
        gap: 0.75rem;
    }

    .stat-box {
        min-width: 110px;
    }
}

/* ===================================
   Minimal Refresh Overrides
   =================================== */

:root {
    --primary: #0f5c85;
    --secondary: #122235;
    --accent: #2f8f83;
    --accent-warm: #a86b43;
    --success: #2c8d5f;
    --pastel-blue: #f8fbff;
    --pastel-mint: #f8fbff;
    --pastel-lavender: #f8fbff;
    --neutral-bg: #ffffff;
    --text-dark: #162233;
    --text-mid: #4f6071;
    --text-light: #74879b;
    --border: rgba(18, 34, 53, 0.07);
    --surface-blue: #ffffff;
    --surface-mint: #ffffff;
    --surface-lavender: #ffffff;
    --surface-peach: #ffffff;
    --card-shadow: 0 6px 20px rgba(18, 34, 53, 0.06);
    --card-shadow-hover: 0 12px 30px rgba(18, 34, 53, 0.09);
    --shadow-sm: 0 1px 2px rgba(18, 34, 53, 0.05);
    --shadow-md: 0 6px 20px rgba(18, 34, 53, 0.08);
    --shadow-lg: 0 12px 28px rgba(18, 34, 53, 0.1);
    --shadow-hover: 0 10px 24px rgba(18, 34, 53, 0.1);
}

body {
    background: #ffffff;
    color: var(--text-dark);
}

section {
    padding: 6rem 7%;
}

.navbar {
    padding: 0 5%;
    border-bottom: none;
    box-shadow: 0 3px 14px rgba(18, 34, 53, 0.06);
}

.nav-links {
    gap: 1.5rem;
}

.nav-links a {
    font-weight: 400;
}

.hero,
.hero-simple {
    min-height: auto;
    background: #ffffff;
    padding-top: calc(var(--nav-height) + 10px);
    padding-bottom: 3.75rem;
}

.hero-simple-inner {
    width: min(1080px, 100%);
    gap: 0;
}

.news-ticker {
    width: min(900px, 100%);
    border-radius: var(--radius-pill);
    background: #ffffff;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    padding: 0.55rem 0;
    margin-top: 0;
}

.news-track {
    width: max-content;
    min-width: 100%;
    white-space: nowrap;
    will-change: transform;
    animation: news-sweep 12s ease-in-out infinite;
}

.news-text {
    margin: 0;
    padding: 0 1rem;
    color: #0c5f95;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.55;
}

.news-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(12, 95, 149, 0.35);
}

.news-link:hover {
    color: #094c77;
    border-bottom-color: rgba(9, 76, 119, 0.55);
}

.news-divider {
    letter-spacing: 0.04em;
}

@keyframes news-sweep {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-20%);
    }
    100% {
        transform: translateX(0);
    }
}

.hero-intro {
    text-align: center;
    max-width: 760px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.3rem 0.8rem;
    border: none;
    border-radius: var(--radius-pill);
    letter-spacing: 0.04em;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    box-shadow: var(--card-shadow);
}

.hero-heading {
    font-size: clamp(2rem, 5vw, 3.4rem);
    letter-spacing: -0.03em;
    margin-bottom: 0.85rem;
    color: var(--secondary);
}

.hero-lead {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.hero-seo-links {
    margin-top: -0.3rem;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.hero-seo-links a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-seo-links a:hover {
    color: var(--primary);
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.hero-actions .btn {
    min-width: 170px;
}

.btn {
    border-radius: var(--radius-pill);
    font-weight: 600;
}

.btn-primary:hover,
.btn-outline:hover {
    transform: none;
    box-shadow: none;
}

.hero-brand-panel {
    width: min(900px, 100%);
    border: none;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem 2.6rem;
    box-shadow: var(--card-shadow);
    margin-top: 10px;
}

.hero-block-main {
    margin-bottom: 0.25rem;
}

.hero-snap-intro {
    margin: 0.75rem auto 1rem;
    color: var(--text-mid);
    max-width: 560px;
}

.hero-block-logo-face,
.hero-block-snap .hero-block-logo-snap,
.hero-block-secondary .hero-block-logo-snap {
    min-width: 0;
}

.hero-brand-panel .hero-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-brand-panel .hero-block-logo-face,
.hero-brand-panel .hero-block-logo-snap {
    width: min(760px, 100%);
    max-width: min(760px, 100%);
    height: auto;
    max-height: 280px;
}

.hero-brand-panel .hero-block-main {
    margin-bottom: 1.1rem;
}

.hero-brand-panel .hero-block-secondary {
    margin-top: 0.8rem;
    margin-bottom: 1.1rem;
}

.hero-intro {
    margin-top: 2rem;
}

.home-highlights {
    margin-top: 2rem;
}

.home-highlights {
    width: min(1000px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    max-width: 560px;
}

.highlight-item {
    border: none;
    border-radius: var(--radius-md);
    background: #ffffff;
    padding: 0.55rem 0.6rem;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.highlight-value {
    display: block;
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.03rem;
    line-height: 1.2;
}

.highlight-label {
    display: block;
    color: var(--text-mid);
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.2;
}

.investor-mini {
    margin-top: 0.6rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    max-width: 640px;
}

.investor-chip {
    display: inline-block;
    padding: 0.22rem 0.52rem;
    border-radius: 999px;
    font-size: 0.62rem;
    color: var(--text-mid);
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.015em;
}

.theface-story,
.theface-uses,
.theface-faq,
.about,
.brands,
.global-presence,
.quality,
.partners,
.contact {
    background: #ffffff;
}

.theface-story,
.theface-uses,
.theface-faq {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
}

.theface-story-text p {
    color: var(--text-mid);
    line-height: 1.85;
}

.theface-uses-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: 980px;
}

.theface-uses-list .use-card {
    margin: 0;
    border: none;
    border-radius: var(--radius-md);
    padding: 1.1rem 1.15rem;
    background: #ffffff;
    box-shadow: var(--card-shadow);
}

.use-index {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.theface-uses-list strong {
    margin-bottom: 0.45rem;
}

.theface-uses-list span[data-i18n^="theface.use"] {
    color: var(--text-mid);
    line-height: 1.7;
    font-size: 0.92rem;
}

.faq-list {
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.faq-item {
    margin: 0;
    padding: 1rem 1.1rem;
    border: none;
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--card-shadow);
}

.faq-item h4 {
    margin-bottom: 0.35rem;
}

.faq-item p {
    color: var(--text-mid);
}

.about-text p,
.brand-body > p,
.cert-card p,
.section-subtitle {
    color: var(--text-mid);
}

.brand-body .cta-secondary {
    display: block;
    width: fit-content;
    margin: auto auto 0;
    padding: 0.55rem 1.15rem;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    background: var(--secondary);
    color: var(--white);
}

.brand-body .cta-secondary:hover {
    background: var(--primary);
}

.brand-tag-plain {
    background: transparent;
    color: var(--secondary);
    padding-left: 0;
    padding-right: 0;
}

.principle-card,
.brand-card,
.country-item,
.cert-card,
.contact-item,
.partner-item,
.stat-box {
    border: none;
    box-shadow: var(--card-shadow);
}

.principle-card,
.cert-card,
.stat-box {
    background: #ffffff;
}

.partner-item,
.show-badge {
    background: #ffffff;
}

.brand-card {
    background: #ffffff;
}

.country-item,
.theface-story .about-content,
.theface-uses .about-content {
    background: #ffffff;
}

.contact-item,
.faq-item {
    background: #ffffff;
}

.brand-card,
.cert-card,
.contact-item {
    border-radius: var(--radius-md);
}

.brand-card:hover,
.principle-card:hover,
.country-item:hover,
.cert-card:hover,
.contact-item:hover,
.partner-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.blog-insights {
    background: #ffffff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.shop-section {
    background: #ffffff;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.shop-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
    background: #ffffff;
    box-shadow: var(--card-shadow);
    border-radius: var(--radius-md);
    padding: 1.05rem;
}

.shop-visual {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--card-shadow);
    max-width: 420px;
    width: 100%;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    justify-self: center;
}

.shop-visual img {
    width: auto;
    height: auto;
    min-height: 0;
    max-width: 100%;
    max-height: 260px;
    object-fit: contain;
    display: block;
}

.shop-body {
    padding: 0.25rem 0.3rem;
}

.shop-label {
    margin: 0 0 0.35rem;
    color: var(--primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.shop-body h3 {
    margin: 0 0 0.6rem;
    color: var(--secondary);
}

.shop-desc {
    margin: 0 0 1rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.shop-included {
    margin: 0 0 1rem;
}

.shop-included-title {
    margin: 0 0 0.35rem;
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 400;
}

.shop-included-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-mid);
}

.shop-included-list li {
    margin: 0.1rem 0;
    line-height: 1.5;
    font-size: 0.86rem;
}

.shop-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.shop-qty {
    min-width: 100px;
    padding: 0.45rem 0.65rem;
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    background: #ffffff;
    color: var(--text-dark);
}

.shop-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.shop-total-amount {
    color: var(--primary);
    font-size: 1.2rem;
}

.shop-pay-btn {
    width: 100%;
    border: none;
    border-radius: var(--radius-pill);
    padding: 0.65rem 1rem;
    background: #ffc439;
    color: #1f2a44;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.shop-pay-btn:hover {
    background: #ffb700;
}

.shop-note {
    margin: 0.75rem 0 0;
    color: var(--text-mid);
    font-size: 0.85rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.blog-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    padding: 1.25rem 1.2rem;
}

.blog-meta {
    margin: 0 0 0.55rem;
    color: var(--primary);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.blog-card h3 {
    margin-bottom: 0.7rem;
    color: var(--secondary);
    font-size: 1.1rem;
}

.blog-card p {
    color: var(--text-mid);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.blog-link {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 92, 133, 0.28);
}

.blog-link:hover {
    color: #0b4f72;
}

.partner-item span {
    text-transform: none;
    letter-spacing: 0.01em;
}

.contact {
    border-top: none;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.contact h2 {
    margin-bottom: 0.45rem;
    font-size: 1.9rem;
}

.contact .section-subtitle {
    max-width: 520px;
    margin-bottom: 1.6rem;
    font-size: 0.9rem;
    line-height: 1.65;
}

.contact-grid {
    gap: 0.95rem;
    margin-top: 0;
    max-width: 760px;
}

.contact-item {
    padding: 1.15rem 1rem;
}

.contact-icon {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
}

.contact-item h4 {
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.contact-item p,
.contact-item a {
    font-size: 0.86rem;
}

.contact-icons-only .contact-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.2rem 0.15rem 0.45rem;
}

.contact-icons-only .contact-item {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    flex: 0 0 auto;
}

.contact-icons-only .contact-item:hover {
    transform: none;
    box-shadow: none;
}

.contact-icons-only .contact-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.contact-icons-only .contact-icon {
    margin: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: var(--text-mid);
    transition: transform 0.25s ease, color 0.25s ease;
}

.contact-icons-only .contact-icon-link:hover .contact-icon {
    transform: translateY(-2px);
    color: var(--primary);
}

.contact-icons-only .contact-icon-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 999px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.snap-inquiry-open {
    overflow: hidden;
}

.snap-inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 2600;
    background: rgba(8, 14, 24, 0.46);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.snap-inquiry-modal.is-open {
    display: flex;
}

.snap-inquiry-modal[hidden] {
    display: none !important;
}

.snap-inquiry-dialog {
    position: relative;
    width: min(620px, 100%);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 40px rgba(13, 24, 38, 0.22);
    padding: 1.1rem 1.1rem 1rem;
}

.snap-inquiry-close {
    position: absolute;
    top: 0.7rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
}

.snap-inquiry-dialog h3 {
    margin: 0 0 0.25rem;
    font-size: 1.15rem;
    color: var(--secondary);
}

.snap-inquiry-subtitle {
    margin: 0 0 0.8rem;
    color: var(--text-mid);
    font-size: 0.88rem;
}

.snap-inquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.snap-inquiry-form label {
    display: grid;
    gap: 0.32rem;
}

.snap-inquiry-form label span {
    color: var(--text-dark);
    font-size: 0.76rem;
}

.snap-inquiry-form input,
.snap-inquiry-form textarea {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #ffffff;
    color: var(--text-dark);
    font-size: 0.86rem;
    padding: 0.55rem 0.6rem;
}

.snap-inquiry-message {
    grid-column: 1 / -1;
}

.snap-inquiry-submit {
    grid-column: 1 / -1;
    justify-self: center;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    background: var(--secondary);
    color: #ffffff;
    font-size: 0.86rem;
    padding: 0.55rem 1.2rem;
    cursor: pointer;
}

.snap-inquiry-submit:hover {
    background: var(--primary);
}

.snap-inquiry-success {
    margin: 0.7rem 0 0;
    color: var(--secondary);
    font-size: 0.82rem;
    text-align: center;
}

.visibody-assist {
    display: grid;
    gap: 0.65rem;
}

.visibody-assist-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
}

.visibody-assist-input {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #ffffff;
    color: var(--text-dark);
    font-size: 0.88rem;
    padding: 0.58rem 0.62rem;
}

.visibody-assist-search,
.visibody-go-shop,
.visibody-dealer-open {
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    background: var(--secondary);
    color: #ffffff;
    font-size: 0.82rem;
    padding: 0.5rem 0.95rem;
    cursor: pointer;
}

.visibody-assist-search:hover,
.visibody-go-shop:hover,
.visibody-dealer-open:hover {
    background: var(--primary);
}

.visibody-assist-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.visibody-assist-item {
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text-dark);
    font-size: 0.78rem;
    padding: 0.4rem 0.75rem;
    cursor: pointer;
}

.visibody-assist-item:hover {
    border-color: rgba(44, 62, 107, 0.35);
    background: #f7fafd;
}

.visibody-assist-answer {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.65rem 0.75rem;
    background: #f9fbff;
}

.visibody-assist-answer-text {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.86rem;
    line-height: 1.6;
}

.visibody-go-shop {
    justify-self: center;
}

.visibody-dealer-open {
    justify-self: center;
}

.dealer-inquiry-dialog {
    width: min(520px, 100%);
}

.dealer-inquiry-actions {
    display: grid;
    gap: 0.55rem;
}

.dealer-inquiry-link {
    display: block;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    background: var(--secondary);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
}

.dealer-inquiry-link:hover {
    background: var(--primary);
}

@media (max-width: 1024px) {
    section {
        padding: 5rem 6%;
    }

    .home-highlights {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .theface-uses-list,
    .faq-list {
        grid-template-columns: 1fr;
    }

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

    .shop-card {
        grid-template-columns: 1fr;
    }

    .shop-visual {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4.25rem 5%;
    }

    .hero,
    .hero-simple {
        padding-top: calc(var(--nav-height) + 10px);
        padding-bottom: 3rem;
    }

    .hero-brand-panel {
        padding: 1.35rem 1rem;
    }

    .hero-intro,
    .home-highlights {
        margin-top: 1.5rem;
    }

    .news-text {
        font-size: 0.82rem;
    }

    .hero-block-logo-face {
        min-width: auto;
        max-width: 96%;
    }

    .hero-block-secondary .hero-block-logo-snap {
        min-width: auto;
        max-width: 96%;
    }

    .hero-brand-panel .hero-block-logo-face,
    .hero-brand-panel .hero-block-logo-snap {
        width: 96%;
        max-width: 96%;
        max-height: 220px;
    }

    .home-highlights {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.4rem;
    }

    .navbar {
        padding: 0 4%;
    }

    .contact {
        padding-top: 2.35rem;
        padding-bottom: 2.35rem;
    }

    .contact h2 {
        font-size: 1.6rem;
    }

    .contact .section-subtitle {
        margin-bottom: 1.2rem;
        font-size: 0.84rem;
    }

    .contact-item {
        padding: 1rem 0.9rem;
    }

    .contact-icons-only .contact-grid {
        justify-content: flex-start;
    }

    .snap-inquiry-form {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-track {
        animation: none;
    }
}

/* ===================================
   Global Thin Typography (except news)
   =================================== */
body :is(
    h1, h2, h3, h4, h5, h6,
    p, a, button, li, span, strong,
    label, input, textarea
) {
    font-weight: 300 !important;
}

.news-text,
.news-text *,
.news-link,
.news-divider {
    font-weight: 700 !important;
}

/* ===================================
   Dark Mode Support
   =================================== */
body.theme-dark {
    --primary: #7fb6ff;
    --secondary: #e8f0ff;
    --accent: #59c7b7;
    --pastel-blue: #121b29;
    --pastel-mint: #14202f;
    --pastel-lavender: #121c2a;
    --neutral-bg: #0d1420;
    --text-dark: #e7eefc;
    --text-mid: #b6c5db;
    --text-light: #8da1bc;
    --border: rgba(167, 187, 214, 0.2);
    --card-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
    --card-shadow-hover: 0 16px 38px rgba(0, 0, 0, 0.5);
    --surface-dark-1: #070b11;
    --surface-dark-2: #0b0f16;
    color-scheme: dark;
}

body.theme-dark,
body.theme-dark .hero,
body.theme-dark .hero-simple,
body.theme-dark .about,
body.theme-dark .brands,
body.theme-dark .theface-story,
body.theme-dark .theface-uses,
body.theme-dark .theface-faq,
body.theme-dark .shop-section,
body.theme-dark .blog-insights,
body.theme-dark .contact {
    background: #04070c !important;
    color: var(--text-dark);
}

body.theme-dark .navbar,
body.theme-dark .navbar.scrolled {
    background-color: rgba(11, 17, 26, 0.9);
    border-bottom-color: var(--border);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

body.theme-dark .news-ticker,
body.theme-dark .kimes-popup,
body.theme-dark .hero-brand-panel,
body.theme-dark .highlight-item,
body.theme-dark .investor-chip,
body.theme-dark .about-story,
body.theme-dark .principle-card,
body.theme-dark .brand-card,
body.theme-dark .faq-item,
body.theme-dark .shop-card,
body.theme-dark .shop-visual,
body.theme-dark .blog-card,
body.theme-dark .contact-item,
body.theme-dark .language-toggle,
body.theme-dark .language-menu,
body.theme-dark .theme-toggle {
    background: var(--surface-dark-1) !important;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
}

body.theme-dark .shop-qty {
    background: var(--surface-dark-2);
    color: var(--text-dark);
    border: 1px solid var(--border);
}

body.theme-dark .section-subtitle,
body.theme-dark .about-text p,
body.theme-dark .about-story-full p,
body.theme-dark .about-story-preview,
body.theme-dark .brand-body > p,
body.theme-dark .brand-features li span,
body.theme-dark .faq-item p,
body.theme-dark .blog-card p,
body.theme-dark .contact-item p,
body.theme-dark .contact-item a,
body.theme-dark .shop-note,
body.theme-dark .shop-included-title,
body.theme-dark .shop-included-list {
    color: var(--text-mid) !important;
}

body.theme-dark h1,
body.theme-dark h2,
body.theme-dark h3,
body.theme-dark h4,
body.theme-dark h5,
body.theme-dark h6,
body.theme-dark .brand-name-equal,
body.theme-dark .brand-features li strong,
body.theme-dark .shop-total,
body.theme-dark .shop-total-amount,
body.theme-dark .contact-item h4,
body.theme-dark .theme-toggle {
    color: var(--text-dark) !important;
}

body.theme-dark .news-text {
    color: #8dc1ff;
}

body.theme-dark .news-link {
    border-bottom-color: rgba(141, 193, 255, 0.45);
}

body.theme-dark .news-link:hover {
    color: #b0d6ff;
    border-bottom-color: rgba(176, 214, 255, 0.75);
}

body.theme-dark .btn-outline {
    border-color: var(--border);
    color: var(--text-dark);
}

body.theme-dark .btn-outline:hover {
    background: #10161f;
    color: #d8e7ff;
}

body.theme-dark .brand-features-title {
    color: #c7d8ef;
}

body.theme-dark .brand-mission {
    background: #0d121a;
    color: #a9ccff;
}

body.theme-dark .brand-regenerative .brand-mission {
    background: #0d121a;
    color: #88d8ca;
}

body.theme-dark .kimes-popup-close {
    background: var(--surface-dark-1);
    color: var(--text-dark);
    border-color: var(--border);
}

body.theme-dark .theface-story .about-content,
body.theme-dark .theface-uses .about-content,
body.theme-dark .theface-faq .about-content {
    background: var(--surface-dark-1) !important;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
}

body.theme-dark .theface-uses-list .use-card {
    background: var(--surface-dark-2) !important;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
}

body.theme-dark .theface-story-text p,
body.theme-dark .theface-uses-list span[data-i18n^="theface.use"] {
    color: var(--text-mid) !important;
}

body.theme-dark .theface-uses-list strong,
body.theme-dark .faq-item h4 {
    color: var(--text-dark) !important;
}

body.theme-dark .about-story-toggle {
    background: #0f141c;
    color: #dbe8fa !important;
    border: 1px solid var(--border);
    box-shadow: none;
}

body.theme-dark .about-story-toggle:hover {
    background: #151d28;
}

body.theme-dark .brand-body .cta-secondary {
    background: #0f141c;
    color: #e6f0ff !important;
    border: 1px solid rgba(174, 196, 224, 0.3);
}

body.theme-dark .brand-body .cta-secondary:hover {
    background: #151d28;
}

body.theme-dark .about .principle-card {
    background: var(--surface-dark-2) !important;
    border: 1px solid var(--border);
}

body.theme-dark .about .principle-num,
body.theme-dark .about .principle-card h4,
body.theme-dark .about .principle-card p {
    color: var(--secondary) !important;
}

/* Keep color logos visible in dark mode */
body.theme-dark .logo-svg {
    filter: drop-shadow(0 0 10px rgba(160, 170, 185, 0.45))
            drop-shadow(0 0 2px rgba(130, 140, 155, 0.65));
}

body.theme-dark .brand-logo-snap-main {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.55))
            drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
}

/* Hero logos under the menu: use soft off-white instead of pure white */
body.theme-dark .hero-brand-panel .hero-block-logo-face,
body.theme-dark .hero-brand-panel .hero-block-logo-snap {
    filter: brightness(0) invert(0.86) contrast(0.92);
}

body.theme-dark .contact-icons-only .contact-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.theme-dark .contact-icons-only .contact-icon {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: var(--text-mid);
}

body.theme-dark .snap-inquiry-dialog {
    background: #0f141c;
    border: 1px solid var(--border);
}

body.theme-dark .snap-inquiry-close {
    background: #0f141c;
    color: var(--text-dark);
    border: 1px solid var(--border);
}

body.theme-dark .snap-inquiry-dialog h3,
body.theme-dark .snap-inquiry-form label span,
body.theme-dark .snap-inquiry-success {
    color: var(--text-dark);
}

body.theme-dark .snap-inquiry-subtitle {
    color: var(--text-mid);
}

body.theme-dark .snap-inquiry-form input,
body.theme-dark .snap-inquiry-form textarea {
    background: #0b1017;
    border: 1px solid var(--border);
    color: var(--text-dark);
}

body.theme-dark .visibody-assist-input,
body.theme-dark .visibody-assist-item {
    background: #0b1017;
    border: 1px solid var(--border);
    color: var(--text-dark);
}

body.theme-dark .visibody-assist-answer {
    background: #0f141c;
    border: 1px solid var(--border);
}

body.theme-dark .visibody-assist-answer-text {
    color: var(--text-dark);
}

body.theme-dark .dealer-inquiry-link {
    background: #0f141c;
    border: 1px solid rgba(174, 196, 224, 0.3);
    color: #e6f0ff;
}

body.theme-dark .dealer-inquiry-link:hover {
    background: #151d28;
}
