:root {
    --bg-sand: #f6f1e7;
    --bg-mist: #edf7f6;
    --bg-card: #ffffff;
    --teal-deep: #1f6561;
    --teal-main: #2f8e88;
    --teal-soft: #73b7b1;
    --sand-accent: #d8c6a2;
    --ink-main: #243333;
    --ink-soft: #546363;
    --line-soft: rgba(36, 51, 51, 0.14);
    --shadow-soft: 0 14px 36px rgba(31, 101, 97, 0.12);
    --shadow-card: 0 10px 24px rgba(16, 54, 51, 0.08);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --container: 1200px;
    --navbar-h: 92px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", "DM Sans", "Segoe UI", sans-serif;
    color: var(--ink-main);
    background:
        radial-gradient(circle at 15% 8%, rgba(115, 183, 177, 0.2), transparent 38%),
        radial-gradient(circle at 83% 22%, rgba(216, 198, 162, 0.24), transparent 36%),
        linear-gradient(180deg, #f8f4eb 0%, #eef7f6 58%, #f8f4eb 100%);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

section {
    padding: 56px 0;
    scroll-margin-top: calc(var(--navbar-h) + 8px);
}

.main-section {
    transition: opacity 0.45s ease, transform 0.45s ease, max-height 0.55s ease, margin 0.45s ease, padding 0.45s ease;
}

section h2 {
    scroll-margin-top: calc(var(--navbar-h) + 8px);
}

.products,
.about,
.technology,
.location,
.contact {
    padding-top: 52px;
    padding-bottom: 52px;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 1.22;
}

h2 {
    font-family: "Montserrat", "DM Sans", "Segoe UI", sans-serif;
    font-size: clamp(1.55rem, 3.2vw, 2.3rem);
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 14px;
    color: #101010;
}

p {
    margin: 0;
}

.section-subtitle {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
    color: var(--ink-soft);
    font-size: 1.03rem;
}

#location h2,
#history h2 {
    margin-bottom: 24px;
}

.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;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal-main), var(--teal-deep));
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(31, 101, 97, 0.28);
    padding: 12px 24px;
}

.btn-primary:hover {
    box-shadow: 0 14px 30px rgba(31, 101, 97, 0.34);
}

.btn-large {
    min-width: 210px;
    padding: 15px 28px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    height: var(--navbar-h);
    backdrop-filter: blur(12px);
    background: rgba(248, 244, 235, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-name {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--teal-deep);
    max-width: none;
    white-space: nowrap;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 12px;
    font-weight: 600;
    color: #234a47;
    font-size: 0.93rem;
    letter-spacing: 0.01em;
    position: relative;
    transition: color 0.25s ease;
}

.menu > li.dropdown > a::after {
    content: "";
    position: absolute;
    inset: 5px 2px;
    border: 1px solid rgba(74, 74, 74, 0.88);
    border-radius: 999px;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.menu > li.dropdown > a:hover::after,
.menu > li.dropdown > a:focus-visible::after,
.menu > li.dropdown:hover > a::after,
.menu > li.dropdown.is-open > a::after {
    opacity: 1;
    transform: scale(1);
}

.menu > li.dropdown > a:hover,
.menu > li.dropdown > a:focus-visible,
.menu > li.dropdown:hover > a,
.menu > li.dropdown.is-open > a {
    color: #2f3d3c;
}

.dropdown,
.dropdown-sub {
    position: relative;
}

.dropdown-menu,
.dropdown-submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    list-style: none;
    margin: 0;
    padding: 8px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(246, 252, 251, 0.98);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.dropdown-submenu {
    top: 0;
    left: calc(100% + 8px);
}

.dropdown-menu li a,
.dropdown-submenu li a,
.dropdown-sub > a {
    display: block;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.dropdown-menu li a:hover,
.dropdown-submenu li a:hover,
.dropdown-sub > a:hover {
    background: rgba(115, 183, 177, 0.18);
}

.dropdown:hover > .dropdown-menu,
.dropdown-sub:hover > .dropdown-submenu,
.dropdown.is-open > .dropdown-menu,
.dropdown-sub.is-open > .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-link-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.language-dropdown {
    position: relative;
    flex: 0 0 auto;
}

.language-trigger {
    border: 1px solid rgba(47, 142, 136, 0.18);
    background: rgba(255, 255, 255, 0.84);
    color: var(--teal-deep);
    border-radius: 999px;
    min-width: 72px;
    height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(26, 37, 36, 0.08);
    transition: border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.language-trigger:hover,
.language-trigger:focus-visible {
    border-color: rgba(47, 142, 136, 0.34);
    box-shadow: 0 14px 24px rgba(26, 37, 36, 0.12);
    transform: translateY(-1px);
}

.language-arrow {
    font-size: 0.88rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.language-dropdown.active .language-arrow {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    padding: 8px;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(47, 142, 136, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(26, 37, 36, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 40;
}

.language-dropdown.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu button {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--ink-main);
    border-radius: 12px;
    padding: 12px 14px;
    text-align: left;
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.is-active {
    background: rgba(47, 142, 136, 0.1);
    color: var(--teal-deep);
}

/* Korean typography adjustments */
html[lang="kr"] .nav-link,
html[lang="kr"] .menu > li > a,
html[lang="kr"] .dropdown-menu a {
    letter-spacing: -0.01em;
}

html[lang="kr"] {
    word-break: keep-all;
}

html[lang="kr"] .product-table td,
html[lang="kr"] .product-table th {
    line-height: 1.6;
}

html[lang="kr"] .news-title,
html[lang="kr"] .testimonial-content p {
    line-height: 1.7;
}

.hero {
    position: relative;
    min-height: calc(100vh - var(--navbar-h));
    padding: 0;
    overflow: hidden;
    isolation: isolate;
}

.hero-brand-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-brand-subtitle {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.96rem, 1.5vw, 1.14rem);
    line-height: 1.72;
    letter-spacing: 0.02em;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.28);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
}

.hero-overlay-shell {
    width: 100%;
    display: flex;
}

.hero-content {
    max-width: 720px;
    min-height: min(86vh, calc(100vh - var(--navbar-h) - 12px));
    padding: clamp(32px, 8vh, 96px) 0 clamp(14px, 3vh, 28px) clamp(20px, 8vw, 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 20px;
}

.hero-cta-btn,
.whatsapp-image-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero-cta-btn {
    width: 242px;
}

.whatsapp-image-button {
    width: 220px;
}

.hero-cta-btn:hover,
.whatsapp-image-button:hover {
    transform: translateY(-2px);
    opacity: 0.97;
}

.hero-cta-image {
    width: 242px;
    max-width: none;
    height: auto;
    object-fit: contain;
}

.whatsapp-btn-image {
    width: 220px;
    height: auto;
    object-fit: contain;
}

.hero-scroll-button {
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    display: grid;
    place-items: center;
    cursor: pointer;
    overflow: visible;
    animation: heroFloat 2s ease-in-out infinite;
    margin-top: 2px;
}

.hero-scroll-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transform: rotate(90deg);
}

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}

.quiz-section {
    position: relative;
    background:
        radial-gradient(circle at 92% 8%, rgba(115, 183, 177, 0.16), transparent 36%),
        linear-gradient(180deg, rgba(245, 249, 248, 0.95), rgba(243, 238, 227, 0.88));
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(216, 198, 162, 0.28);
}

.quiz-shell {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(216, 198, 162, 0.32);
    border-radius: 28px;
    box-shadow: 0 28px 52px rgba(22, 48, 46, 0.12);
    backdrop-filter: blur(6px);
    padding: clamp(22px, 3.5vw, 38px);
    display: grid;
    gap: 24px;
}

.quiz-heading {
    display: grid;
    gap: 8px;
    text-align: left;
}

.quiz-eyebrow {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #236964;
}

.quiz-heading h2 {
    text-align: left;
    margin: 0;
    color: #142f2e;
}

.quiz-intro {
    color: #415352;
    max-width: 760px;
    line-height: 1.7;
}

.quiz-progress {
    display: grid;
    gap: 10px;
}

.quiz-progress-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.quiz-progress-step-label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: #2f6c67;
}

.quiz-progress-count {
    font-size: 0.92rem;
    font-weight: 700;
    color: #183e3b;
}

.quiz-progress-track {
    position: relative;
    height: 10px;
    border-radius: 999px;
    background: rgba(31, 101, 97, 0.12);
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #3aa29a, #1f6561);
    box-shadow: 0 6px 14px rgba(47, 142, 136, 0.34);
    transition: width 0.4s ease;
}

.quiz-slider {
    position: relative;
    min-height: 430px;
}

.quiz-step {
    display: grid;
    gap: 18px;
    opacity: 1;
    transform: translateX(0) scale(1);
    transition: opacity 0.32s ease, transform 0.32s ease;
}

.quiz-step.is-exiting {
    opacity: 0;
    transform: translateX(-18px) scale(0.99);
}

.quiz-step.is-entering {
    opacity: 0;
    transform: translateX(18px) scale(0.99);
}

.quiz-step.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.quiz-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quiz-question {
    margin: 0;
    color: #132f2d;
    font-size: clamp(1.25rem, 2.5vw, 1.82rem);
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.quiz-helper-text {
    margin: 0;
    font-size: 0.88rem;
    color: #6b8f8e;
    font-weight: 500;
    font-style: italic;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.quiz-option {
    border: 1px solid rgba(31, 101, 97, 0.2);
    border-radius: 16px;
    background: #ffffff;
    min-height: 70px;
    font-size: 1.02rem;
    font-weight: 600;
    color: #133533;
    text-align: left;
    padding: 18px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.quiz-option:hover,
.quiz-option:focus-visible {
    border-color: rgba(31, 101, 97, 0.52);
    background: linear-gradient(180deg, #f8fefe, #f0fbfa);
    box-shadow: 0 14px 20px rgba(31, 101, 97, 0.14);
    transform: translateY(-2px);
}

/* Single-select active state */
.quiz-option.is-active {
    border-color: #1f6561;
    background: linear-gradient(180deg, #eef9f8, #ddf3f1);
    box-shadow: 0 0 0 2px rgba(31, 101, 97, 0.28), 0 8px 18px rgba(31, 101, 97, 0.12);
    color: #0e3734;
}

/* Multi-select selected state */
.quiz-option.is-selected {
    border-color: #1f6561;
    background: linear-gradient(180deg, #eef9f8, #ddf3f1);
    box-shadow: 0 0 0 2px rgba(31, 101, 97, 0.28), 0 8px 18px rgba(31, 101, 97, 0.12);
    color: #0e3734;
}

/* Checkmark indicator for multi-select */
.quiz-checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(31, 101, 97, 0.3);
    border-radius: 4px;
    background: #ffffff;
    font-size: 0.8rem;
    color: #1f6561;
    font-weight: 800;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.25s ease;
}

.quiz-option-text {
    flex: 1;
}

.quiz-option.is-selected .quiz-checkmark {
    opacity: 1;
    transform: scale(1);
    border-color: #1f6561;
    background: linear-gradient(135deg, #1f6561, #2a8a84);
    color: #ffffff;
}

/* Gate layout: 2 full-width stacked options */
.quiz-options--gate {
    grid-template-columns: 1fr;
}

.quiz-options--gate .quiz-option {
    min-height: 64px;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.45;
    text-align: left;
}

/* Wide layout for 6+ options: 3 columns */
.quiz-options--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quiz-options--contact {
    grid-template-columns: 1fr;
}

.quiz-contact-section {
    width: 100%;
}

.quiz-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.quiz-phone-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    align-items: stretch;
    gap: 12px;
    width: 100%;
}

.quiz-contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quiz-contact-area-code {
    width: 100%;
    min-width: 0;
    max-width: none;
    flex-shrink: 0;
}

.quiz-contact-phone {
    width: 100%;
    min-width: 0;
}

.quiz-contact-phone .phone-input {
    width: 100%;
}

.quiz-contact-grid input,
.quiz-area-code-select {
    height: 56px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    color: #173736;
    font-size: 0.94rem;
    font-family: inherit;
}

.quiz-area-code-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23173736' d='M2 5l6 6 6-6H2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 40px;
}

.quiz-contact-grid input::placeholder,
.quiz-area-code-select::placeholder {
    color: #6f8f8d;
}

.quiz-contact-grid input:focus,
.quiz-area-code-select:focus {
    outline: none;
    border-color: #25d366;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.12);
    background-color: rgba(255, 255, 255, 0.9);
}

.quiz-area-code-select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%2325d366' d='M2 5l6 6 6-6H2z'/%3E%3C/svg%3E");
    background-color: rgba(255, 255, 255, 0.9);
}

.quiz-contact-grid input.is-invalid,
.quiz-area-code-select.is-invalid {
    border-color: rgba(203, 67, 53, 0.72);
    box-shadow: 0 0 0 3px rgba(203, 67, 53, 0.14);
}

.quiz-contact-error {
    margin: 0;
    min-height: 16px;
    font-size: 0.75rem;
    color: #c0392b;
    opacity: 0;
    transform: translateY(-2px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.quiz-contact-error.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Multi-select footer: hint + continue button */
.quiz-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 8px;
}

.quiz-multiselect-hint {
    margin: 0;
    font-size: 0.88rem;
    color: #6b8f8e;
    font-style: italic;
}

.quiz-continue-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 32px;
    background: linear-gradient(135deg, #1f6561, #2a8a84);
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.quiz-continue-btn:hover:not(:disabled),
.quiz-continue-btn:focus-visible:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(31, 101, 97, 0.3);
}

.quiz-continue-btn:disabled {
    cursor: not-allowed;
    opacity: 0.45;
    box-shadow: none;
    transform: none;
}

body.quiz-active .main-section:not(.quiz-section):not(.hero) {
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    transform: translateY(-16px);
}

body.quiz-active .footer,
body.quiz-active .scroll-top-btn,
body.quiz-active .whatsapp-float {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.products,
.competency,
.your-brand,
.contact {
    background: linear-gradient(180deg, rgba(238, 247, 246, 0.78), rgba(246, 241, 231, 0.94));
}

.products-gateway {
    padding-top: 96px;
}

.product-gateway-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2.4vw, 24px);
}

.product-gateway-item {
    display: grid;
    gap: 8px;
}

.product-gateway-heading {
    margin: 0;
    text-align: center;
    font-size: calc(0.93rem + 1px);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #434343;
}

.product-gateway-card {
    position: relative;
    display: block;
    min-height: clamp(260px, 35vw, 340px);
    border: 4px solid rgba(55, 55, 55, 0.9);
    border-radius: 26px;
    overflow: hidden;
    text-decoration: none;
    isolation: isolate;
    box-shadow: 0 14px 26px rgba(26, 37, 36, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-gateway-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 28, 28, 0.06) 18%, rgba(8, 28, 28, 0.46) 100%);
    z-index: 0;
}

.product-gateway-card:hover,
.product-gateway-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 20px 34px rgba(26, 37, 36, 0.2);
}

.product-gateway-media {
    position: absolute;
    inset: 0;
}

.product-gateway-image,
.product-gateway-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gateway-image {
    z-index: 0;
}

.product-gateway-video {
    z-index: 1;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.product-gateway-card:hover .product-gateway-video,
.product-gateway-card:focus-visible .product-gateway-video {
    opacity: 1;
}

.product-anchor-target {
    height: 1px;
    margin-top: -1px;
    scroll-margin-top: calc(var(--navbar-h) + 8px);
}

.about {
    background: rgba(250, 248, 243, 0.74);
}

.about-main-title {
    margin-bottom: 22px;
}

.about-stack {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: clamp(10px, 1.8vw, 16px);
    width: min(980px, 100%);
    margin: 0 auto;
}

.about-block {
    width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid rgba(216, 198, 162, 0.36);
    box-shadow: var(--shadow-card);
    padding: clamp(14px, 2vw, 20px);
    text-align: center;
}

.about-block-title {
    margin-bottom: 6px;
    color: var(--teal-deep);
    letter-spacing: 0.08em;
    font-size: calc(0.86rem + 4px);
    text-align: center;
}

.about-description {
    color: var(--ink-soft);
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-block-core-value {
    overflow: visible;
    text-align: center;
    padding-bottom: clamp(16px, 2vw, 22px);
}

.about-block-core-value .about-block-title {
    margin-bottom: clamp(8px, 1.2vw, 12px);
}

.about-visual {
    width: min(1100px, 100%);
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.about-core-image {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 22px 42px rgba(24, 56, 53, 0.18);
}

.about-core-values-panel,
.history-timeline-panel {
    display: none;
}

.about-core-values-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: min(1100px, 100%);
    margin: 14px auto 0;
}

.about-core-value-item,
.history-timeline-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(216, 198, 162, 0.34);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 18px;
    text-align: left;
}

.about-core-value-item h4,
.history-timeline-card h3 {
    color: var(--teal-deep);
    margin-bottom: 8px;
}

.about-core-value-item p,
.history-timeline-card p {
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.7;
}

.about-core-value-item p + p,
.history-timeline-card p + p {
    margin-top: 10px;
}

.quality-marquee {
    display: grid;
    gap: 18px;
}

.quality-subtitle {
    max-width: 820px;
    margin: 12px auto 28px;
    text-align: center;
    color: var(--ink-soft);
    line-height: 1.7;
}

.quality-row {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-card);
    padding: 24px 0;
}

.quality-track {
    display: flex;
    width: max-content;
    animation: qualityMarquee 46s linear infinite;
}

.quality-set {
    display: flex;
    align-items: center;
    gap: clamp(28px, 3vw, 48px);
    padding: 0 clamp(18px, 2.5vw, 28px);
}

.quality-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.quality-item img {
    width: clamp(300px, 24vw, 400px);
    height: clamp(170px, 13.5vw, 220px);
    object-fit: contain;
}

.quality-caption {
    margin: 0;
    max-width: 220px;
    color: #1f2f2e;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
    text-wrap: balance;
}

@keyframes qualityMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.competency-infographic-wrap {
    max-width: 960px;
    margin: 0 auto;
}

.competency-infographic {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.service-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(216, 198, 162, 0.32);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 16px;
}

.service-card h3 {
    margin-bottom: 8px;
    color: var(--teal-deep);
}

.service-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.64;
}

.competency-img {
    width: 100%;
}

.competency-img-base {
    position: relative;
    z-index: 1;
}

.competency-img-hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 3;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.3s ease;
}

.competency-hover-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.competency-infographic.is-hover-active .competency-hover-overlay {
    opacity: 0.8;
}

.competency-img-hover.is-active {
    opacity: 1;
}

.competency-zone {
    position: absolute;
    z-index: 4;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.zone-top-left {
    left: 8%;
    top: 12%;
    width: 40%;
    height: 34%;
}

.zone-top-right {
    right: 8%;
    top: 12%;
    width: 40%;
    height: 34%;
}

.zone-bottom-left {
    left: 8%;
    bottom: 12%;
    width: 40%;
    height: 34%;
}

.zone-bottom-right {
    right: 8%;
    bottom: 12%;
    width: 40%;
    height: 34%;
}

.technology {
    background: rgba(250, 248, 243, 0.74);
}

.tech-grid {

.tech-copy {
    padding: 16px 18px 18px;
    text-align: center;
}

.tech-copy h3 {
    margin-bottom: 8px;
    color: var(--teal-deep);
}

.tech-copy p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.64;
    text-wrap: pretty;
}
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.tech-card {
    width: 100%;
    max-width: 900px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.tech-visual-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1);
    filter: brightness(1);
    transition: transform 0.45s ease, filter 0.45s ease;
    will-change: transform;
}

.tech-card:hover {
    box-shadow: 0 16px 30px rgba(22, 56, 53, 0.16);
    border-color: rgba(31, 101, 97, 0.24);
}

.tech-card:hover .tech-visual-image {
    animation: techHoverBreathe 0.5s ease forwards;
    filter: brightness(1.03);
}

@keyframes techHoverBreathe {
    0% {
        transform: scale(1);
    }

    60% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.02);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tech-card,
    .tech-visual-image {
        transition: none;
    }

    .tech-card:hover .tech-visual-image {
        animation: none;
        transform: scale(1.02);
    }
}

.testimonials {
    background: #f4f8f8;
}

.partner-marquee {
    display: grid;
    gap: 18px;
}

.partner-row {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-card);
    padding: 24px 0;
}

.partner-track {
    display: flex;
    width: max-content;
    animation: logoMarquee 46s linear infinite;
}

.partner-row-bottom .partner-track {
    animation-direction: reverse;
    animation-duration: 50s;
}

.partner-set {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 40px);
    padding: 0 clamp(18px, 2.5vw, 28px);
}

.partner-logo-card {
    width: clamp(300px, 24vw, 400px);
    height: clamp(170px, 13.5vw, 220px);
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(27, 80, 76, 0.1);
    display: grid;
    place-items: center;
    padding: clamp(18px, 2.4vw, 28px);
}

.partner-logo {
    max-height: clamp(150px, 11.5vw, 176px);
    width: 100%;
    object-fit: contain;
}

@keyframes logoMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.your-brand {
    text-align: center;
}

.brand-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.benefit {
    background: rgba(255, 255, 255, 0.78);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-card);
    padding: 18px;
}

.benefit h3 {
    font-size: 1rem;
    color: var(--teal-deep);
    margin-bottom: 6px;
}

.benefit p {
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.location {
    background: rgba(250, 248, 243, 0.8);
}

.location-content {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 20px;
    align-items: start;
}

.location-intro {
    max-width: 860px;
    margin: 14px auto 28px;
    text-align: center;
    color: var(--ink-soft);
    line-height: 1.7;
}

.location-info {
    display: grid;
    gap: 12px;
}

.location-item {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-card);
    padding: 18px;
}

.location-item h3 {
    color: var(--teal-deep);
    margin-bottom: 8px;
    font-size: 1rem;
}

.location-item p {
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.location-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
    background: #ffffff;
}

.location-map-switcher {
    display: flex;
    gap: 10px;
    padding: 12px;
    border-bottom: 1px solid var(--line-soft);
}

.location-map-helper {
    margin: 0;
    padding: 14px 16px 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}

.map-switch-btn {
    border: 1px solid rgba(47, 142, 136, 0.4);
    border-radius: 999px;
    background: #f3f9f9;
    color: var(--teal-deep);
    font-weight: 600;
    padding: 9px 14px;
    cursor: pointer;
}

.map-switch-btn.active {

html[lang="kr"] .service-card p,
html[lang="kr"] .tech-card p {
    line-height: 1.7;
}
    background: linear-gradient(135deg, var(--teal-main), var(--teal-deep));
    color: #fff;
    border-color: transparent;
}

.company-location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
}

.company-ghost-btn {
    border: 1px solid rgba(47, 142, 136, 0.35);
    background: #f5fbfb;
    color: var(--teal-deep);
    padding: 12px 22px;
}

.company-ghost-btn:hover {
    box-shadow: 0 12px 24px rgba(31, 101, 97, 0.16);
}

html[lang="kr"] .about-core-image,
html[lang="kr"] .history-visual-image {
    display: none;
}

html[lang="kr"] .about-core-values-panel,
html[lang="kr"] .history-timeline-panel {
    display: grid;
}

html[lang="kr"] .history-timeline-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

html[lang="kr"] .vision-text,
html[lang="kr"] .mission-text,
html[lang="kr"] .core-value-text {
    line-height: 1.7;
}

#locationMapFrame {
    min-height: 390px;
    width: 100%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    align-items: stretch;
}

.contact-form-section,
.contact-whatsapp-section {
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.contact-form-section h3 {
    margin-bottom: 18px;
    color: var(--teal-deep);
}

.contact-form {
    display: grid;
    gap: 14px;
}

.form-group {
    display: grid;
    gap: 6px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink-main);
}

.form-group input,
.form-group textarea {
    border: 1px solid rgba(36, 51, 51, 0.2);
    border-radius: 12px;
    padding: 11px 13px;
    font: inherit;
    color: var(--ink-main);
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-soft);
    box-shadow: 0 0 0 3px rgba(115, 183, 177, 0.2);
}

.contact-feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: grid;
    place-items: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.contact-feedback-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.contact-feedback-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 31, 31, 0.55);
    backdrop-filter: blur(3px);
}

.contact-feedback-modal__dialog {
    position: relative;
    width: min(540px, calc(100vw - 32px));
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 250, 0.98));
    border: 1px solid rgba(137, 177, 172, 0.42);
    box-shadow: 0 26px 60px rgba(13, 53, 49, 0.32);
    padding: 24px 24px 20px;
    transform: translateY(14px) scale(0.98);
    transition: transform 0.28s ease;
}

.contact-feedback-modal.is-visible .contact-feedback-modal__dialog {
    transform: translateY(0) scale(1);
}

.contact-feedback-modal__close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: 0;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: transparent;
    color: rgba(20, 60, 57, 0.75);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.contact-feedback-modal__close:hover {
    background: rgba(79, 143, 142, 0.12);
    color: var(--teal-deep);
}

.contact-feedback-modal__title {
    margin: 0 34px 10px 0;
    font-size: 1.18rem;
    color: var(--teal-deep);
}

.contact-feedback-modal__body {
    margin: 0;
    color: var(--ink-main);
    line-height: 1.65;
}

.contact-feedback-modal__button {
    margin-top: 18px;
    min-width: 120px;
}

body.has-contact-feedback-modal {
    overflow: hidden;
}

.contact-whatsapp-section {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 236px;
}

.whatsapp-large {
    width: 100%;
    position: relative;
}

.whatsapp-btn-image-large {
    position: absolute;
    top: 0;
    left: 0;
    width: min(220px, 100%);
}

@media (max-width: 640px) {
    .contact-feedback-modal__dialog {
        width: calc(100vw - 24px);
        padding: 20px 18px 16px;
        border-radius: 14px;
    }

    .contact-feedback-modal__title {
        font-size: 1.02rem;
    }

    .contact-feedback-modal__body {
        font-size: 0.93rem;
    }

    .contact-feedback-modal__button {
        width: 100%;
    }
}

.footer {
    padding: 58px 0 28px;
    color: #dce8e6;
    background:
        radial-gradient(circle at 11% 8%, rgba(115, 183, 177, 0.24), transparent 35%),
        radial-gradient(circle at 86% 22%, rgba(216, 198, 162, 0.2), transparent 40%),
        #143c39;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 20px;
}

.footer-nav-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.footer-title {
    margin-bottom: 10px;
    color: #f6f1e7;
    font-size: 1rem;
}

.footer-nav-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 7px;
}

.footer-nav-group li a {
    color: #c8ddd9;
    font-size: 0.9rem;
}

.footer-nav-group li a:hover {
    color: #f9f5eb;
}

.footer-office-columns {
    display: grid;
    gap: 12px;
}

.footer-office-block {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 12px;
}

.footer-office-block h4 {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #f6f1e7;
}

.footer-office-block p {
    margin: 0;
    font-size: 0.83rem;
    color: #c8ddd9;
}

.footer-sns {
    margin-top: 18px;
}

.footer-sns-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-sns-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0.9;
    transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

.footer-sns-link:hover,
.footer-sns-link:focus-visible {
    transform: scale(1.08);
    opacity: 1;
    filter: brightness(1.12);
}

.footer-sns-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.footer-copyright {
    margin-top: 28px;
    text-align: center;
    font-size: 0.88rem;
    color: #a9c4bf;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    box-shadow: 0 14px 26px rgba(8, 44, 42, 0.35);
    animation: floatPulse 2.1s ease-in-out infinite;
}

.whatsapp-float.quiz-cta-pulse {
    border: 2px solid #25d366;
    box-shadow: 0 14px 26px rgba(8, 44, 42, 0.35), 0 0 0 rgba(37, 211, 102, 0.25);
    animation: floatPulse 2.1s ease-in-out infinite, whatsappButtonPulse 2.4s ease-in-out infinite;
}

.scroll-top-btn {
    position: fixed;
    right: 22px;
    bottom: 100px;
    z-index: 1000;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    box-shadow: 0 14px 26px rgba(8, 44, 42, 0.35);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.scroll-top-btn.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(-90deg);
}

.category-page {
    padding: calc(var(--navbar-h) + 34px) 0 92px;
}

.category-layout {
    display: grid;
    gap: 24px;
}

.category-hero-card {
    position: relative;
    min-height: clamp(260px, 32vw, 360px);
    border-radius: 34px;
    overflow: hidden;
    display: grid;
    place-items: center;
    text-align: center;
    padding: clamp(40px, 6vw, 72px) clamp(32px, 7vw, 96px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 20px 46px rgba(17, 58, 55, 0.16);
}

.category-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.62));
}

.category-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.14), transparent 60%);
}

.category-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    display: grid;
    gap: 6px;
    justify-items: center;
}

.category-hero-line1 {
    font-family: "Montserrat", "DM Sans", "Segoe UI", sans-serif;
    font-size: clamp(1rem, 1.75vw, 1.24rem);
    font-weight: 700;
    color: #151515;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.category-hero-line2 {
    font-family: "Montserrat", "DM Sans", "Segoe UI", sans-serif;
    font-size: clamp(1.7rem, 3.2vw, 2.45rem);
    font-weight: 800;
    color: #121212;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.category-hero-tagline {
    max-width: 760px;
    font-size: clamp(0.88rem, 1.2vw, 0.93rem);
    color: #1f2f2e;
    line-height: 1.5;
    margin-top: 4px;
}

.category-hero-bodycare {
    background-image: url("assets/images/BODYCARE/photo_bodycare_all.png");
}

.category-hero-skincare {
    background-image: url("assets/images/SKINCARE/photo_skincare_all.png");
}

.category-hero-haircare {
    background-image: url("assets/images/HAIRCARE/photo_haircare_all.png");
}

.category-subproducts {
    background: rgba(255, 255, 255, 0.44);
    border: 1px solid rgba(31, 101, 97, 0.06);
    border-radius: 30px;
    padding: clamp(22px, 3.5vw, 40px) clamp(48px, 6vw, 68px);
    box-shadow: 0 12px 28px rgba(20, 54, 52, 0.08);
}

.category-slider {
    position: relative;
    overflow: visible;
}

.category-slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 2px 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.bodycare-track-center {
    justify-content: center;
}

.category-slider-track::-webkit-scrollbar {
    display: none;
}

.category-circle-card {
    flex: 0 0 calc((100% - (24px * 4)) / 5);
    min-width: 184px;
    text-align: center;
    scroll-snap-align: start;
}

.category-circle-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-circle-card.is-active-product .category-circle-title {
    color: #1f6561;
}

.category-circle-card.is-active-product .category-circle-media {
    border-color: rgba(31, 101, 97, 0.48);
    box-shadow: 0 16px 28px rgba(17, 56, 52, 0.2);
    transform: translateY(-3px) scale(1.02);
}

.category-circle-title {
    margin-bottom: 14px;
    font-size: 0.93rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #1a2323;
}

.category-circle-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(36, 51, 51, 0.1);
    box-shadow: 0 12px 24px rgba(17, 56, 52, 0.14);
    background: #ffffff;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-circle-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.32s ease;
}

.category-circle-media.is-empty {
    position: relative;
    isolation: isolate;
    display: grid;
    place-items: center;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-style: dashed;
    border-color: rgba(36, 51, 51, 0.18);
    background:
        radial-gradient(circle at 26% 22%, rgba(255, 255, 255, 0.96), rgba(247, 248, 246, 0.94) 34%, transparent 62%),
        radial-gradient(circle at 74% 82%, rgba(226, 231, 226, 0.85), transparent 54%),
        linear-gradient(145deg, #f6f5f2 0%, #eeefea 50%, #e8ebe6 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.7),
        inset 0 -10px 24px rgba(181, 189, 182, 0.22),
        0 12px 24px rgba(17, 56, 52, 0.12);
}

.category-circle-media.is-empty::before {
    content: "";
    position: absolute;
    width: 46%;
    height: 46%;
    border-radius: 50%;
    border: 1px solid rgba(112, 123, 118, 0.22);
    background: radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.62), rgba(240, 243, 239, 0.2));
    z-index: 0;
}

.category-circle-media.is-empty::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(108, 122, 116, 0.38);
    top: 34%;
    z-index: 0;
}

.category-empty-label {
    position: relative;
    z-index: 1;
    max-width: 82%;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #536362;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(111, 123, 117, 0.24);
    background: rgba(251, 252, 250, 0.72);
    backdrop-filter: blur(1px);
}

.category-circle-link:hover .category-circle-media,
.category-circle-link:focus-visible .category-circle-media {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(17, 56, 52, 0.2);
}

.category-circle-link:hover .category-circle-media img,
.category-circle-link:focus-visible .category-circle-media img {
    transform: scale(1.06);
}

.category-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(31, 101, 97, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: #1f6561;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(19, 54, 51, 0.13), 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    z-index: 2;
    user-select: none;
}

.category-slider-btn:hover {
    transform: translateY(-50%) scale(1.08);
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(19, 54, 51, 0.2);
}

.category-slider-btn:active {
    transform: translateY(-50%) scale(0.96);
}

.category-slider-btn.is-hidden {
    display: none;
}

.category-slider-btn.prev {
    left: -20px;
}

.category-slider-btn.next {
    right: -20px;
}

.category-detail-showcase {
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(31, 101, 97, 0.09);
    border-radius: 30px;
    padding: clamp(22px, 3.8vw, 44px);
    box-shadow: 0 14px 30px rgba(18, 54, 52, 0.1);
}

.category-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: start;
}

.category-showcase-gallery {
    display: grid;
    gap: 14px;
}

.category-showcase-main {
    position: relative;
    width: min(70%, 560px);
    margin-inline: auto;
}

.category-showcase-main-viewport {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(15, 54, 49, 0.16);
    background: #f5f7f7;
}

.category-showcase-main-track {
    display: flex;
    transition: transform 0.46s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.category-showcase-slide {
    flex: 0 0 100%;
    margin: 0;
    aspect-ratio: 4 / 5;
}

.category-showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-showcase-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(31, 101, 97, 0.32);
    color: #ffffff;
    font-size: 1.48rem;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
    z-index: 2;
}

.category-showcase-arrow:hover {
    transform: translateY(-50%) scale(1.08);
    background: rgba(31, 101, 97, 0.5);
}

.category-showcase-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.category-showcase-arrow.prev {
    left: 12px;
}

.category-showcase-arrow.next {
    right: 12px;
}

.category-showcase-thumbs {
    --thumb-size: clamp(72px, 5.2vw, 92px);
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(8px, 1vw, 12px);
    width: min(70%, 560px);
    margin-inline: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 2px 6px;
}

.category-showcase-thumbs::-webkit-scrollbar {
    display: none;
}

.category-showcase-thumbs:has(.category-showcase-thumb:nth-child(n+5)) {
    --thumb-size: clamp(64px, 4.7vw, 80px);
}

.category-showcase-thumbs:has(.category-showcase-thumb:nth-child(n+7)) {
    --thumb-size: clamp(56px, 4vw, 68px);
}

.category-showcase-thumbs:has(.category-showcase-thumb:nth-child(n+9)) {
    --thumb-size: clamp(50px, 3.5vw, 60px);
}

.category-showcase-thumb {
    flex: 0 0 var(--thumb-size);
    width: var(--thumb-size);
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    border: 1px solid rgba(31, 101, 97, 0.18);
    overflow: hidden;
    padding: 0;
    background: #ffffff;
    cursor: pointer;
    opacity: 0.75;
    transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    scroll-snap-align: center;
}

.category-showcase-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-showcase-thumb.is-active {
    opacity: 1;
    transform: scale(1.04);
    border-color: rgba(31, 101, 97, 0.55);
    box-shadow: 0 8px 18px rgba(23, 62, 58, 0.16);
}

.category-showcase-content {
    --showcase-text-color: #1f6561;
    display: grid;
    align-content: start;
    gap: 14px;
    color: var(--showcase-text-color);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.category-showcase-content.is-switching {
    opacity: 0.62;
    transform: translateY(3px);
}

.category-showcase-title {
    margin: 0;
    font-family: "Montserrat", "DM Sans", "Segoe UI", sans-serif;
    font-size: clamp(1.7rem, 3.3vw, 2.45rem);
    line-height: 1.18;
    letter-spacing: 0.01em;
    color: var(--showcase-text-color);
}

.category-showcase-title em {
    font-style: italic;
    color: var(--showcase-text-color);
    margin: 0 0.08em;
}

.category-showcase-title-product {
    color: var(--showcase-text-color);
}

.category-showcase-definition {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.68;
    color: var(--showcase-text-color);
}

.category-showcase-description {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.72;
    color: var(--showcase-text-color);
}

.category-showcase-positioning {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.64;
    color: #1b5a56;
    font-weight: 600;
}

.category-showcase-content.quiz-result-mode {
    gap: 16px;
}

.quiz-result-popup {
    position: relative;
    display: grid;
    gap: 12px;
    padding: clamp(16px, 2vw, 24px);
    border-radius: 24px;
    border: 2px solid rgba(37, 211, 102, 0.64);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 255, 251, 0.9));
    box-shadow: 0 12px 36px rgba(15, 40, 38, 0.12);
    backdrop-filter: blur(7px);
    animation: quizPopupEnter 0.58s cubic-bezier(0.2, 0.82, 0.21, 1), whatsappGlow 2.6s ease-in-out infinite;
}

.quiz-result-popup:hover {
    box-shadow: 0 16px 44px rgba(15, 40, 38, 0.16), 0 0 20px rgba(37, 211, 102, 0.24);
}

.quiz-result-popup .category-showcase-title {
    margin-bottom: 2px;
}

.quiz-result-popup .category-showcase-definition {
    font-weight: 600;
}

.quiz-popup-cta {
    justify-self: start;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid rgba(37, 211, 102, 0.7);
    background: linear-gradient(135deg, #25d366, #1db954);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.quiz-popup-cta:hover,
.quiz-popup-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.34);
    filter: saturate(1.05);
}

.category-showcase-features {
    --feature-gap: clamp(14px, 1.4vw, 22px);
    --feature-duration: 64s;
    margin-top: 6px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: var(--feature-gap);
    padding-top: 0;
    mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}

.category-feature-marquee-track {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.4vw, 22px);
    min-width: max-content;
    flex-shrink: 0;
    padding-top: 0;
    padding-bottom: 0;
    animation: categoryFeatureMarquee var(--feature-duration) linear infinite;
}

.category-showcase-feature {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    min-width: fit-content;
    min-height: unset;
    padding: 2px 10px;
    margin: 0;
    border: 1px solid rgba(31, 101, 97, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 22px rgba(14, 52, 49, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.category-showcase-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(31, 101, 97, 0.12);
    border-color: rgba(31, 101, 97, 0.22);
}

.feature-icon {
    width: 240px;
    min-width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 240px;
    height: 240px;
    object-fit: contain;
    display: block;
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    max-width: 180px;
}

.feature-content h4 {
    margin: 0 0 2px 0;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--teal-deep);
}

.feature-content p {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.3;
    max-width: 24ch;
    color: var(--ink-soft);
}

@keyframes categoryFeatureMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--feature-gap)));
    }
}

.whatsapp-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes floatPulse {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-4px) scale(1.04);
    }
}

@keyframes whatsappGlow {
    0%,
    100% {
        box-shadow: 0 12px 36px rgba(15, 40, 38, 0.12), 0 0 0 rgba(37, 211, 102, 0.16);
        border-color: rgba(37, 211, 102, 0.62);
    }

    50% {
        box-shadow: 0 16px 46px rgba(15, 40, 38, 0.16), 0 0 18px rgba(37, 211, 102, 0.38);
        border-color: #25d366;
    }
}

@keyframes quizPopupEnter {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes whatsappButtonPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 14px 26px rgba(8, 44, 42, 0.35), 0 0 0 rgba(37, 211, 102, 0.2);
    }

    50% {
        transform: scale(1.045);
        box-shadow: 0 14px 26px rgba(8, 44, 42, 0.35), 0 0 18px rgba(37, 211, 102, 0.42);
    }
}

@media (max-width: 1080px) {
    .brand-name {
        display: none;
    }

    .menu {
        gap: 14px;
    }

    .menu > li > a {
        font-size: 0.87rem;
        padding: 0 10px;
    }

    .brand-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .location-content,
    .contact-content,
    .footer-layout {
        grid-template-columns: 1fr;
    }

    .partner-logo-card {
        width: clamp(240px, 30vw, 320px);
        height: clamp(136px, 17vw, 176px);
    }

    .partner-logo {
        max-height: clamp(96px, 12vw, 128px);
    }

    .category-circle-card {
        flex-basis: calc((100% - (24px * 2)) / 3);
    }

    .category-showcase-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
        gap: 24px;
    }

    .category-showcase-main,
    .category-showcase-thumbs {
        width: min(78%, 500px);
    }

    .category-showcase-features {
        --feature-gap: clamp(16px, 1.6vw, 26px);
        --feature-duration: 62s;
    }

    .category-showcase-feature img {
        width: 240px;
        height: 240px;
    }

    .bodycare-track-center {
        justify-content: flex-start;
    }
}

    .page-section-pad {
        padding-top: clamp(96px, 11vw, 136px);
    }

    .history {
        background: linear-gradient(180deg, rgba(79, 143, 142, 0.06) 0%, rgba(79, 143, 142, 0) 100%);
    }

    .testimonial-content p {
        margin: 0;
        color: var(--text-secondary);
        line-height: 1.7;
    }

    .history-visual {
        width: min(100%, 980px);
        margin: 22px auto 0;
    }

    .history-visual-image {
        width: 100%;
        height: auto;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-card);
        object-fit: contain;
    }

    .story-section .about-main-title {
        margin-bottom: 14px;
    }

    .news-filter {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin: 24px 0 40px;
        flex-wrap: wrap;
    }

    .filter-btn {
        border: 1px solid rgba(36, 51, 51, 0.22);
        background: transparent;
        color: #233534;
        padding: 8px 18px;
        border-radius: 999px;
        cursor: pointer;
        font-size: 0.9rem;
        letter-spacing: 0.03em;
        transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
    }

    .filter-btn.active {
        background: #111111;
        color: #ffffff;
        border-color: #111111;
    }

    .news-list {
        display: flex;
        flex-direction: column;
        gap: 32px;
        transition: opacity 0.28s ease, transform 0.28s ease;
    }

    .news-list.is-updating {
        opacity: 0.42;
        transform: translateY(6px);
    }

    .news-item {
        display: flex;
        gap: 24px;
        align-items: flex-start;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(36, 51, 51, 0.12);
    }

    .news-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .news-thumb {
        width: 180px;
        height: 140px;
        object-fit: cover;
        border-radius: 12px;
        flex: 0 0 auto;
    }

    .news-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        min-width: 0;
    }

    .news-title {
        margin: 0;
        font-weight: 700;
        font-size: 1.05rem;
        color: #0f2221;
    }

    .news-summary {
        margin: 0;
        font-size: 1rem;
        line-height: 1.65;
        color: #374847;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-date {
        margin: 0;
        font-size: 0.92rem;
        color: #5a6767;
        font-style: italic;
    }

    .news-link {
        font-size: 0.95rem;
        font-style: italic;
        color: #687474;
        transition: color 0.2s ease;
    }

    .news-link:hover {
        color: #203533;
    }

    .news-pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 32px;
    }

    .page-btn {
        min-width: 34px;
        height: 34px;
        border: 1px solid rgba(36, 51, 51, 0.24);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        color: #253534;
        cursor: pointer;
        transition: background-color 0.22s ease, color 0.22s ease;
    }

    .page-btn.active {
        background: #111111;
        color: #ffffff;
        border-color: #111111;
    }

    .partner-success {
        padding: 88px 0;
    }

    .partner-testimonial {
        display: flex;
        align-items: center;
        gap: 60px;
        margin-bottom: 80px;
    }

    .partner-testimonial:last-child {
        margin-bottom: 0;
    }

    .testimonial-image {
        width: 320px;
        height: 320px;
        background: #f4f4f4;
        overflow: hidden;
        flex: 0 0 auto;
    }

    .testimonial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .testimonial-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 520px;
    }

    .testimonial-content .partner-logo {
        width: 25%;
        margin-bottom: 18px;
        object-fit: contain;
    }

@media (max-width: 768px) {
    :root {
        --navbar-h: 92px;
    }

    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    section {
        padding: 56px 0;
    }

    .navbar {
        position: sticky;
        height: auto;
        padding: 10px 0;
    }

    .nav-container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .nav-left,
    .nav-right {
        width: 100%;
        justify-content: space-between;
    }

    .menu {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
        position: relative;
    }

    .menu > li > a {
        min-height: 36px;
        font-size: 0.82rem;
        padding: 0 8px;
    }

    .menu > li.dropdown > a::after {
        inset: 4px 1px;
    }

    .nav-right {
        gap: 10px;
    }

    .menu {
        flex: 1 1 auto;
        min-width: 0;
        width: auto;
    }

    .language-trigger {
        min-width: 66px;
        height: 40px;
        padding: 0 14px;
        font-size: 0.78rem;
    }

    .language-menu {
        right: 0;
        min-width: 170px;
    }

    .dropdown-menu,
    .dropdown-submenu {
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        right: auto;
        width: min(86vw, 320px);
    }

    .dropdown-submenu {
        position: static;
        width: 100%;
        margin-top: 6px;
        transform: none;
    }

    .hero {
        min-height: calc(100vh - 100px);
    }

    .hero-overlay {
        min-height: calc(100vh - 100px);
    }

    .hero-content {
        min-height: calc(100vh - 100px);
        padding: 30px 0 14px clamp(16px, 6vw, 52px);
        gap: 14px;
    }

    .hero-brand-title {
        font-size: clamp(1.72rem, 6.2vw, 2.4rem);
    }

    .hero-brand-subtitle {
        font-size: 0.95rem;
        max-width: 92%;
        line-height: 1.6;
    }

    .quiz-section {
        padding: 34px 0;
    }

    .quiz-shell {
        border-radius: 22px;
        padding: 18px;
        gap: 18px;
    }

    .quiz-slider {
        min-height: 500px;
    }

    .quiz-question {
        font-size: clamp(1.18rem, 4vw, 1.48rem);
    }

    .quiz-options {
        grid-template-columns: 1fr;
    }

    .quiz-options--wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quiz-contact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .quiz-phone-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
        align-items: stretch;
        gap: 10px;
    }

    .quiz-contact-area-code {
        width: 100%;
        min-width: 0;
        max-width: none;
    }

    .quiz-option {
        min-height: 66px;
        padding: 16px 14px;
        font-size: 0.98rem;
    }

    .quiz-result {
        min-height: 420px;
    }

    .hero-cta {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-cta-btn {
        width: min(242px, 100%);
    }

    .whatsapp-image-button {
        width: min(220px, 100%);
    }

    .hero-cta-image {
        width: 100%;
        max-width: 260px;
    }

    .whatsapp-btn-image {
        width: min(220px, 100%);
    }

    .product-gateway-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-block {
        padding: 16px;
    }

    .about-visual {
        width: 100%;
        margin: 0 auto;
    }

    .product-gateway-item {
        gap: 7px;
    }

    .product-gateway-card {
        min-height: 240px;
    }

    .tech-card {
        max-width: 100%;
    }

    .service-overview-grid {
        grid-template-columns: 1fr;
    }

    .tech-copy {
        padding: 14px 14px 16px;
    }

    .tech-copy h3,
    .tech-copy p,
    .service-card h3,
    .service-card p {
        text-align: center;
    }

    .category-page {
        padding-top: 30px;
        padding-bottom: 72px;
    }

    .category-layout {
        gap: 26px;
    }

    .category-hero-card {
        border-radius: 24px;
        min-height: 190px;
        padding: 28px 32px;
    }

    .category-hero-line1 {
        font-size: clamp(0.88rem, 2.5vw, 1rem);
    }

    .category-hero-line2 {
        font-size: clamp(1.4rem, 5vw, 1.9rem);
    }

    .category-subproducts {
        border-radius: 22px;
        padding: 18px 36px;
    }

    .category-circle-card {
        flex-basis: calc((100% - 24px) / 2);
    }

    .category-slider-btn {
        width: 38px;
        height: 38px;
        font-size: 1.25rem;
        top: 50%;
    }

    .category-slider-btn.prev {
        left: -14px;
    }

    .category-slider-btn.next {
        right: -14px;
    }

    .category-detail-showcase {
        padding: 18px 16px;
    }

    .category-showcase-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 18px;
    }

    .category-showcase-main,
    .category-showcase-thumbs {
        width: min(86%, 420px);
    }

    .category-showcase-title {
        font-size: clamp(1.36rem, 4.2vw, 1.9rem);
    }

    .category-showcase-definition,
    .category-showcase-description {
        font-size: 0.89rem;
        line-height: 1.62;
    }

    .quiz-result-popup {
        border-radius: 20px;
        padding: 16px;
        gap: 10px;
    }

    .quiz-popup-cta {
        width: 100%;
    }

    .category-showcase-thumbs {
        --thumb-size: clamp(56px, 10vw, 68px);
        gap: 8px;
    }

    .category-showcase-thumbs:has(.category-showcase-thumb:nth-child(n+7)) {
        --thumb-size: clamp(48px, 8.6vw, 58px);
    }

    .category-showcase-thumb {
        width: var(--thumb-size);
        height: auto;
        border-radius: 13px;
    }

    .category-showcase-features {
        --feature-gap: clamp(10px, 1.2vw, 16px);
        --feature-duration: 56s;
        mask-image: none;
    }

    .category-showcase-feature {
        gap: 6px;
        padding: 7px 9px;
        border-radius: 14px;
    }

    .feature-icon {
        width: 192px;
        min-width: 192px;
        height: 192px;
    }

    .feature-icon img {
        width: 192px;
        height: 192px;
    }

    .feature-content {
        max-width: 160px;
    }

    .feature-content h4 {
        font-size: 0.82rem;
    }

    .feature-content p {
        font-size: 0.69rem;
        max-width: 22ch;
    }

    .partner-row {
        padding: 16px 0;
    }

    .quality-row {
        padding: 16px 0;
    }

    .quality-set {
        gap: 16px;
        padding: 0 14px;
    }

    .quality-item {
        gap: 8px;
    }

    .quality-item img {
        width: clamp(240px, 45vw, 320px);
        height: clamp(136px, 26vw, 176px);
    }

    .quality-caption {
        max-width: 190px;
        font-size: 0.82rem;
        line-height: 1.35;
    }

    .about-core-values-panel,
    html[lang="kr"] .history-timeline-panel {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .company-location-actions {
        padding-top: 12px;
    }

    .company-location-actions .btn,
    .company-ghost-btn {
        width: 100%;
        justify-content: center;
    }

    .partner-testimonial {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .news-item {
        flex-direction: column;
        gap: 14px;
    }

    .news-thumb {
        width: 100%;
        height: clamp(190px, 48vw, 260px);
    }

    .whatsapp-btn-image-large {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

    .contact-whatsapp-section {
        min-height: 0;
    }

    .testimonial-image {
        width: 100%;
        height: 240px;
    }

    .testimonial-content .partner-logo {
        width: 40%;
    }

    .partner-set {
        gap: 16px;
        padding: 0 14px;
    }

    .partner-logo-card {
        width: clamp(176px, 56vw, 250px);
        height: clamp(102px, 30vw, 150px);
        border-radius: 14px;
        padding: 12px;
    }

    .partner-logo {
        max-height: clamp(74px, 22vw, 104px);
    }

    .footer-nav-groups {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        right: 16px;
        bottom: 16px;
    }

    .scroll-top-btn {
        width: 56px;
        height: 56px;
        right: 16px;
        bottom: 86px;
    }
}

@media (max-width: 520px) {
    .hero {
        min-height: calc(100vh - 96px);
    }

    .hero-overlay {
        min-height: calc(100vh - 96px);
    }

    .hero-content {
        min-height: calc(100vh - 96px);
        padding: 24px 0 12px 16px;
        gap: 12px;
    }

    .hero-brand-title {
        font-size: clamp(1.52rem, 8.2vw, 1.92rem);
    }

    .hero-brand-subtitle {
        font-size: 0.92rem;
        max-width: 100%;
    }

    .quiz-section {
        padding: 22px 0;
    }

    .quiz-shell {
        border-radius: 18px;
        padding: 14px;
        gap: 16px;
    }

    .quiz-eyebrow {
        font-size: 0.72rem;
    }

    .quiz-intro {
        font-size: 0.9rem;
        line-height: 1.56;
    }

    .quiz-slider {
        min-height: 520px;
    }

    .quiz-question {
        font-size: 1.1rem;
    }

    .quiz-option {
        min-height: 62px;
        border-radius: 14px;
        font-size: 0.94rem;
    }

    .quiz-options--wide {
        grid-template-columns: 1fr;
    }

    .quiz-contact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .quiz-phone-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
        align-items: stretch;
        gap: 10px;
    }

    .quiz-contact-area-code {
        width: 100%;
        min-width: 0;
        max-width: none;
    }

    .quiz-contact-grid input,
    .quiz-area-code-select {
        height: 52px;
        border-radius: 14px;
        font-size: 0.9rem;
        padding: 0 14px;
    }

    .quiz-continue-btn {
        font-size: 0.92rem;
        padding: 10px 22px;
    }

    .quiz-progress-count {
        font-size: 0.85rem;
    }

    .brand-benefits {
        grid-template-columns: 1fr;
    }

    .product-gateway-card {
        min-height: 220px;
    }

    .product-gateway-heading {
        font-size: calc(0.88rem + 1px);
    }

    .category-circle-card {
        flex-basis: 76%;
        min-width: 200px;
    }

    .category-hero-card {
        min-height: 160px;
        border-radius: 20px;
        padding: 22px 20px;
    }

    .category-hero-tagline {
        font-size: 0.82rem;
    }

    .category-showcase-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .category-showcase-main-viewport {
        border-radius: 20px;
    }

    .category-showcase-main,
    .category-showcase-thumbs {
        width: 100%;
    }

    .category-showcase-slide {
        aspect-ratio: 1 / 1;
    }

    .category-showcase-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.28rem;
    }

    .category-showcase-thumb {
        --thumb-size: clamp(52px, 16vw, 62px);
        width: var(--thumb-size);
        height: auto;
        border-radius: 12px;
    }

    .category-showcase-thumbs:has(.category-showcase-thumb:nth-child(n+7)) {
        --thumb-size: clamp(46px, 14vw, 54px);
    }

    .category-showcase-content {
        gap: 12px;
    }

    .quiz-result-popup {
        border-radius: 18px;
        padding: 14px;
    }

    .quiz-result-popup .category-showcase-title {
        font-size: clamp(1.15rem, 5.4vw, 1.48rem);
    }

    .category-showcase-positioning {
        font-size: 0.86rem;
    }

    .quiz-result-active .whatsapp-float {
        bottom: 92px;
    }

    .category-showcase-title {
        font-size: clamp(1.3rem, 7vw, 1.62rem);
    }

    .category-showcase-features {
        --feature-gap: 10px;
        --feature-duration: 46s;
    }

    .category-showcase-feature {
        gap: 6px;
        padding: 6px 8px;
        border-radius: 12px;
    }

    .category-showcase-feature img {
        width: 160px;
        height: 160px;
    }

    .feature-icon {
        width: 160px;
        min-width: 160px;
        height: 160px;
    }

    .feature-content {
        max-width: 140px;
    }

    .feature-content h4 {
        font-size: 0.75rem;
    }

    .feature-content p {
        font-size: 0.62rem;
        max-width: 20ch;
    }

    .hero-cta-image,
    .whatsapp-btn-image-hero {
        width: 180px;
    }

    .hero-cta-btn,
    .whatsapp-image-button {
        width: 180px;
    }

    .map-switch-btn {
        font-size: 0.76rem;
        padding: 8px 10px;
    }

    .about-core-value-item,
    .history-timeline-card {
        padding: 16px;
    }
}

/* ===== PRODUCT TYPES TABLE ===== */
.product-types {
    padding: 60px 0;
    background: #fafbfb;
}

.product-types-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--ink-main);
    margin-bottom: 32px;
    font-weight: 700;
    line-height: 1.3;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    -webkit-overflow-scrolling: touch;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
    background: #fff;
}

.product-table thead {
    background: var(--teal-deep);
}

.product-table thead th {
    color: #fff;
    text-align: left;
    padding: 14px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-table td {
    padding: 14px 18px;
    font-size: 0.88rem;
    color: var(--ink-soft);
    vertical-align: top;
    line-height: 1.55;
}

/* Col 1: Category */
.product-table td:first-child,
.product-table td[rowspan]:first-child {
    width: 18%;
    font-weight: 600;
    color: var(--ink-main);
    vertical-align: middle;
    white-space: normal;
}

/* Col 2: Product Type */
.product-table td:nth-child(2) {
    width: 22%;
    color: var(--ink-soft);
    white-space: normal;
    line-height: 1.4;
}

/* Col 3: Definition */
.product-table td:nth-child(3),
.product-table td[rowspan]:last-child {
    width: 60%;
    vertical-align: middle;
}

.product-table tr {
    border-bottom: 1px solid #eef0ef;
    transition: background 0.18s ease;
}

.product-table tbody tr:last-child {
    border-bottom: none;
}

.product-table tbody tr:hover {
    background: rgba(115, 183, 177, 0.07);
}
