/*
Theme Name: Language Masters Corporate
Theme URI: https://languagemasters.jp
Author: Language Masters Co., Ltd.
Description: Custom corporate website for Language Masters Co., Ltd.
Version: 1.0
*/


/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    color: #0E1A2B;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== VARIABLES ===== */
:root {
    --deep-navy: #0E1A2B;
    --warm-gray: #6E737B;
    --muted-bronze: #A6784D;
    --bronze-deeper: #8C6239;
    --bronze-light: #D4B48C;
    --light-gray-bg: #F4F6F8;
    --border-light: #e2e6eb;
    --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.12);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    --section-blue: #1e3a5f;
    --section-blue-light: rgba(30, 58, 95, 0.92);
    --header-height: 72px;
}

/* ===== FLUID TYPOGRAPHY ===== */
html {
    font-size: 16px;
}

@media (max-width: 1200px) { html { font-size: 15px; } }
@media (max-width: 992px) { html { font-size: 14px; } }
@media (max-width: 768px) { html { font-size: 13px; } }
@media (max-width: 576px) { html { font-size: 12px; } }

h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
h2 { font-size: clamp(2.0rem, 5vw, 3.0rem); }
h3 { font-size: clamp(1.4rem, 3.5vw, 2.0rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

p, li, .btn, .form-group label, .form-note {
    font-size: clamp(1rem, 2vw, 1.4rem);
}

.hero-tagline {
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-title {
    font-size: clamp(2.2rem, 6vw, 4.0rem);
}

/* ===== SORA HEADINGS – Extra Bold (800) ===== */
.sora-heading {
    font-family: 'Sora', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
}

/* ===== GENERAL ===== */
p {
    color: var(--deep-navy);
    font-weight: 400;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
}

.white-text {
    color: #ffffff !important;
}

.text-center {
    text-align: center !important;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    background-color: transparent;
    border: 1.5px solid var(--deep-navy);
    color: var(--deep-navy);
    padding: 0.9rem 2.4rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 2px;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
}

.btn-primary {
    background-color: var(--deep-navy);
    color: #ffffff;
    border: 1.5px solid var(--deep-navy);
}
.btn-primary:hover {
    background-color: #1a2c44;
    border-color: #1a2c44;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 26, 43, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--deep-navy);
    border: 1.5px solid var(--deep-navy);
}
.btn-outline:hover {
    background-color: var(--deep-navy);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 26, 43, 0.2);
}

/* ===== ACCENT LINK ===== */
.accent-link {
    color: var(--muted-bronze);
    font-weight: 500;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
    width: auto;
}

.accent-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--muted-bronze);
    transition: width 0.3s ease;
}

.accent-link:hover {
    color: var(--bronze-deeper);
}
.accent-link:hover::after {
    width: 100%;
}

/* ===== NAVIGATION ===== */
.top-nav {
    background: linear-gradient(to right, #f8f7fa, #e9e8ed);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.logo-img {
    height: clamp(36px, 6vw, 60px);
    width: auto;
    transition: opacity 0.3s ease;
    display: block;
}
.logo-img:hover { opacity: 0.85; }

.logo-text {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(0.9rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--deep-navy);
    letter-spacing: -0.3px;
    white-space: nowrap;
    line-height: 1.2;
}

/* ===== DESKTOP NAV LINKS ===== */
.nav-links-desktop {
    display: flex;
    gap: 2.2rem;
    align-items: center;
    flex-wrap: wrap;
}
.nav-links-desktop a, .dropbtn {
    font-weight: 500;
    color: var(--deep-navy);
    font-size: clamp(0.95rem, 1.5vw, 1.25rem);
    transition: color 0.25s ease;
    cursor: pointer;
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.nav-links-desktop a:hover, .dropbtn:hover { color: var(--muted-bronze); }

.dropdown { position: relative; display: inline-block; }

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 280px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.6rem 0;
    z-index: 10;
    border: 1px solid var(--border-light);
    margin-top: 0;
}
.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 400;
    color: var(--deep-navy);
    white-space: nowrap;
}
.dropdown-content a:hover {
    background: var(--light-gray-bg);
    color: var(--muted-bronze);
}
.dropdown:hover .dropdown-content { display: block; }

/* ===== LANGUAGE SWITCHER (desktop) ===== */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    color: var(--deep-navy);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    margin-left: 0.5rem;
    padding-left: 1rem;
    border-left: 1px solid var(--border-light);
}
.lang-switcher a {
    display: inline-flex;
    align-items: center;
    padding: 0.1rem 0.2rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-decoration: none;
    color: var(--deep-navy);
    line-height: 1;
}
.lang-switcher a img {
    height: clamp(20px, 4vw, 50px);
    width: auto;
    border-radius: 2px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    display: block;
}
.lang-switcher a.active-lang img {
    border-color: var(--muted-bronze);
    transform: scale(1.05);
}
.lang-switcher a:not(.active-lang):hover img {
    opacity: 0.8;
    transform: scale(1.04);
}
.lang-switcher .divider {
    color: var(--warm-gray);
    font-weight: 300;
    font-size: 0.9rem;
}

/* ===== HAMBURGER (nakatago sa desktop) ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}
.hamburger-line {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--deep-navy);
    border-radius: 4px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ===== MOBILE NAV LINKS (dropdown style) ===== */
.nav-links-mobile {
    display: none;
}

/* ===== RESPONSIVE NAV – Mobile (dropdown style) ===== */
@media (max-width: 1024px) {
    .nav-links-desktop {
        display: none;
    }
    .hamburger {
        display: flex;
    }

    .nav-links-mobile {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-height, 72px);
        left: 0;
        right: 0;
        max-height: 60vh;
        overflow-y: auto;
        background: #ffffff;
        padding: 1.2rem 2rem 2rem;
        gap: 0.8rem;
        align-items: center;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        border-bottom: 1px solid var(--border-light);
        z-index: 105;
        transform: translateY(-120%);
        transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        opacity: 0;
        pointer-events: none;
        border-top: 2px solid var(--muted-bronze);
        text-align: center;
    }
    .nav-links-mobile.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-links-mobile a, .nav-links-mobile .dropbtn {
        font-size: 1.5rem;
        white-space: normal;
        color: var(--deep-navy);
        width: 100%;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        text-align: center;
        font-weight: 600;
    }
    .nav-links-mobile a:last-of-type {
        border-bottom: none;
    }
    .nav-links-mobile a:hover, .nav-links-mobile .dropbtn:hover {
        color: var(--muted-bronze);
    }

    .nav-links-mobile .dropdown {
        width: 100%;
    }
    .nav-links-mobile .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        min-width: auto;
        background: transparent;
        display: none;
        text-align: center;
    }
    .nav-links-mobile .dropdown.open .dropdown-content {
        display: block;
    }
    .nav-links-mobile .dropdown-content a {
        border-bottom: none;
        padding: 0.4rem 0;
        font-size: 1.2rem;
        text-align: center;
    }

    .nav-links-mobile .lang-switcher {
        margin-top: 0.5rem;
        padding-top: 1.2rem;
        border-top: 1px solid var(--border-light);
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        width: 100%;
        justify-content: center;
        gap: 1.2rem;
    }
    .nav-links-mobile .lang-switcher a img {
        height: 48px;
        width: auto;
        border-width: 3px;
    }
    .nav-links-mobile .lang-switcher .divider {
        font-size: 1.3rem;
    }

    .nav-overlay {
        position: fixed;
        top: var(--header-height, 72px);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height, 72px));
        background: rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(2px);
        z-index: 104;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
    }
    .nav-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 0.9rem;
        white-space: normal;
    }
    .logo-img {
        height: 32px;
    }
    .nav-links-mobile {
        padding: 1rem 1.2rem 1.5rem;
        top: var(--header-height, 64px);
        max-height: 55vh;
    }
    .nav-links-mobile a, .nav-links-mobile .dropbtn {
        font-size: 1.3rem;
        padding: 0.5rem 0;
    }
    .nav-links-mobile .dropdown-content a {
        font-size: 1.1rem;
    }
    .nav-links-mobile .lang-switcher a img {
        height: 40px;
    }
    .nav-links-mobile .lang-switcher {
        gap: 0.8rem;
    }
}

@media (max-width: 400px) {
    .nav-links-mobile a, .nav-links-mobile .dropbtn {
        font-size: 1.1rem;
    }
    .nav-links-mobile .lang-switcher a img {
        height: 34px;
    }
}

/* ===== HERO ===== */
.hero {
    background: var(--section-blue);
    padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3rem, 8vw, 5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-container {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
}
.hero-text { flex: 1.2; }
.hero-image { flex: 1; text-align: center; }

.hero-tagline {
    color: var(--muted-bronze);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    line-height: 1.15;
}

.hero-description, .hero-sub-description {
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}
.hero-description { margin-bottom: 0.5rem; }
.hero-sub-description { margin-bottom: 2rem; }

.hero-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}
.hero-buttons .btn-primary {
    background-color: #ffffff;
    color: var(--deep-navy);
    border-color: #ffffff;
}
.hero-buttons .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.85);
}
.hero-buttons .btn-outline {
    color: #ffffff;
    border-color: #ffffff;
}
.hero-buttons .btn-outline:hover {
    background-color: #ffffff;
    color: var(--deep-navy);
}

.hero-tags {
    display: flex;
    gap: clamp(1rem, 3vw, 2.5rem);
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 500;
    flex-wrap: wrap;
}
.hero-tags i { color: var(--muted-bronze); margin-right: 6px; }

/* ===== SLIDER ===== */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: #1a1a2e;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    width: 100%;
}

.slide {
    flex: 0 0 100%;
    position: relative;
    aspect-ratio: 16 / 9;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(14, 26, 43, 0.8));
    padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
    color: #ffffff;
    text-align: center;
}

.slide-overlay h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #ffffff;
}

.slide-overlay p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dots span {
    width: clamp(8px, 1.5vw, 12px);
    height: clamp(8px, 1.5vw, 12px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.slider-dots span.active {
    background: var(--muted-bronze);
    transform: scale(1.2);
}

/* ===== PAGE HERO (About) ===== */
.page-hero {
    background: #ffffff;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}
.page-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--warm-gray);
    margin-top: 0.5rem;
}

/* ===== SECTIONS ===== */
section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: #ffffff;
}
.section-light { background: var(--light-gray-bg); }

.section-blue {
    background: var(--section-blue);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section-blue .section-title {
    color: #ffffff;
}
.section-blue .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}
.section-blue .section-subtitle strong {
    color: #ffffff;
}

.no-break-subtitle {
    white-space: normal;
    line-height: 1.6;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--deep-navy);
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.section-subtitle {
    max-width: 750px;
    margin-bottom: 2.5rem;
    color: var(--deep-navy);
    font-size: clamp(1rem, 2vw, 1.4rem);
    opacity: 0.8;
}

.section-subtitle-large {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem) !important;
    max-width: 750px;
    margin-bottom: 0.8rem !important;
    color: var(--deep-navy) !important;
    opacity: 1 !important;
    white-space: normal;
}
.navy-subtitle {
    color: var(--deep-navy) !important;
    opacity: 1 !important;
    word-break: keep-all;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(2),
.services-grid .service-card:nth-child(3) {
    grid-column: auto;
    grid-row: 1;
}

.service-row-wrapper {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    width: 100%;
}

.service-row-wrapper .service-card {
    flex: 0 1 380px;
    max-width: 380px;
    min-width: 280px;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--muted-bronze);
}

.service-image-wrapper { width: 100%; margin-bottom: 1.5rem; text-align: center; }
.service-image { max-width: 100%; height: auto; max-height: 100px; object-fit: contain; border-radius: 4px; }

.service-card i {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--muted-bronze);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}
.service-card:hover i { transform: scale(1.08); }

.service-card h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); margin-bottom: 0.8rem; color: var(--deep-navy); }
.service-card p { color: var(--deep-navy); flex-shrink: 0; font-size: clamp(0.95rem, 1.5vw, 1.2rem); }

.service-card ul {
    list-style: none;
    margin: 1.2rem 0;
    color: var(--deep-navy);
    flex-grow: 1;
    margin-bottom: 0;
}
.service-card li {
    margin-bottom: 0.5rem;
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    color: var(--deep-navy);
}

.service-card .accent-link {
    margin-top: auto;
    align-self: flex-start;
}

.coming-soon { color: var(--muted-bronze); font-weight: 500; margin-top: 1rem; font-size: clamp(0.95rem, 1.5vw, 1.2rem); }
.service-meta { margin-top: 1rem; font-size: clamp(0.95rem, 1.5vw, 1.2rem); color: var(--deep-navy); }

/* ===== APPROACH ===== */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}
.approach-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    transition: all var(--transition-smooth);
}
.approach-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--muted-bronze);
}
.approach-icon {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--muted-bronze);
    margin-bottom: 1rem;
}
.approach-card h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.approach-card p {
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 2rem 0;
}

.stats-white .stat-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 12px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-white .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--muted-bronze), var(--bronze-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stats-white .stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--muted-bronze);
}
.stats-white .stat-card:hover::before { opacity: 1; }

.stats-white .stat-icon {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--muted-bronze);
    margin-bottom: 0.8rem;
    display: block;
}

.stats-white .stat-number {
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 700;
    color: var(--deep-navy);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 0.2rem;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

.stats-white .stat-label {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: var(--deep-navy);
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.stats-white .stat-desc {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    color: var(--deep-navy);
    line-height: 1.5;
    max-width: 280px;
    margin: 0.2rem auto 1.2rem;
    opacity: 0.9;
}

.stats-white .stat-bar {
    width: 100%;
    height: 4px;
    background: var(--light-gray-bg);
    border-radius: 4px;
    overflow: hidden;
    margin-top: auto;
}
.stats-white .stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--muted-bronze), var(--bronze-light));
    border-radius: 4px;
    transition: width 1s ease;
    width: 0;
}

/* ===== ACCORDION ===== */
.accordion-container {
    max-width: 900px;
    margin: 2rem auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.accordion-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: var(--card-shadow);
}

.accordion-item:hover {
    border-color: var(--muted-bronze);
    box-shadow: var(--card-shadow-hover);
}
.accordion-item.active {
    border-color: var(--muted-bronze);
    box-shadow: var(--card-shadow-hover);
    border-left: 3px solid var(--muted-bronze);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    user-select: none;
    position: relative;
}

.accordion-header:hover { background: var(--light-gray-bg); }
.accordion-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: var(--border-light);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.accordion-item.active .accordion-header::after { opacity: 1; }

.accordion-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(14, 26, 43, 0.06);
    color: var(--deep-navy);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}
.accordion-item.active .accordion-icon {
    background: rgba(14, 26, 43, 0.12);
    transform: scale(1.05);
}

.accordion-title {
    flex: 1;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 600;
    color: var(--deep-navy);
    margin: 0;
    letter-spacing: 0.2px;
}

.accordion-indicator {
    flex-shrink: 0;
    color: var(--warm-gray);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    width: 24px;
    text-align: center;
}
.accordion-item.active .accordion-indicator {
    transform: rotate(180deg);
    color: var(--muted-bronze);
}

.accordion-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease, padding 0.3s ease, opacity 0.3s ease;
    padding: 0 2rem;
    opacity: 0;
}
.accordion-item.active .accordion-body {
    grid-template-rows: 1fr;
    padding: 0 2rem 1.8rem;
    opacity: 1;
}

.accordion-body-inner {
    overflow: hidden;
    padding-top: 0.1rem;
}
.accordion-body-inner p {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--deep-navy);
    line-height: 1.8;
    margin: 0;
    opacity: 0.9;
    text-align: justify;
}

.accordion-large .accordion-title {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 600;
    color: var(--deep-navy);
    margin: 0;
    letter-spacing: 0.2px;
}
.accordion-large .accordion-body-inner p {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
}
.accordion-large .accordion-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

/* ===== FOUNDERS MESSAGE ===== */
.founders-message {
    position: relative;
    background: rgba(14, 26, 43, 0.7);
    backdrop-filter: blur(10px);
    border-left: 6px solid var(--muted-bronze);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
    margin: 2rem 0;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    background-image: linear-gradient(135deg, rgba(166, 120, 77, 0.03) 0%, transparent 50%);
}

.founders-message:hover {
    transform: translateX(8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    border-left-color: var(--bronze-light);
}

.founders-message::before {
    content: '\201C';
    position: absolute;
    top: -2rem;
    left: 1.5rem;
    font-size: 12rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: rgba(166, 120, 77, 0.12);
    line-height: 1;
    pointer-events: none;
    font-weight: 700;
}

.founders-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--muted-bronze), var(--bronze-light), var(--muted-bronze));
    opacity: 0.6;
    pointer-events: none;
}

.founders-message .closing-quote {
    position: absolute;
    bottom: -6rem;
    right: 0.5rem;
    font-size: 12rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: rgba(166, 120, 77, 0.12);
    line-height: 0.8;
    pointer-events: none;
    font-weight: 700;
    opacity: 0.5;
}

.founders-message .closing-quote-line {
    position: absolute;
    bottom: 4.5rem;
    right: 1.8rem;
    width: 80px;
    height: 4px;
    background: var(--muted-bronze);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(166, 120, 77, 0.3);
    pointer-events: none;
}

.founders-message .founders-bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--muted-bronze), var(--bronze-light), var(--muted-bronze));
    opacity: 0.5;
    pointer-events: none;
}

.founders-message .message-quote {
    position: relative;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.8rem;
    padding-top: 0.5rem;
    line-height: 1.25;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.founders-message .message-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--muted-bronze);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(166, 120, 77, 0.3);
}

.founders-message p {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.9;
    max-width: 85%;
    font-weight: 400;
}

.founders-message p strong {
    color: var(--bronze-light);
    font-weight: 600;
}

.founders-message .message-signature {
    margin-top: 2.5rem;
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    color: var(--muted-bronze);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(166, 120, 77, 0.2);
    transition: color 0.3s ease;
}
.founders-message:hover .message-signature { color: var(--bronze-light); }

.founders-message .shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.02) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== NEWS ===== */
.news-list {
    background: #ffffff;
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 8px;
    color: var(--deep-navy);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    line-height: 1.8;
}
.news-list strong { color: var(--deep-navy); }
.news-list p { margin-top: 0.8rem; color: var(--deep-navy); }
.news-list p:first-child { margin-top: 0; }

/* ===== ABOUT PAGE ===== */
.about-page-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}
.about-page-content { flex: 1.2; }
.about-page-image { flex: 1; }
.about-image-placeholder {
    background: var(--light-gray-bg);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px dashed var(--border-light);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.about-image-placeholder i { font-size: 4rem; color: var(--muted-bronze); margin-bottom: 1rem; }
.about-image-placeholder p { font-size: 1.2rem; color: var(--deep-navy); }
.placeholder-note { font-size: 0.9rem; color: var(--warm-gray); opacity: 0.6; margin-top: 0.5rem; }

/* ---- Premium Founders Layout ---- */
.founders-premium { margin-top: 2rem; }

.founders-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    margin: 0 auto 2.5rem auto;
    max-width: 100%;
    max-width: 900px;
    background: #ffffff;
    transition: box-shadow 0.3s ease;
}

.founders-image-wrapper:hover { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }

.founders-combined-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 450px;
    object-fit: contain;
    background: transparent;
    transition: transform 0.3s ease;
}
.founders-image-wrapper:hover .founders-combined-img { transform: scale(1.02); }

.founders-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(14, 26, 43, 0.85));
    color: #ffffff;
    padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem) clamp(0.8rem, 2vw, 1.5rem);
    font-size: clamp(0.9rem, 2vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.founders-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 1rem;
}

.founder-text-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    padding: 2rem 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--muted-bronze);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-smooth);
}

.founder-text-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.founder-text-item h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: #ffffff;
    margin-bottom: 0.2rem;
}
.founder-text-item .founder-name-jp {
    color: var(--muted-bronze);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 500;
    margin-bottom: 0.8rem;
}
.founder-text-item p {
    font-size: clamp(1rem, 1.8vw, 1.4rem) !important;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* ---- Positioning (white section) ---- */
.positioning-lead {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}
.positioning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}
.positioning-item {
    background: var(--light-gray-bg);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(166, 120, 77, 0.3);
    border-left: 4px solid var(--bronze-deeper);
    transition: all var(--transition-smooth);
    cursor: default;
}
.positioning-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--bronze-light);
    border-left-color: var(--bronze-light);
}
.positioning-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--muted-bronze);
    display: block;
    margin-bottom: 0.3rem;
}
.positioning-item h4 { font-size: clamp(1rem, 1.5vw, 1.3rem); color: var(--deep-navy); }
.positioning-item p { font-size: clamp(0.95rem, 1.5vw, 1.3rem); color: var(--deep-navy); }
.positioning-closing {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: var(--deep-navy);
    margin-top: 1rem;
}
.positioning-closing.text-center { text-align: center; }

/* ---- Philosophy (blue section) ---- */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}
.philosophy-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    transition: all var(--transition-smooth);
    text-align: center;
}
.philosophy-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--muted-bronze);
}
.philosophy-item .number {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--muted-bronze);
    display: block;
    margin-bottom: 0.5rem;
}
.philosophy-item h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); color: #ffffff; }
.philosophy-item p { font-size: clamp(1rem, 1.8vw, 1.4rem); color: rgba(255, 255, 255, 0.85); }
.philosophy-conclusion {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
    color: var(--deep-navy);
    text-align: center;
    margin-top: 2rem;
}

/* ---- Commitment (white) ---- */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.commitment-card {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-smooth);
    cursor: default;
}
.commitment-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--muted-bronze);
}
.commitment-card i { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--muted-bronze); margin-bottom: 0.5rem; }
.commitment-card h4 { font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--deep-navy); }
.commitment-closing {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
    color: var(--deep-navy);
    margin-top: 1rem;
    text-align: center;
}

/* ---- Company Information ---- */
.company-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.5rem;
    margin-top: 2rem;
}

.info-item {
    background: var(--light-gray-bg);
    padding: 1rem 1.2rem;
    border-radius: 6px;
    border: 1px solid rgba(166, 120, 77, 0.3);
    border-left: 3px solid var(--muted-bronze);
    transition: all var(--transition-smooth);
    cursor: default;
    text-align: left;
}
.info-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--bronze-light);
}
.info-item .info-label {
    display: block;
    font-weight: 600;
    color: var(--deep-navy);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}
.info-item { font-size: clamp(1rem, 1.8vw, 1.4rem); color: var(--deep-navy); }

.info-item-wide {
    grid-column: 1 / -1;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light-gray-bg);
    padding: 1rem 1.2rem;
    border-radius: 6px;
    border: 1px solid rgba(166, 120, 77, 0.3);
    border-left: 3px solid var(--muted-bronze);
    transition: all var(--transition-smooth);
    cursor: default;
}
.info-item-wide .info-label { display: block; text-align: center; width: 100%; }
.info-item-wide:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--bronze-light);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    max-width: 780px;
    margin: 0 auto;
    background: #ffffff;
    padding: clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3.5rem);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
}
.form-group { margin-bottom: 1.8rem; }
.form-group label {
    display: block;
    font-weight: 500;
    color: var(--deep-navy);
    margin-bottom: 0.4rem;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}
.form-group label .required { color: #c0392b; margin-left: 2px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    background: var(--light-gray-bg);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    color: var(--deep-navy);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--muted-bronze);
    box-shadow: 0 0 0 3px rgba(166, 120, 77, 0.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236E737B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 12px;
}
.checkbox-group { display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; margin-top: 0.3rem; }
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    color: var(--deep-navy);
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    cursor: pointer;
}
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--muted-bronze); }

.btn-submit {
    display: block;
    width: 100%;
    padding: 1.2rem;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    background: var(--muted-bronze);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}
.btn-submit:hover {
    background: var(--bronze-deeper);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(166, 120, 77, 0.3);
}
.form-note { text-align: center; color: var(--deep-navy); font-size: clamp(0.95rem, 1.5vw, 1.15rem); margin-top: 1.2rem; font-style: italic; }

/* ===== FOOTER ===== */
footer {
    background: var(--deep-navy);
    color: #cbd1d9;
    padding: clamp(2rem, 5vw, 3.5rem) 0 1.5rem;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

footer .footer-brand {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

footer p {
    color: #cbd1d9;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
}

.footer-label {
    font-weight: 600;
    color: #ffffff;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    margin-bottom: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd1d9;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icons a:hover {
    background: var(--muted-bronze);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-links-col a {
    color: #cbd1d9;
    text-decoration: underline;
    transition: color 0.25s ease;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
}
.footer-links-col a:hover { color: var(--bronze-light); }

.footer-bottom { text-align: center; padding-top: 1.5rem; }
.footer-bottom p { font-size: clamp(0.8rem, 1vw, 1rem); color: rgba(255, 255, 255, 0.5); }

/* ===== PRIVACY / DISCLOSURE ===== */
.privacy-content { max-width: 900px; margin: 0 auto; }
.privacy-brand-block {
    background: var(--light-gray-bg);
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 8px;
    border-left: 4px solid var(--muted-bronze);
    margin-bottom: 2.5rem;
}
.privacy-brand-block .brand-name { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--deep-navy); margin-bottom: 0.2rem; }
.privacy-brand-block .operator, .privacy-brand-block .operator-jp { font-size: clamp(0.95rem, 1.5vw, 1.2rem); color: var(--deep-navy); }
.privacy-brand-block .update-date { font-size: clamp(0.8rem, 1.2vw, 1rem); color: var(--warm-gray); margin-top: 0.8rem; font-style: italic; }
.privacy-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--deep-navy);
    margin-top: 2.8rem;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0.5rem;
}
.privacy-heading .heading-jp { font-size: clamp(0.9rem, 1.5vw, 1.2rem); font-weight: 400; color: var(--warm-gray); margin-left: 0.8rem; }
.privacy-subheading { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; color: var(--deep-navy); margin-top: 2rem; margin-bottom: 0.8rem; }
.privacy-text { font-size: clamp(0.95rem, 1.5vw, 1.2rem); color: var(--deep-navy); margin-bottom: 0.8rem; line-height: 1.8; }
.privacy-text.jp {
    color: var(--muted-bronze);
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    border-left: 3px solid var(--border-light);
    padding-left: 1.2rem;
    margin-bottom: 1.2rem;
}
.privacy-text strong { color: var(--deep-navy); }
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    background: var(--light-gray-bg);
    padding: 1.8rem 2rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}
.info-grid .label { display: block; font-weight: 600; color: var(--deep-navy); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 0.2rem; }
.info-grid div { font-size: clamp(0.9rem, 1.3vw, 1.1rem); color: var(--deep-navy); }
.privacy-list { list-style: none; padding: 0; margin: 0.5rem 0 1.5rem 1.2rem; }
.privacy-list li { font-size: clamp(0.9rem, 1.5vw, 1.15rem); color: var(--deep-navy); padding: 0.3rem 0; padding-left: 1.8rem; position: relative; line-height: 1.6; }
.privacy-list li::before { content: "▹"; position: absolute; left: 0; color: var(--muted-bronze); font-size: 1.2rem; }
.privacy-list.ordered { counter-reset: item; list-style: none; padding-left: 0; }
.privacy-list.ordered li { counter-increment: item; padding-left: 2.5rem; }
.privacy-list.ordered li::before { content: counter(item) "."; position: absolute; left: 0; color: var(--muted-bronze); font-weight: 600; font-size: 1.1rem; }

.disclosure-wrapper { max-width: 1100px; margin: 0 auto; }
.table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
}
.table-scroll table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}
.table-scroll th, .table-scroll td {
    border: 1px solid var(--border-light);
    padding: 14px 18px;
    vertical-align: top;
    text-align: left;
}
.table-scroll th {
    background: var(--light-gray-bg);
    font-weight: 600;
    color: var(--deep-navy);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    letter-spacing: 0.3px;
}
.table-scroll td.category {
    font-weight: 600;
    color: var(--deep-navy);
    background: #fafbfc;
    white-space: nowrap;
    font-size: clamp(0.85rem, 1.1vw, 1.05rem);
}
.table-scroll td { color: var(--deep-navy); line-height: 1.6; }
.table-scroll td strong { color: var(--deep-navy); }
.table-scroll tbody tr:hover { background: var(--light-gray-bg); transition: background 0.2s; }
.disclosure-note { text-align: right; font-size: clamp(0.8rem, 1vw, 1rem); color: var(--warm-gray); margin-top: 1.2rem; font-style: italic; }

/* ============================================================
   PREMIUM SCROLL ANIMATIONS
   ============================================================ */
.fade-in,
.fade-up,
.fade-down,
.fade-left,
.fade-right,
.scale-in {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: opacity, transform;
}
.fade-up    { transform: translateY(40px); }
.fade-down  { transform: translateY(-40px); }
.fade-left  { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }
.scale-in   { transform: scale(0.92); }

.fade-in.visible,
.fade-up.visible,
.fade-down.visible,
.fade-left.visible,
.fade-right.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.stat-number.animate-stats {
    opacity: 0;
    transition: opacity 0.4s ease;
}
.stat-number.animate-stats.visible { opacity: 1; }

.service-card,
.approach-card,
.philosophy-item,
.commitment-card,
.positioning-item,
.stat-card,
.founder-text-item,
.info-item {
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
                box-shadow 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media (prefers-reduced-motion: reduce) {
    .fade-in, .fade-up, .fade-down, .fade-left, .fade-right, .scale-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .stat-number.animate-stats { opacity: 1 !important; }
}

@media (max-width: 768px) {
    .fade-up    { transform: translateY(25px); }
    .fade-down  { transform: translateY(-25px); }
    .fade-left  { transform: translateX(20px); }
    .fade-right { transform: translateX(20px); }
    .scale-in   { transform: scale(0.95); }
}

/* ============================================================
   RESPONSIVE OVERRIDES – DITO ANG PAGPAPALIIT NG CONTAINER
   ============================================================ */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .services-grid .service-card:nth-child(1),
    .services-grid .service-card:nth-child(2),
    .services-grid .service-card:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
    }
    /* I-stack ang dalawang huling card nang patayo at paliitin */
    .service-row-wrapper {
        grid-column: 1 / -1;
        grid-row: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    .service-row-wrapper .service-card {
        flex: 0 1 100%;
        max-width: 100%;
        min-width: auto;
        padding: 1.2rem 1rem; /* mas maliit na padding */
    }
    .approach-grid, .philosophy-grid { grid-template-columns: 1fr 1fr; }
    .positioning-grid { grid-template-columns: 1fr; }
    .company-info-grid { grid-template-columns: 1fr; }
    .commitment-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .about-page-grid { flex-direction: column; gap: 2rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .founders-text-grid { grid-template-columns: 1fr; }
    .founders-image-wrapper { max-width: 100%; }
    .founders-combined-img { max-height: 350px; }
    .founders-message .closing-quote { font-size: 8rem; bottom: -0.3rem; right: 0.3rem; }
    .founders-message .closing-quote-line { bottom: 5.5rem; right: 1.2rem; width: 60px; height: 3px; }
    .no-break-subtitle { white-space: normal; }
    .section-subtitle-large { white-space: normal; }
}

@media (max-width: 768px) {
    .hero-container { flex-direction: column; }
    .hero-text { order: 1; }
    .hero-image { order: 0; width: 100%; }
    .slider-container { max-width: 100%; border-radius: 8px; }
    .slide-overlay h3 { font-size: 1.1rem; }
    .slide-overlay p { font-size: 0.9rem; }
    .slider-dots span { width: 10px; height: 10px; }
    .hero-tags { gap: 1rem; }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
        gap: 1.5rem;
    }
    .service-row-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    .service-row-wrapper .service-card {
        flex: 0 1 100%;
        max-width: 100%;
        padding: 1rem 1rem; /* MAS MABABA PADDING */
    }
    .service-card {
        width: 100%;
        padding: 1rem 1rem; /* pareho sa iba */
    }

    .approach-grid, .philosophy-grid, .commitment-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; max-width: 360px; margin: 1rem auto 0; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-links-col { align-items: center; }
    .social-icons { justify-content: center; }
    .founders-message { padding: 2rem 1.5rem; }
    .founders-message::before { font-size: 6rem; left: 1rem; top: 0; }
    .founders-message .closing-quote { font-size: 5rem; bottom: -0.2rem; right: 0.2rem; }
    .founders-message .closing-quote-line { bottom: 3.8rem; right: 0.6rem; width: 50px; height: 3px; }
    .founders-message .message-quote { font-size: 1.8rem; }
    .founders-message p { max-width: 100%; }
    .founders-text-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .founders-image-wrapper { max-width: 100%; }
    .founders-combined-img { max-height: 280px; }
    .founders-image-caption { font-size: 1rem; padding: 1rem; }
    .company-info-grid { grid-template-columns: 1fr; }
    .info-item-wide { width: 100%; }
    .contact-form-wrapper { padding: 1.5rem; }
    .accordion-header { padding: 1rem 1.5rem; }
    .accordion-icon { width: 38px; height: 38px; font-size: 1rem; }
    .accordion-title { font-size: 1rem; }
    .accordion-item.active .accordion-body { padding: 0 1.5rem 1.2rem; }
    .accordion-body-inner p { font-size: 0.95rem; }
    .section-title { font-size: 2rem; }
    .page-title { font-size: 2.4rem; }
    .page-subtitle { font-size: 1.2rem; }
    .hero-tagline { font-size: 2.2rem; }
    .hero-description, .hero-sub-description { font-size: 1rem; }
    .btn { padding: 0.7rem 1.6rem; font-size: 0.9rem; }
    .container { padding: 0 1.5rem; }
    .top-nav { padding: 0.5rem 0; }
    .logo-text { font-size: 0.9rem; }
    .logo-img { height: 36px; }
    .lang-switcher a img { height: 17px; }
    .lang-switcher { padding-left: 0.6rem; margin-left: 0.3rem; }
}

@media (max-width: 576px) {
    .hero-tagline { font-size: 1.8rem; }
    .section-title { font-size: 1.8rem; }
    .page-title { font-size: 2rem; }
    .btn { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
    .hero-buttons .btn { display: block; width: 100%; margin-right: 0; margin-bottom: 0.8rem; }
    .services-grid { max-width: 320px; }
    .stats-grid { max-width: 320px; }
    .service-row-wrapper .service-card {
        padding: 0.8rem 0.8rem; /* lalong pinaliit */
    }
    .service-card {
        padding: 0.8rem 0.8rem;
    }
    .founders-message { padding: 1.5rem 1rem; }
    .founders-message::before { font-size: 4rem; left: 0.5rem; }
    .founders-message .closing-quote { font-size: 3.5rem; bottom: -0.2rem; right: 0rem; }
    .founders-message .closing-quote-line { bottom: 2.6rem; right: 0.3rem; width: 40px; height: 3px; }
    .founders-message .message-quote { font-size: 1.5rem; }
    .founders-message p { font-size: 1rem; }
    .founders-message .message-signature { font-size: 1rem; }
    .founders-image-wrapper .founders-combined-img { max-height: 220px; }
    .founders-image-caption { font-size: 0.85rem; padding: 0.8rem; }
    .founder-text-item { padding: 1.2rem; }
    .founder-text-item h3 { font-size: 1.2rem; }
    .founder-text-item p { font-size: 1rem !important; }
    .positioning-item { padding: 1rem; }
    .philosophy-item { padding: 1.5rem 1rem; }
    .commitment-card { padding: 1rem; }
    .accordion-header { padding: 0.8rem 1rem; gap: 0.6rem; }
    .accordion-icon { width: 34px; height: 34px; font-size: 0.9rem; }
    .accordion-title { font-size: 0.9rem; }
    .accordion-item.active .accordion-body { padding: 0 1rem 1rem; }
    .accordion-body-inner p { font-size: 0.9rem; }
    .contact-form-wrapper { padding: 1rem; }
    .form-group input, .form-group select, .form-group textarea { padding: 0.6rem 0.8rem; font-size: 0.95rem; }
    .btn-submit { padding: 0.8rem; font-size: 1rem; }
    .info-grid { grid-template-columns: 1fr; }
    .privacy-brand-block { padding: 1rem; }
    .table-scroll table { min-width: 500px; font-size: 0.85rem; }
    .table-scroll th, .table-scroll td { padding: 8px 10px; }
    .lang-switcher a img { height: 15px; }
    .lang-switcher { padding-left: 0.4rem; margin-left: 0.2rem; gap: 0.2rem; }
    .lang-switcher .divider { font-size: 0.7rem; }
}

@media (max-width: 400px) {
    .hero-tagline { font-size: 1.5rem; }
    .logo-text { font-size: 0.8rem; }
    .logo-img { height: 30px; }
    .nav-links-mobile { padding: 3.5rem 1rem 1rem; }
    .nav-links-mobile a, .nav-links-mobile .dropbtn { font-size: 1.1rem; }
    .nav-links-mobile .lang-switcher a img { height: 34px; }
    .founders-message .closing-quote { font-size: 2.5rem; bottom: -0.1rem; right: -0.1rem; }
    .founders-message .closing-quote-line { bottom: 1.8rem; right: 0rem; width: 30px; height: 2px; }
    .services-grid { max-width: 280px; }
    .stats-grid { max-width: 280px; }
    .service-row-wrapper .service-card {
        padding: 0.6rem 0.6rem;
    }
    .service-card {
        padding: 0.6rem 0.6rem;
    }
}

.subtitle-nowrap {
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .subtitle-nowrap {
        white-space: normal;
    }
}