/* ==========================================================================
   Design System & Variables (Fresh Blue/Green Theme)
   ========================================================================== */
   :root {
    /* Colors */
    --c-primary: #0F4C5C;      /* Deep Teal */
    --c-primary-light: #1A6B80;
    --c-accent: #38BDF8;       /* Fresh Pale Blue */
    --c-accent-dark: #0284C7;
    --c-secondary: #34D399;    /* Clean Mint Green */
    
    --c-bg: #FFFFFF;
    --c-bg-light: #F0FDFA;     /* Very Light Mint */
    --c-bg-dark: #083344;      /* Dark Cyan */
    
    --c-text-main: #1E293B;    /* Slate 800 */
    --c-text-gray: #64748B;    /* Slate 500 */
    --c-text-light: #F0FDFA;
    
    --c-white: #ffffff;
    --c-border: #CCFBF1;       /* Light border */
    
    /* Typography */
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing */
    --sp-xs: 0.5rem;
    --sp-sm: 1rem;
    --sp-md: 2rem;
    --sp-lg: 4rem;
    --sp-xl: 6rem;
    
    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px -1px rgba(15, 76, 92, 0.05), 0 2px 4px -1px rgba(15, 76, 92, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(15, 76, 92, 0.1), 0 4px 6px -2px rgba(15, 76, 92, 0.05);
    --shadow-glow: 0 0 20px rgba(56, 189, 248, 0.4);
    
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: 1px solid rgba(255, 255, 255, 0.7);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-jp);
    color: var(--c-text-main);
    background-color: var(--c-bg);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

.en-font { font-family: var(--font-en); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding { padding: var(--sp-xl) 0; }
.text-center { text-align: center; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.d-inline-block { display: inline-block; }

.text-gradient {
    background: linear-gradient(135deg, var(--c-accent-dark) 0%, var(--c-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white { color: var(--c-white); }
.text-gray { color: var(--c-text-gray); }
.text-light-gray { color: #E0F2FE; }
.highlight-text { 
    color: var(--c-primary);
    font-weight: 800;
    border-bottom: 3px solid var(--c-secondary);
}
.highlight-yellow { color: #FDE047; font-weight: 700; }
.op-80 { opacity: 0.8; }
.op-90 { opacity: 0.9; }

.bg-light { background-color: var(--c-bg-light); }
.bg-gradient-light {
    background: linear-gradient(180deg, var(--c-white) 0%, var(--c-bg-light) 100%);
}
.dark-section {
    background-color: var(--c-primary);
    position: relative;
}

/* Base Typography */
.section-title {
    font-size: clamp(2.2rem, 5vw, 2.75rem);
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: var(--sp-md);
    letter-spacing: -0.03em;
}
.section-subtitle {
    font-family: var(--font-en);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    color: var(--c-accent-dark);
}
.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--c-accent-dark) 0%, var(--c-secondary) 100%);
    color: var(--c-white);
    border: none;
    box-shadow: 0 4px 14px 0 rgba(2, 132, 199, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 211, 153, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--c-primary);
    border: 2px solid var(--c-border);
}
.btn-outline:hover {
    border-color: var(--c-primary);
    background: rgba(15, 76, 92, 0.05);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}
.btn-block {
    width: 100%;
}

.glow-effect {
    position: relative;
    overflow: hidden;
}
.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s, transform 0.3s;
}
.glow-effect:hover::after {
    opacity: 1;
    transform: scale(1);
}

.badge {
    display: d-inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    color: var(--c-white);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
}
.badge-glow {
    box-shadow: var(--shadow-glow);
}
.badge-accent {
    background: var(--c-accent);
    color: var(--c-white);
    border: none;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}
.navbar.scrolled .logo-text,
.navbar.scrolled .nav-links a {
    color: var(--c-primary);
}
.navbar.scrolled .mobile-menu-btn span {
    background-color: var(--c-primary);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo-text {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--c-primary);
    transition: var(--transition);
}
/* Adjust logo color to dark since background will be light */
.navbar:not(.scrolled) .logo-text {
    color: var(--c-primary); 
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a:not(.btn) {
    color: var(--c-primary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-secondary);
    transition: var(--transition);
}
.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.navbar .btn-outline {
    border-color: rgba(15,76,92,0.3);
    color: var(--c-primary);
}
.navbar.scrolled .btn-outline {
    border-color: var(--c-primary);
}

/* Mobile Nav */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: var(--c-primary);
    transition: var(--transition);
}
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--c-white);
    box-shadow: -10px 0 30px rgba(15,76,92,0.1);
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: var(--transition);
    z-index: 999;
}
.mobile-nav.open {
    right: 0;
}
.mobile-nav a {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--c-primary);
    padding: 1rem 0;
    border-bottom: 1px solid var(--c-border);
}
.mobile-nav .btn {
    border: none;
    margin-top: 1rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hero-bg-img, .hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.65); /* Navy dark semi-transparent overlay */
}

.hero-content {
    text-align: center;
    color: #ffffff;
}

.hero-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 1rem 2.5rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    box-shadow: 0 10px 30px rgba(15, 76, 92, 0.15);
    transform: translateY(0);
    transition: transform 0.3s;
}
.hero-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(15, 76, 92, 0.2);
}
.brand-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--c-text-gray);
    margin-bottom: 0.2rem;
}
.brand-name {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--c-primary);
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 1.5rem 0;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.hero-title .text-gradient {
    background: none;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero .badge {
    background: rgba(56, 189, 248, 0.2);
    color: var(--c-primary);
    border: 1px solid rgba(56, 189, 248, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(15,76,92,0.7);
    font-size: 0.875rem;
    font-family: var(--font-en);
    letter-spacing: 0.1em;
}
.scroll-indicator .arrow {
    width: 2px;
    height: 40px;
    background: rgba(15,76,92,0.2);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}
.scroll-indicator .arrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--c-secondary);
    animation: scrollDown 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* ==========================================================================
   Pain Points
   ========================================================================== */
/* Redesigned Pain Points */
.pain-points {
    background-color: #fcfdfe;
    position: relative;
    overflow: hidden;
}

.pain-points::before {
    content: '?';
    position: absolute;
    top: -10%;
    right: -5%;
    font-size: 30rem;
    font-weight: 900;
    color: rgba(15, 76, 92, 0.03);
    z-index: 0;
    transform: rotate(15deg);
}

.problem-bubble {
    background: white;
    border-radius: 30px;
    padding: 2rem 2.5rem;
    box-shadow: 0 15px 40px -10px rgba(15, 76, 92, 0.08);
    border: 1px solid var(--c-border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: default;
}

.problem-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid white;
    filter: drop-shadow(0 5px 5px rgba(15, 76, 92, 0.05));
    z-index: 10;
}

.problem-bubble:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(15, 76, 92, 0.15);
    border-color: var(--c-accent);
}

.svg-icon-container {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-text {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.6;
    color: var(--c-primary);
    text-align: left;
    margin: 0;
}

.solution-bridge {
    text-align: center;
    margin-top: 6rem;
    position: relative;
}

.bridge-path-container {
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 60px;
    z-index: -1;
}

.path-stroke {
    stroke-dasharray: 8;
    animation: dashGrow 20s linear infinite;
}

@keyframes dashGrow {
    to { stroke-dashoffset: -1000; }
}

.solution-text {
    font-size: clamp(1.4rem, 4vw, 2.3rem);
    font-weight: 900;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 50px;
    border: 2px solid var(--c-accent);
    display: inline-block;
    box-shadow: 0 15px 35px rgba(52, 211, 153, 0.15);
    animation: floatStrong 3s ease-in-out infinite;
}

@keyframes floatStrong {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* SVG Animations */
@keyframes svg-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes svg-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes svg-scan {
    0% { transform: translateX(-10px); }
    100% { transform: translateX(10px); }
}

.animate-float { animation: svg-float 3s ease-in-out infinite; }
.animate-pulse-subtle { animation: svg-pulse 2.5s ease-in-out infinite; }
.animate-scan { animation: svg-scan 2s ease-in-out infinite alternate; }

/* ==========================================================================
   About Features (with Pie Charts)
   ========================================================================== */
.about-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.about-text {
    flex: 1;
}
.feature-list {
    margin-top: 2rem;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}
.icon-circle {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.15);
    color: var(--c-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.about-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
}

.実績-badge {
    text-align: center;
    background: var(--c-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    align-self: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(52, 211, 153, 0.4);
}

.pie-charts-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.pie-card {
    background: var(--c-white);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--c-border);
    transition: var(--transition);
}
.pie-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pie-chart {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 1.5rem;
    background: #E0F2FE; /* Base color before animation */
    transition: --pie-percent 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom property for animation support in modern browsers */
@property --pie-percent {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 0%;
}

.pie-84 { background: conic-gradient(var(--c-accent) var(--pie-84-val, 0%), transparent 0); }
.pie-54 { background: conic-gradient(var(--c-secondary) var(--pie-54-val, 0%), transparent 0); }

.pie-chart.is-visible.pie-84 { --pie-84-val: 84%; }
.pie-chart.is-visible.pie-54 { --pie-54-val: 54%; }

.pie-inner {
    width: 95px; 
    height: 95px;
    background: var(--c-white);
    border-radius: 50%;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    z-index: 10;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.03);
}

.pie-num {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-en);
    line-height: 1;
    color: var(--c-primary);
}
.pie-unit {
    font-size: 0.9rem;
}
.pie-label {
    font-weight: 700;
    color: var(--c-text-main);
    font-size: 1rem;
    text-align: center;
}


/* ==========================================================================
   Free Tour
   ========================================================================== */
.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(8,51,68,0.5) 100%);
    z-index: 1;
}
.tour-desc {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==========================================================================
   Event Details
   ========================================================================== */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.3;
}
.blob-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--c-accent);
}
.blob-2 {
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--c-secondary);
}

.detail-card-premium {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.detail-row {
    display: flex;
    padding: 3rem;
    gap: 2rem;
}
.divider {
    height: 1px;
    background: var(--c-border);
    margin: 0 3rem;
}
.detail-icon-wrap {
    flex-shrink: 0;
}
.detail-icon {
    width: 64px;
    height: 64px;
    background: var(--c-primary);
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(15,76,92,0.3);
}
.detail-content {
    flex: 1;
}
.detail-label {
    font-size: 1rem;
    color: var(--c-text-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.detail-value {
    font-size: 1.5rem;
    color: var(--c-primary);
    line-height: 1.4;
}
.detail-value .time-badge {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: rgba(56, 189, 248, 0.15);
    color: var(--c-accent-dark);
    border-radius: 8px;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    font-weight: 700;
}
.text-lg { font-size: 1.25rem; }
.address { margin-top: 0.5rem; font-size: 1rem; }

.access-box {
    background: var(--c-bg-light);
    padding: 1.5rem;
    border-radius: 12px;
}
.access-title {
    font-size: 0.9rem;
    color: var(--c-text-gray);
    margin-bottom: 0.5rem;
}
.access-list li {
    padding: 0.25rem 0;
    display: flex;
    gap: 0.5rem;
}

/* ==========================================================================
   Voices
   ========================================================================== */
.voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.voice-card {
    background: var(--c-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.voice-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.voice-visual {
    height: 200px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
/* Fresh gradient placeholders */
.v-1 { background-image: url('images/antellijance.jpg'); background-size: cover; background-position: center; }
.v-2 { background-image: url('images/matsuoka.png'); background-size: cover; background-position: center 15%; } /* Focus on face */
.v-3 { background-image: url('images/kyotokeie.png'); background-size: cover; background-position: center; }

.voice-name-footer {
    color: var(--c-primary);
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.voice-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.voice-footer {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    background: var(--c-white);
}

.voice-card:hover .arrow-right {
    transform: translateX(5px);
}
.arrow-right { transition: transform 0.3s; }

/* ==========================================================================
   Win Magazine
   ========================================================================== */
.win-banner {
    background: linear-gradient(135deg, #083344 0%, var(--c-primary) 100%);
    border-radius: 30px;
    padding: 4rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(15,76,92,0.2);
    overflow: hidden;
}

.win-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.win-content {
    flex: 1.2;
}

.win-image {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.win-img-container {
    position: relative;
    width: 100%;
    max-width: 260px; /* Reduced as requested */
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    transform: rotate(3deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.win-img-container:hover {
    transform: rotate(0deg) scale(1.05);
}

.win-img-container::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.2) 0%, transparent 70%);
    z-index: -1;
}

.win-mockup {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .win-flex { flex-direction: column; gap: 3rem; }
    .win-content { order: 1; }
    .win-image { order: 2; width: 100%; }
    .win-img-container { max-width: 280px; }
}
.feature-list-light {
    color: rgba(255,255,255,0.9);
}
.feature-list-light li {
    margin-bottom: 0.8rem;
    display: flex;
    gap: 0.5rem;
}

.schedule-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(15px);
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stepper-wrap {
    position: relative;
    padding-top: 1.5rem;
}

.stepper-line {
    position: absolute;
    top: 30px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.stepper-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%; /* Animated in JS or via is-visible */
    height: 100%;
    background: var(--c-secondary);
    box-shadow: 0 0 15px var(--c-secondary);
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stepper-wrap.is-visible .stepper-line-progress {
    width: 100%;
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.pain-points {
    position: relative;
    overflow: hidden;
}

.step-node {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 3px solid var(--c-bg-dark);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 5;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stepper-wrap.is-visible .step.is-visible .step-node {
    background: var(--c-secondary);
    border-color: #fff;
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.5);
}

.step-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.step-date {
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}

.step-date span {
    font-size: 0.85rem;
    margin-left: 0.2rem;
    opacity: 0.8;
}

/* ==========================================================================
   Footer & Contact
   ========================================================================== */
.footer {
    position: relative;
    overflow: hidden;
}

.glass-card-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.company-brand {
    font-size: 2rem;
    font-weight: 800;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.method-card {
    background: rgba(0,0,0,0.15);
    padding: 2rem;
    border-radius: 20px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.05);
}
.method-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.method-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}
.method-value {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-en);
}
.text-sm { font-size: 1.125rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
}


/* ==========================================================================
   Animations
   ========================================================================== */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.animate-fade {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}
/* Stagger delays */
.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; transition-delay: 0.8s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    to { opacity: 1; }
}

/* Scroll Animations handled by JS */
.animate-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 992px) {
    .about-flex { flex-direction: column; }
    .detail-row { flex-direction: column; padding: 2rem; gap: 1.5rem; }
    .divider { height: 1px; width: auto; margin: 0 2rem; }
    .hero-brand { padding: 0.8rem 1.5rem; }
    .brand-name { font-size: 1.15rem; }
}

@media (max-width: 768px) {
    .schedule-box { padding: 2.5rem 1.5rem; }
    .stepper-line { display: none; }
    .flow-steps { flex-direction: column; gap: 2.5rem; }
    .step { text-align: left; display: flex; align-items: flex-start; gap: 1.5rem; }
    .step-node { margin: 0; flex-shrink: 0; }
    .step-content { flex: 1; }
}

@media (max-width: 768px) {
    .nav-links, .navbar .btn-outline { display: none; }
    .mobile-menu-btn { display: flex; }
    
    .hero-brand {
        padding: 0.8rem 1.2rem;
        margin-bottom: 1rem;
        border-radius: 15px;
    }
    .brand-text { font-size: 0.8rem; }
    .brand-name { font-size: 1.05rem; }
    
    .hero-title { font-size: 2.2rem; margin: 1rem 0; }
    .hero-subtitle { font-size: 1.2rem; margin-bottom: 2rem; }
    .section-padding { padding: 4rem 0; }
    .section-title { font-size: 1.75rem; }
    
    .flow-steps { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); margin: 0.5rem 0; }
    
    .win-banner { padding: 2rem; }
    
    
    .cards-grid, .voices-grid { gap: 1.5rem; }
    .pie-charts-grid { flex-direction: column; align-items: center; gap: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-brand {
        padding: 0.6rem 1rem;
    }
    .brand-text { font-size: 0.75rem; }
    .brand-name { font-size: 0.95rem; }
    .hero-title { font-size: 1.8rem; }
    
    .detail-row { padding: 1.5rem; }
    .glass-card { padding: 2rem 1rem; }
}

.section-padding-sm { padding: 4rem 0; }

/* ==========================================================================
   Important Notice Section
   ========================================================================== */
.important-notice-section {
    position: relative;
    z-index: 5;
    background: #f8fafc;
}
.notice-card {
    transition: var(--transition);
}
.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
}

@media (max-width: 768px) {
    .important-notice-section { padding: 3rem 0; }
    .notice-card { padding: 2rem !important; }
}

/* ==========================================================================
   Loader (Premium & Branded)
   ========================================================================== */
html, body {
    width: 100%;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, var(--c-bg-dark) 0%, #041d26 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease;
}

.loader-wrapper.fade-out {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    perspective: 1000px;
}

.brand-loader {
    width: 120px;
    height: 120px;
    position: relative;
    filter: drop-shadow(0 0 15px rgba(52, 211, 153, 0.4));
}

.brand-svg {
    width: 100%;
    height: 100%;
}

.brand-circle-bg, .brand-circle-draw {
    transform: rotate(-90deg);
    transform-origin: center;
}

.brand-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 4;
}

.brand-circle-draw {
    fill: none;
    stroke: var(--c-secondary);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 283; /* 2 * PI * r (45) */
    stroke-dashoffset: 283;
    animation: drawCircle 1.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.brand-mark {
    stroke: var(--c-white);
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawMark 0.8s 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes drawMark {
    to { stroke-dashoffset: 0; }
}

.loader-text-wrap {
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s 0.5s forwards;
}

.loader-text {
    color: var(--c-white);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.loader-progress-bar {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--c-accent), var(--c-secondary));
    animation: progressFill 2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes progressFill {
    to { width: 100%; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Growth Chart Component
   ========================================================================== */
.growth-bar {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}
.growth-card.is-visible .growth-bar {
    transform: scaleY(1);
    opacity: 1;
}
.growth-card.is-visible .growth-bar:nth-child(1) { transition-delay: 0.1s; }
.growth-card.is-visible .growth-bar:nth-child(2) { transition-delay: 0.3s; }
.growth-card.is-visible .growth-bar:nth-child(3) { transition-delay: 0.5s; }
