:root {
    --bg-color: #f0f2f5;
    --text-color: #333;
    --accent-color: #fa961b;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.4);
    --blur: 20px;
    --gradient-blob: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --content-max: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Helvetica Neue", Arial, "Hiragino Sans", "PingFang SC", sans-serif; }
body { background: var(--bg-color); color: var(--text-color); overflow-x: hidden; scroll-behavior: smooth; }

/* Background Animation */
.bg-blob {
    position: fixed; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(168, 237, 234, 0.4), rgba(254, 214, 227, 0.4), transparent 70%);
    z-index: -1; animation: rotate 20s linear infinite; pointer-events: none;
}
@keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Navigation */
nav {
    position: fixed; top: 0; width: 100%; height: 84px; display: flex; justify-content: center; align-items: center;
    padding: 10px 5%; z-index: 1000; background: transparent; pointer-events: none;
}
.nav-bar {
    width: 100%; max-width: 1180px; display: flex; align-items: center; gap: 14px;
    padding: 12px 16px; border-radius: 999px; background: rgba(255,255,255,0.58); backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.35); box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    pointer-events: auto;
}
.logo { font-size: 22px; font-weight: 700; letter-spacing: 2px; 
    color: var(--accent-color);
    display: flex; align-items: center; gap: 10px; }
.logo .logo-mark { height: 32px; max-height: 100%; width: auto; display: block; }
.nav-menu { display: flex; align-items: center; gap: 14px; flex: 1; justify-content: flex-end; }
.nav-links { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; white-space: nowrap; }
.nav-more { position: relative; }
.nav-more-toggle { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.08); padding: 8px 10px; border-radius: 12px; cursor: pointer; font-weight: 600; font-size: 13px; }
.nav-more-toggle::after { content: '▾'; font-size: 10px; line-height: 1; }
.nav-more-list { position: absolute; top: 110%; right: 0; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); display: none; flex-direction: column; min-width: 180px; z-index: 20; }
.nav-more-list a { padding: 10px 14px; color: inherit; text-decoration: none; display: block; white-space: nowrap; }
.nav-more-list a:hover { background: #f3f4f6; }
.nav-more-list.open { display: flex; }
.nav-links a { text-decoration: none; color: #333; font-weight: 600; font-size: 13px; line-height: 1.1; transition: color 0.3s, background 0.3s, border-color 0.3s; padding: 8px 12px; border-radius: 999px; border: 1px solid transparent; }
.nav-links a.active { color: #fff; background: var(--accent-color); border-color: var(--accent-color); box-shadow: 0 8px 20px rgba(0,122,255,0.25); }
.nav-links a:hover { color: var(--accent-color); border-color: rgba(0,0,0,0.06); background: rgba(0,0,0,0.02); }
.lang-switch { display: flex; align-items: center; position: relative; }
.lang-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.08); background: #fff; box-shadow: 0 6px 14px rgba(0,0,0,0.06); cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.lang-toggle:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.lang-toggle[aria-expanded="true"] { border-color: var(--accent-color); box-shadow: 0 10px 24px rgba(0,0,0,0.12); }
.icon-globe { width: 18px; height: 18px; color: #333; }
.lang-dropdown { position: absolute; top: 110%; right: 0; background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; box-shadow: 0 14px 30px rgba(0,0,0,0.08); padding: 8px; display: grid; gap: 6px; min-width: 150px; z-index: 30; }
.lang-dropdown[hidden] { display: none; }
.lang-option { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border: 1px solid transparent; border-radius: 10px; background: transparent; cursor: pointer; font-weight: 600; color: #222; transition: background 0.2s ease, border-color 0.2s ease; width: 100%; text-align: left; }
.lang-option:hover { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.05); }
.lang-option.active { background: rgba(250, 150, 27, 0.12); border-color: var(--accent-color); color: #000; }
.flag { width: 22px; height: 16px; border-radius: 3px; overflow: hidden; flex-shrink: 0; }
.fast-lane { width: min(var(--content-max), calc(100% - clamp(48px, 10vw, 220px))); margin: 96px auto 0; background: rgba(0,0,0,0.75); color: #fff; border-radius: 20px; padding: 16px 22px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; box-shadow: 0 18px 38px rgba(0,0,0,0.22); }
.fast-pill { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.14); padding: 8px 14px; border-radius: 999px; font-weight: 700; letter-spacing: 0.4px; }
.fast-items { display: flex; flex-wrap: wrap; gap: 10px 14px; font-size: 14px; opacity: 0.92; }
.fast-items span { padding: 6px 10px; border-radius: 12px; background: rgba(255,255,255,0.08); }
.fast-actions { display: flex; align-items: center; gap: 10px; }
.fast-cta { background: var(--accent-color); color: #111; border: none; border-radius: 12px; padding: 12px 18px; font-weight: 700; cursor: pointer; box-shadow: 0 10px 24px rgba(0,0,0,0.16); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.fast-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(0,0,0,0.2); }
.fast-close { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; padding: 10px 12px; font-weight: 600; cursor: pointer; transition: background 0.2s ease, border-color 0.2s ease; }
.fast-close:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.28); }
.fast-lane.closed { display: none; }

.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; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.nav-toggle {display: none;width: 42px;height: 36px;border: none;background: rgba(255,255,255,0.9);border-radius: 12px;padding: 8px;flex-direction: column;justify-content: center;align-items: center;box-shadow: 0 12px 28px rgba(0,0,0,0.1);cursor: pointer;margin-inline-start: auto;margin-inline-end: 0;transition: transform 0.3s ease, box-shadow 0.3s ease;position: relative;overflow: hidden;}

.nav-toggle:hover { transform: translateY(-1px) scale(1.02); box-shadow: 0 16px 32px rgba(0,0,0,0.12); }
.nav-toggle .burger { position: relative; display: block; width: 100%; height: 2px; background: #111; border-radius: 999px; transition: transform 0.3s ease, background 0.3s ease; }
.nav-toggle .burger::before, .nav-toggle .burger::after { content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: #111; border-radius: 999px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle .burger::before { top: -8px; }
.nav-toggle .burger::after { top: 8px; }
.nav-toggle .burger span { position: absolute; inset: 0; background: transparent; }
.nav.open .nav-toggle { transform: scale(1.05); }
.nav.open .nav-toggle .burger { background: transparent; }
.nav.open .nav-toggle .burger::before { transform: translateY(8px) rotate(45deg); }
.nav.open .nav-toggle .burger::after { transform: translateY(-8px) rotate(-45deg); }

/* Sections Common */
section { width: min(var(--content-max), calc(100% - clamp(48px, 10vw, 220px))); margin: 0 auto; padding: clamp(72px, 8vw, 140px) 0; display: flex; flex-direction: column; gap: clamp(20px, 4vw, 44px); position: relative; align-items: stretch; }
section > * { width: 100%; max-width: var(--content-max); margin-left: auto; margin-right: auto; }
h2 { font-size: clamp(2.2rem, 3vw, 3rem); margin-bottom: clamp(32px, 5vw, 60px); text-align: center; font-weight: 300; letter-spacing: 1px; }

/* Hero */
#hero {
    text-align: center;
    /* min-height: 90vh; */
    position: relative;
    overflow: hidden;
}
.hero-snow { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-snow span { position: absolute; top: -10%; width: 8px; height: 8px; background: linear-gradient(135deg, #fff, #e6f3ff); border-radius: 50%; opacity: 0.8; animation: snow-fall 12s linear infinite; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12)); }
.hero-snow span:nth-child(1) { left: 5%; animation-duration: 11s; animation-delay: -2s; }
.hero-snow span:nth-child(2) { left: 15%; width: 10px; height: 10px; animation-duration: 14s; animation-delay: -6s; }
.hero-snow span:nth-child(3) { left: 25%; width: 7px; height: 7px; animation-duration: 10s; animation-delay: -4s; }
.hero-snow span:nth-child(4) { left: 38%; width: 9px; height: 9px; animation-duration: 13s; animation-delay: -8s; }
.hero-snow span:nth-child(5) { left: 52%; width: 6px; height: 6px; animation-duration: 12s; animation-delay: -1s; }
.hero-snow span:nth-child(6) { left: 63%; width: 9px; height: 9px; animation-duration: 15s; animation-delay: -5s; }
.hero-snow span:nth-child(7) { left: 72%; width: 8px; height: 8px; animation-duration: 11s; animation-delay: -3s; }
.hero-snow span:nth-child(8) { left: 81%; width: 7px; height: 7px; animation-duration: 14s; animation-delay: -7s; }
.hero-snow span:nth-child(9) { left: 90%; width: 10px; height: 10px; animation-duration: 16s; animation-delay: -9s; }
.hero-snow span:nth-child(10) { left: 48%; width: 12px; height: 12px; animation-duration: 18s; animation-delay: -11s; opacity: 0.7; }
@keyframes snow-fall {
    0% { transform: translate3d(0, -10%, 0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.9; }
    100% { transform: translate3d(-10px, 110vh, 0) rotate(180deg); opacity: 0; }
}
.hero-content h1 { font-size: clamp(2.6rem, 4vw, 4rem); margin-bottom: 20px; background: -webkit-linear-gradient(45deg, #000, #555); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { font-size: clamp(1rem, 1.4vw, 1.2rem); margin-bottom: 36px; color: #666; }
.cta-btn {
    padding: 15px 40px; background: rgba(255, 255, 255, 0.5); border: 1px solid #fff; border-radius: 50px;
    font-size: 1rem; cursor: pointer; transition: 0.3s; backdrop-filter: blur(5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.cta-btn:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.hero-actions { display: inline-flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px; background: rgba(0,0,0,0.05); font-size: 0.9rem; color: #444; }

/* Story (Glass Card) */
#story { position: relative; }
#story > * { position: relative; z-index: 1; }
.story-mark { position: absolute; bottom: 24px; left: 24px; width: 240px; height: 240px; background: radial-gradient(circle at 32% 32%, rgba(250,150,27,0.14), transparent 68%); mix-blend-mode: multiply; pointer-events: none; z-index: 0; opacity: 0.8; }
.story-mark::after { content: "LUMI"; position: absolute; inset: 24px; background: url('logo.svg') center/60% no-repeat; color: rgba(0,0,0,0.12); font-size: 36px; font-weight: 700; letter-spacing: 6px; display: grid; place-items: end center; padding-bottom: 10px; }
.glass-card {
    background: var(--glass-bg); backdrop-filter: blur(var(--blur)); border-radius: 20px; border: 1px solid var(--glass-border);
    padding: 60px; max-width: 800px; margin: 0 auto; box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.story-text { line-height: 1.8; font-size: 1.1rem; color: #444; }

/* Strengths (Grid) */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(18px, 3vw, 30px); align-items: stretch; }
.strength-card {
    background: rgba(255,255,255,0.4); padding: 40px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.6);
    transition: 0.3s; text-align: center;
}
.strength-card:hover { background: rgba(255,255,255,0.8); transform: translateY(-10px); }
.icon { font-size: 40px; margin-bottom: 20px; display: block; }

/* Process (Vertical Timeline) */
.timeline { position: relative; max-width: 880px; margin: 0 auto; z-index: 0; padding: 10px 0 20px; }
.timeline::after { content: ''; position: absolute; width: 3px; background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.12)); top: 0; bottom: 0; left: 50%; transform: translateX(-50%); z-index: 0; border-radius: 999px; }
.step { position: relative; width: 50%; box-sizing: border-box; opacity: 0; transition: all 0.6s ease; z-index: 1; padding: 16px 0; display: flex; align-items: center; }
.step + .step { margin-top: 12px; }
.step.left { left: 0; text-align: right; transform: translate(-32px, 30px); 
/*padding-right: 90px; */
justify-content: flex-end; }
.step.right { left: 50%; text-align: left; transform: translate(32px, 30px);
/*padding-left: 90px; */
justify-content: flex-start; }
.step.visible { opacity: 1; transform: translate(0, 0); }
.step-dot { position: absolute; top: 50%; /*left: 50%; */transform: translate(-50%, -50%); width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 4px solid var(--accent-color); display: grid; place-items: center; font-weight: 700; font-size: 14px; color: #000; z-index: 2; box-shadow: 0 8px 20px rgba(0,0,0,0.08); pointer-events: none; }
.step-dot-left {position: absolute;top: 50%;right: -8%;transform: translate(-50%, -50%);width: 34px;height: 34px;border-radius: 50%;background: #fff;border: 4px solid var(--accent-color);display: grid;place-items: center;font-weight: 700;font-size: 14px;color: #000;z-index: 2;box-shadow: 0 8px 20px rgba(0,0,0,0.08);pointer-events: none;}

.step-content { min-width: 260px; max-width: 420px; padding: 10px 30px; background: rgba(255,255,255,0.94); border-radius: 16px; box-shadow: 0 16px 36px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.04); position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 12px; white-space: normal; backdrop-filter: blur(6px); }
.step.left .step-content { justify-content: flex-end; margin-left: auto; }
.step.right .step-content { justify-content: flex-start; margin-right: auto; }
.step-icon { width: 42px; height: 42px; border-radius: 12px; background: #f4f7fb; display: grid; place-items: center; box-shadow: inset 0 1px 0 rgba(255,255,255,0.7); flex-shrink: 0; }
.step-icon svg { width: 24px; height: 24px; stroke: var(--accent-color); fill: none; stroke-width: 1.8; }
.step-content { cursor: pointer; }
.step-cta { margin-left: 6px; padding: 6px 10px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.08); background: rgba(0,0,0,0.04); font-size: 12px; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; }
.step-cta:hover { background: rgba(0,0,0,0.08); transform: translateY(-1px); }
.step-content:hover { box-shadow: 0 18px 38px rgba(0,0,0,0.12); border-color: rgba(0,0,0,0.08); }

.journey-modal { position: fixed; inset: 0; display: grid; place-items: center; z-index: 1400; }
.journey-modal[hidden] { display: none; }
.journey-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(2px); }
.journey-modal__body { position: relative; width: min(640px, calc(100% - 32px)); background: #fff; border-radius: 16px; box-shadow: 0 24px 48px rgba(0,0,0,0.2); padding: 22px; display: grid; gap: 14px; z-index: 1; }
.journey-modal__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.journey-modal__title { font-size: 1.4rem; margin: 2px 0; }
.journey-modal__subtitle { color: #555; font-size: 0.95rem; }
.journey-modal__content { max-height: 360px; overflow: auto; line-height: 1.7; color: #333; border: 1px solid rgba(0,0,0,0.05); border-radius: 12px; padding: 12px; background: rgba(0,0,0,0.02); }
.journey-modal__eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 12px; color: #777; margin: 0; }
.journey-close { border: 1px solid rgba(0,0,0,0.12); background: rgba(0,0,0,0.04); border-radius: 10px; padding: 8px 12px; cursor: pointer; font-weight: 600; }
.journey-close:hover { background: rgba(0,0,0,0.08); }

/* Products (Bento Grid) */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; height: 600px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 15px; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); color: #fff;
    transform: translateY(100%); transition: 0.3s;
}
.gallery-item:hover .overlay { transform: translateY(0); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }

/* Company (Decor) */
#company { position: relative; }
#company > * { position: relative; z-index: 1; }
.company-building { position: absolute; right: 18px; bottom: 18px; width: 230px; height: 190px; background: linear-gradient(135deg, rgba(0,0,0,0.04), rgba(0,0,0,0.08)); clip-path: polygon(10% 100%, 10% 30%, 25% 30%, 25% 15%, 40% 15%, 40% 30%, 55% 30%, 55% 5%, 70% 5%, 70% 30%, 85% 30%, 85% 100%); opacity: 0.14; filter: drop-shadow(0 10px 22px rgba(0,0,0,0.08)); pointer-events: none; z-index: 0; }
.company-building::after { content: ""; position: absolute; inset: 18% 22%; background-image: linear-gradient(0deg, transparent 65%, rgba(255,255,255,0.9) 65%), linear-gradient(90deg, transparent 70%, rgba(255,255,255,0.9) 70%); background-size: 18% 16%; background-repeat: repeat; opacity: 0.3; mix-blend-mode: screen; }

/* Contact */
.contact-form { max-width: 620px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; background: rgba(255,255,255,0.65); border: 1px solid rgba(0,0,0,0.04); border-radius: 16px; padding: 20px; box-shadow: 0 12px 28px rgba(0,0,0,0.06); backdrop-filter: blur(8px); }
.contact-form label { font-weight: 600; color: #444; font-size: 14px; margin-bottom: 4px; display: block; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 14px; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; background: rgba(255,255,255,0.9); font-size: 15px; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent-color); box-shadow: 0 0 0 3px rgba(250,150,27,0.16); background: #fff; outline: none; }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .submit-btn { padding: 14px; background: var(--accent-color); color: #111; border: none; border-radius: 12px; cursor: pointer; font-size: 16px; font-weight: 700; box-shadow: 0 12px 24px rgba(0,0,0,0.12); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.contact-form .submit-btn:hover { transform: translateY(-1px); box-shadow: 0 16px 30px rgba(0,0,0,0.16); }
.contact-form .submit-btn:active { transform: translateY(0); }
.contact-form .privacy-note { font-size: 13px; color: #666; line-height: 1.6; }
.contact-form .optional-fields { margin-top: 4px; }
.map-embed { margin-top: 18px; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 28px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.06); }
.map-embed iframe { width: 100%; height: 240px; border: 0; display: block; }
.contact-meta { display: grid; gap: 4px; font-size: 14px; color: #444; }
.contact-form .toggle-optional { align-self: flex-start; padding: 10px 14px; border: 1px solid rgba(0,0,0,0.1); background: rgba(0,0,0,0.04); border-radius: 10px; cursor: pointer; font-size: 14px; transition: 0.2s; }
.contact-form .toggle-optional:hover { background: rgba(0,0,0,0.08); }
.contact-form .optional-fields { display: none; gap: 16px; flex-direction: column; border-top: 1px solid rgba(0,0,0,0.06); padding-top: 14px; }
.contact-form.optional-open .optional-fields { display: flex; }

/* Footer */
footer { text-align: center; padding: 40px; font-size: 12px; color: #888; border-top: 1px solid #eee; }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsive */
@media screen and (max-width: 768px) {
    nav { padding: 8px 12px; height: 80px; }
    .nav-bar { padding: 10px 12px; border-radius: 18px; gap: 12px; }
    .nav-menu { position: absolute; top: 78px; left: 12px; right: 12px; background: rgba(255,255,255,0.95); backdrop-filter: blur(14px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); flex-direction: column; align-items: flex-start; gap: 14px; padding: 0 16px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; border-radius: 14px; }
    nav.open .nav-menu { max-height: calc(100vh - 110px); padding: 16px; overflow-y: auto; }
    .nav-links { flex-direction: column; align-items: flex-start; width: 100%; gap: 10px; }
    .nav-links a { padding: 6px 0; margin: 0; border: none; width: 100%; }
    .lang-switch { margin-left: 0; width: 100%; justify-content: flex-start; align-items: center; gap: 10px; }
    .lang-dropdown { position: relative; top: 0; right: 0; width: 100%; box-shadow: none; border-radius: 10px; display: flex; flex-wrap: wrap; gap: 8px; }
    .lang-option { padding: 10px 12px; flex: 1; min-width: 0; justify-content: center; }
    .nav-toggle { display: inline-flex; }

    .fast-lane { width: calc(100% - 24px); grid-template-columns: 1fr; align-items: flex-start; gap: 10px; text-align: left; margin-top: 86px; }
    .fast-cta { width: 100%; text-align: center; }
    .fast-actions { width: 100%; justify-content: space-between; }
    .fast-close { padding: 10px 12px; }

    section { width: calc(100% - 32px); padding: 80px 0 48px; min-height: auto; max-width: 100%; gap: 24px; }
    h2 { margin-bottom: 32px; }
    .hero-content h1 { font-size: clamp(2.2rem, 6vw, 2.6rem); }
    .gallery { display: flex; flex-direction: column; height: auto; }
    .gallery-item { height: 280px; }

    .service-grid { grid-template-columns: 1fr; max-width: none; }
    .panel { padding: 24px; }
    .panel-header { flex-direction: column; align-items: flex-start; }
    .story-mark { bottom: 10px; left: 10px; transform: scale(0.75); opacity: 0.7; }
    .company-building { right: 2px; bottom: 4px; transform: scale(0.78); }
}

/* Layout Enhancements */
.section-title { text-align: center; font-size: 2.4rem; margin-bottom: 24px; letter-spacing: 0.5px; }
.section-subtitle { text-align: center; max-width: 720px; margin: 0 auto 32px; color: #666; }
.panel {background: var(--glass-bg);border: 1px solid var(--glass-border);border-radius: 18px;padding: clamp(24px, 3vw, 36px);width: 100%;max-width: 100%;margin: 0 auto;box-shadow: 0 20px 40px rgba(0,0,0,0.06);backdrop-filter: blur(var(--blur));}
.panel-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.panel-body { display: flex; flex-direction: column; gap: clamp(16px, 3vw, 28px); }
.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.chip { padding: 8px 14px; border-radius: 999px; background: rgba(0,0,0,0.05); font-size: 13px; color: #333; }
.eyebrow { display: none;text-transform: uppercase; letter-spacing: 2px; font-size: 12px; color: #666; margin-bottom: 6px; }
.story-text { line-height: 1.8; }
.pill-list { display: grid; gap: 10px; align-content: start; }
.pill-list span, .pill-list div { display: inline-block; background: rgba(0,0,0,0.05); padding: 10px 14px; border-radius: 12px; }
.table-wrapper { overflow-x: auto; border: 1px solid var(--glass-border); border-radius: 12px; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
td, th { padding: 10px 12px; border-bottom: 1px solid var(--glass-border); text-align: left; }

.journey-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.journey-card { background: rgba(255,255,255,0.65); border: 1px solid var(--glass-border); border-radius: 14px; padding: 18px; position: relative; box-shadow: 0 12px 24px rgba(0,0,0,0.05); }
.journey-card .badge { position: absolute; top: 14px; right: 14px; background: var(--accent-color); color: #fff; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 13px; }
.journey-detail { font-size: 13px; line-height: 1.7; color: #444; margin-top: 10px; }

.service-card { background: rgba(255,255,255,0.5); padding: 18px; border-radius: 12px; border: 1px solid var(--glass-border); box-shadow: 0 10px 20px rgba(0,0,0,0.04); }
.service-card h3 { margin-bottom: 8px; }
.service-card img { width: 100%; height: auto; max-height: 220px; border-radius: 10px; margin-bottom: 10px; object-fit: contain; display: block; }
.service-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); max-width: 920px; margin: 0 auto; }

.bullet-list { display: grid; gap: 10px; font-size: 14px; line-height: 1.7; }
.bullet-list li, .bullet-list div { list-style: none; padding-left: 0; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
.product-card { background: rgba(0,0,0,0.05); border-radius: 12px; padding: 14px; text-align: center; font-weight: 600; letter-spacing: 0.5px; }
.note { font-size: 12px; color: #666; margin-top: 10px; }

.accordion { display: grid; gap: 10px; }
.accordion-item { border: 1px solid var(--glass-border); border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.7); }
.accordion-item button { width: 100%; text-align: left; padding: 14px 16px; background: transparent; border: none; font-size: 15px; font-weight: 600; cursor: pointer; }
.accordion-body { padding: 0 16px 16px 16px; font-size: 14px; line-height: 1.7; display: none; }
.accordion-item.active .accordion-body { display: block; }
.accordion-item.active button { color: var(--accent-color); }

.contact-meta p { margin: 6px 0; }
.success-box { background: rgba(0,128,0,0.1); border: 1px solid rgba(0,128,0,0.3); border-radius: 10px; padding: 16px; }

.back-to-top { position: fixed; right: 18px; bottom: 18px; width: 46px; height: 46px; border: none; border-radius: 50%; background: rgba(0,0,0,0.75); color: #fff; font-size: 20px; cursor: pointer; box-shadow: 0 14px 28px rgba(0,0,0,0.18); opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease; z-index: 1200; }
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:active { transform: translateY(1px); }

.confirm-dialog { position: fixed; inset: 0; display: grid; place-items: center; z-index: 1300; }
.confirm-dialog[hidden] { display: none; }
.confirm-dialog__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); backdrop-filter: blur(3px); }
.confirm-dialog__body { position: relative; width: min(520px, calc(100% - 32px)); background: #fff; border-radius: 16px; padding: 22px 22px 18px; box-shadow: 0 24px 48px rgba(0,0,0,0.16); display: grid; gap: 14px; }
.confirm-list { display: grid; gap: 10px; font-size: 14px; color: #333; max-height: 320px; overflow: auto; padding: 6px 4px; border: 1px solid rgba(0,0,0,0.06); border-radius: 10px; background: rgba(0,0,0,0.02); }
.confirm-list div { display: grid; grid-template-columns: 90px 1fr; gap: 8px; align-items: start; }
.confirm-list span { color: #111; word-break: break-word; }
.confirm-actions { display: flex; justify-content: flex-end; gap: 10px; }
.confirm-actions button { padding: 10px 16px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.12); cursor: pointer; font-weight: 600; }
.confirm-cancel { background: #f3f3f3; }
.confirm-submit { background: var(--accent-color); color: #fff; border-color: var(--accent-color); }

.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; align-items: start; padding: 20px 0; border-top: 1px solid var(--glass-border); }
.copyright { text-align: center; font-size: 12px; color: #777; margin-top: 12px; }
