:root {

    --primary-glow: #00A8FF;
    --primary-deep-blue: #0077B6;
    --accent-electric-lime: #BEF264;

    --dark-background: #0a0f1a;
    --light-background: #f4f4f9;
    --theme-bright-white: #fff;

    --font-heading: 'Poppins', sans-serif;
    --text-dark: #1F2937;
    --text-light: #E5E7EB;
    --text-muted: #9CA3AF;
}

*, *::before, *::after { 
    box-sizing: border-box; 
}
html { 
    scroll-behavior: smooth; 
}
body { 
    background-color: var(--dark-background); 
    color: var(--text-light); 
    font-family: 'Inter', sans-serif; 
    margin: 0; 
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.no-scroll,
body.modal-open {
    overflow: hidden;
}

main {
    padding-top: 80px;
}
section {
    padding: 100px 40px;
    border-bottom: 1px solid #ddd;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}
section:last-of-type {
    border-bottom: none;
}
section:not(.dark-section-theme) {
    background-color: #fdfdfd;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 35px 35px;
}
section h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: 0.5px;
}
section .intro-paragraph {
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.theme-bright-white {
    background-color: var(--theme-bright-white);
}
.dark-section-theme {
    background-color: var(--dark-background);
    color: var(--text-light);
    border-color: rgba(0, 170, 255, 0.2);
}
.dark-section-theme h2,
.dark-section-theme h3,
.dark-section-theme h4 {
    color: #fff;
}
.dark-section-theme .intro-paragraph,
.dark-section-theme p {
    color: var(--text-muted);
}
.dark-section-theme .use-case-card,
.dark-section-theme .feature-card,
.dark-section-theme .benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(0, 170, 255, 0.2);
}
.dark-section-theme-active header.scrolled:not(.header-hidden) {
    background-color: rgba(10, 15, 26, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.dark-section-theme-active header.scrolled nav a {
    color: #fff;
}
.dark-section-theme::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    padding-bottom: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    transform-origin: center center;
    z-index: 0;
    animation: aurora-glow 20s infinite ease-in-out;
    will-change: transform;
}
.dark-section-theme > * {
    position: relative;
    z-index: 1;
}
.mobile-only { display: none; }
.desktop-only { display: block; }

@keyframes grid-fade {
    0% { opacity: 0.1; } 50% { opacity: 0.5; } 100% { opacity: 0.1; }
}
@keyframes pulsing-glow {
    0% { text-shadow: 0 0 5px var(--primary-glow), 0 0 10px var(--primary-glow); }
    50% { text-shadow: 0 0 15px var(--primary-glow), 0 0 25px var(--primary-glow); }
    100% { text-shadow: 0 0 5px var(--primary-glow), 0 0 10px var(--primary-glow); }
}
@keyframes glitch-in {
    0% { opacity: 0; transform: translateY(20px); text-shadow: 0 0 5px rgba(0, 170, 255, 0.5), 0 0 10px rgba(0, 170, 255, 0.2); }
    50% { opacity: 0.8; transform: translateY(0); text-shadow: 0 0 10px rgba(0, 170, 255, 0.8), 0 0 20px rgba(0, 170, 255, 0.4); }
    100% { opacity: 1; transform: translateY(0); text-shadow: none; }
}
@keyframes scrollPulse {
    0% { opacity: 1; transform: translate(-50%, 0); }
    40% { opacity: 0; transform: translate(-50%, 12px); }
    100% { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes fadeInSlideUp {
    from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); }
}
@keyframes overshoot {
    0% { transform: scaleY(0); } 50% { transform: scaleY(1.1); } 100% { transform: scaleY(1); }
}
@keyframes scroll-road {
    from { transform: translateX(0%); } to { transform: translateX(-50%); }
}
@keyframes sonar-wave {
    0% { transform: scale(0.2); opacity: 0; } 50% { opacity: 0.8; } 100% { transform: scale(1); opacity: 0; }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); }
}
@keyframes animated-border-glow {
    0% { border-color: rgba(0, 168, 255, 0.2); }
    50% { border-color: rgba(0, 168, 255, 0.8); }
    100% { border-color: rgba(0, 168, 255, 0.2); }
}
@keyframes aurora-glow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-40%, -60%) scale(1.2); opacity: 0.15; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
}

header {
    position: fixed; top: 0; left: 0; width: 100%; height: 80px; padding: 0 40px; box-sizing: border-box;
    z-index: 100; background: transparent; transition: background-color 0.4s ease, transform 0.4s ease;
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.logo { grid-column: 1; justify-self: start; }
nav#main-nav { grid-column: 2; width: max-content; justify-self: center; }
.header-right-group { grid-column: 3; justify-self: end; }
header.scrolled { background-color: rgba(244, 249, 249, 0.7); backdrop-filter: blur(10px); }
header.header-hidden { transform: translateY(-100%); }
.logo-img { height: 40px !important; width: auto !important; }
.header-right-group { display: flex; align-items: center; }
.nav-flag { height: 22px; width: auto; object-fit: contain; margin-left: 25px; }
nav#main-nav ul { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; }
nav#main-nav li { margin: 0 18px; position: relative; }
nav#main-nav a {
    font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; text-decoration: none;
    transition: color 0.3s; white-space: nowrap; position: relative; margin: 0;
}
li.nav-item-dropdown { position: relative; }
li.nav-item-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
li.nav-item-dropdown > a::before { content: '▾'; font-size: 0.8em; }
header:not(.scrolled) nav a, header:not(.scrolled) li.nav-item-dropdown > a::before { color: #fff; }
header.scrolled nav a, header.scrolled li.nav-item-dropdown > a::before { color: var(--text-dark); }
.dark-section-theme-active header.scrolled { background-color: rgba(17, 24, 39, 0.7); }
.dark-section-theme-active header.scrolled nav a, .dark-section-theme-active header.scrolled li.nav-item-dropdown > a::before { color: #fff; }
nav a.active-link { color: var(--primary-glow) !important; }
nav#main-nav a::after {
    content: ''; position: absolute; left: 0; bottom: -5px; width: 100%; height: 2px; background-color: var(--primary-glow);
    transform: scaleX(0); transform-origin: center; transition: transform 0.3s ease;
}
nav#main-nav a:hover::after, nav#main-nav a.active-link::after { transform: scaleX(1); }
.nav-item-dropdown:hover .dropdown-menu { visibility: visible; opacity: 1; transform: translateX(-50%) translateY(0); }
.dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); opacity: 0; visibility: hidden;
    margin-top: 15px; padding: 8px; width: max-content; min-width: 220px; background-color: rgba(15, 25, 40, 0.9);
    backdrop-filter: blur(15px); border-radius: 10px; border: 1px solid rgba(0, 168, 255, 0.3);
    border-top: 2px solid var(--primary-glow); box-shadow: 0 15px 35px rgba(0, 168, 255, 0.2); z-index: 10;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.dropdown-menu a {
    font-weight: 500; font-size: 0.95rem; color: #fff !important; padding: 10px 20px; margin: 0;
    display: block; position: relative; transition: color 0.2s ease; text-align: left;
}
.dropdown-menu a::after {
    content: ''; position: absolute; bottom: 6px; left: 20px; height: 2px; width: 0;
    background-color: var(--primary-glow); transition: width 0.3s ease;
}
.dropdown-menu a:hover { color: var(--primary-glow) !important; }
.dropdown-menu a:hover::after { width: calc(100% - 40px); }
nav#main-nav > ul > li:not(.nav-item-dropdown) { transform: translateY(-2px); }
.hamburger { display: none; }

.hero-section {
    position: relative; height: 100vh; display: flex; align-items: center; justify-content: center;
    overflow: hidden; margin-top: -80px; background-color: var(--dark-background); box-sizing: border-box; padding: 0 10%;
}
.hero-bg-image {
    position: absolute; top: 0%; left: 0%; width: 100%; height: 100%; object-fit: cover;
    z-index: 0; filter: brightness(1); opacity:1; transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
    background: radial-gradient(circle at 80% 50%, rgba(0, 168, 255, 0.15), transparent 30%);
}
.hero-content {
    position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding-bottom: 5vh;
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.hero-content h1 {
    grid-column: 1 / -1; font-family: var(--font-heading); font-size: 3.8rem; font-weight: 700;
    color: #fff; margin: 0 0 40px 0; text-transform: uppercase; letter-spacing: 3px;
    text-shadow: 0 0 10px var(--primary-glow), 0 0 20px rgba(0, 168, 255, 0.5);
    text-align: center; white-space: nowrap;
}
.hero-content p, .hero-content .hero-brand-introduction, .hero-content .hero-cta-futuristic {
    grid-column: 2; justify-self: end; text-align: right;
}
.hero-content p { font-size: 1.2rem; max-width: 600px; margin-bottom: 30px; color: var(--text-light); line-height: 1.8; }
.hero-brand-introduction {
    display: flex; justify-content: flex-end; align-items: center; gap: 2rem; margin-bottom: 40px;
    padding: 15px 0; border-top: 1px solid; border-bottom: 1px solid; max-width: 550px;
    animation: animated-border-glow 4s infinite linear;
}
.hero-introducing-text {
    color: var(--text-muted); font-size: 1rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2.5px;
}
.hero-product-logo { max-height: 65px; width: auto; filter: drop-shadow(0 0 15px var(--primary-glow)); }
.hero-cta-futuristic {
    display: inline-flex; align-items: center; gap: 12px; font-family: 'Inter', sans-serif;
    font-weight: 600; font-size: 0.9rem; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
    color: var(--primary-glow); background: transparent; border: 2px solid var(--primary-glow);
    padding: 12px 24px; border-radius: 4px; cursor: pointer; backdrop-filter: blur(2px);
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.hero-cta-futuristic svg { transition: transform 0.3s ease; }
.hero-cta-futuristic:hover { background-color: var(--primary-glow); color: var(--dark-background); box-shadow: 0 0 20px var(--primary-glow); }
.hero-cta-futuristic:hover svg { transform: translateX(5px); }
.scroll-down-cue {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 4;
    width: 24px; height: 40px; border: 2px solid rgba(0, 168, 255, 0.5); border-radius: 20px;
}
.scroll-down-cue span {
    position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: var(--primary-glow);
    border-radius: 2px; transform: translateX(-50%); animation: scrollPulse 2.5s infinite ease-in-out;
}

.interactive-demo-section { padding: 60px 40px; }
.interactive-demo-section .section-content { margin-bottom: 40px; }
.demo-wrapper {
    width: 100%; max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 250px;
    grid-template-rows: auto auto; grid-template-areas: "panels panels" "sim controls"; gap: 20px; align-items: center;
}
.demo-container { grid-area: panels; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; width: 100%; }
.demo-panel {
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(0, 170, 255, 0.2); border-radius: 16px;
    padding: 25px; box-shadow: 0 5px 25px rgba(0,0,0,0.05); display: flex; flex-direction: column; align-items: center;
}
.demo-panel h3 {
    font-family: var(--font-heading); font-size: 1.5rem; margin: 0 0 20px 0; font-weight: 600;
    color: #fff; text-shadow: 0 0 8px rgba(0, 170, 255, 0.5);
}
.panel-main-content { display: flex; width: 100%; justify-content: center; align-items: flex-end; gap: 25px; }
.power-bars-container { display: flex; gap: 20px; width: 100%; max-width: 200px; height: 160px; justify-content: center; }
.bar-group { display: flex; flex-direction: column; align-items: center; flex: 1; }
.bar-wrapper {
    width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.2); border-radius: 8px;
    position: relative; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1);
}
.bar { position: absolute; bottom: 0; left: 0; width: 100%; height: 0; border-radius: 8px; }
.bar-label { margin-top: 10px; font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; }
.rider-bar { background-color: #adb5bd; transition: height 0.05s linear; }
.standard-mode .motor-bar { background-color: #f57f17; transform-origin: bottom; }
.powerpedal-mode .motor-bar { background-color: var(--primary-glow); transition: height 0.05s linear; }
.battery-container { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 8px; height: 160px; margin-bottom: 26px; }
.range-readout { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--text-light); }
.powerpedal-mode .range-readout { color: var(--primary-glow); }
.battery-label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; }
.battery-outline {
    width: 28px; height: 100%; border: 2px solid var(--text-muted); border-radius: 6px; padding: 3px;
    background-color: transparent; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end;
}
.battery-level {
    width: 100%; background-color: var(--accent-electric-lime); border-radius: 3px;
    transition: background-color 0.3s ease, height 0.1s linear; box-sizing: border-box;
}
.battery-level.low { background-color: #ffc107; }
.battery-level.critical { background-color: #dc3545; }
.total-power-display { margin-top: 25px; text-align: center; }
.total-power-value { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: #fff; }
.total-power-label { font-size: 0.9rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 1px; }
.ride-simulator {
    grid-area: sim; width: 100%; height: 100px; background-color: rgba(0,0,0,0.2); border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1); position: relative; overflow: hidden;
}
.road-svg {
    position: absolute; top: 0; left: 0; width: 200%; height: 100%;
    animation: scroll-road 20s linear infinite; animation-play-state: paused;
}
.ride-simulator.active .road-svg { animation-play-state: running; }
.cyclist { position: absolute; top: 50%; left: 20%; width: 60px; height: auto; transform: translate(-50%, -50%); }
.demo-controls { grid-area: controls; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.demo-controls label {
    font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 1px;
    font-size: 1.1rem; margin-bottom: 5px; color: var(--text-light); width: 100%; text-align: center;
}
.slider-container { display: flex; align-items: stretch; flex-direction: column; gap: 15px; width: 100%; justify-content: center; }
#effort-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; background: rgba(0,0,0,0.3); outline: none; border-radius: 4px; }
#effort-slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none; width: 24px; height: 24px; background: var(--primary-glow);
    cursor: pointer; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 10px rgba(0, 170, 255, 0.7);
}
#effort-slider::-moz-range-thumb {
    width: 24px; height: 24px; background: var(--primary-glow); cursor: pointer; border-radius: 50%;
    border: 3px solid #fff; box-shadow: 0 0 10px rgba(0, 170, 255, 0.7);
}
#reset-btn {
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; background-color: #6c757d; color: white;
    border: none; padding: 10px 20px; border-radius: 50px; cursor: pointer; transition: background-color 0.2s ease;
}
#reset-btn:hover { background-color: #5a6268; }
.demo-instructions {
    max-width: 700px; margin: 40px auto 50px auto; padding: 25px 30px; border: 1px solid var(--border-color);
    border-radius: 12px; background: rgba(0, 0, 0, 0.2); backdrop-filter: blur(5px);
}
.demo-instructions h4 {
    margin-top: 0; margin-bottom: 15px; text-align: left; color: var(--primary-glow); font-family: var(--font-heading);
}
.demo-instructions ol { margin: 0; padding-left: 20px; text-align: left; display: flex; flex-direction: column; gap: 15px; }
.demo-instructions li { line-height: 1.7; color: var(--text-muted); }
.demo-instructions li::marker { color: var(--primary-glow); font-weight: bold; }
.demo-instructions li strong { color: var(--text-light); }
.demo-toggle {
    position: relative; display: flex; width: 100%; max-width: 300px; margin: 0 auto 20px auto;
    background-color: rgba(0,0,0,0.3); border-radius: 50px; border: 1px solid rgba(255,255,255,0.1);
}
.toggle-btn {
    flex: 1; padding: 10px; font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600;
    background: none; border: none; color: var(--text-muted); cursor: pointer; transition: color 0.3s ease;
    z-index: 2; text-transform: uppercase;
}
.toggle-btn.active { color: #fff; }
.toggle-slider {
    position: absolute; top: 2px; left: 2px; width: calc(50% - 2px); height: calc(100% - 4px);
    background-color: var(--primary-glow); border-radius: 50px; box-shadow: 0 0 10px rgba(0, 170, 255, 0.7);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); z-index: 1;
}
#toggle-powerpedal.active ~ .toggle-slider { transform: translateX(100%); }

.numbers-tabs-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 40px; margin-bottom: 40px; }
.tab-link {
    border: none; font-family: 'Inter', sans-serif; padding: 10px 20px; font-size: 1rem; font-weight: 600;
    color: var(--text-light); background-color: transparent; border: 1px solid rgba(0, 170, 255, 0.3);
    border-radius: 50px; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.5px;
}
.tab-link:hover { background-color: rgba(0, 170, 255, 0.2); color: #fff; }
.tab-link.active {
    background: linear-gradient(135deg, var(--primary-deep-blue), var(--primary-glow)); color: #fff;
    border-color: transparent; box-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
}
.numbers-tab-panel { display: none; }
.numbers-tab-panel.active { display: block; animation: fadeIn 0.6s ease-out; }
.stats-dashboard-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-content: start; }
.stat-card {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(0, 170, 255, 0.2); border-radius: 12px;
    padding: 20px; font-family: inherit; color: inherit; cursor: pointer; text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: grid; grid-template-areas: "icon value" "text text"; grid-template-columns: auto 1fr;
    align-items: center; gap: 0 15px; position: relative; overflow: hidden;
}
.stat-card:hover { background-color: rgba(255, 255, 255, 0.07); transform: translateY(-5px); }
.stat-card.active {
    background-color: rgba(0, 170, 255, 0.15); border-color: var(--primary-glow);
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.2); transform: translateY(-5px);
}
.stat-card .number-icon { grid-area: icon; color: var(--primary-glow); align-self: center; }
.stat-card .number-icon svg { width: 28px; height: 28px; }
.stat-card .number-value {
    grid-area: value; font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
    color: var(--accent-electric-lime); text-shadow: 0 0 8px rgba(190, 242, 100, 0.4); text-align: right;
}
.stat-card .number-teaser { grid-area: text; font-size: 0.9rem; color: var(--text-light); line-height: 1.4; margin: 8px 0 0 0; }
.stats-details-panel { background: rgba(0,0,0,0.1); border-radius: 12px; padding: 30px; min-height: 250px; position: relative; }
.stat-detail-content { display: none; opacity: 0; }
.stat-detail-content.active { display: block; animation: fadeIn 0.4s ease-out forwards; }
.stats-details-panel h3 { margin-top: 0; font-size: 1.5rem; }
.stats-details-panel p { line-height: 1.7; color: var(--text-light); }
.stat-card::before {
    content: ""; position: absolute; left: var(--mouse-x, 50%); top: var(--mouse-y, 50%);
    width: 250px; height: 250px; background: radial-gradient(circle at center, rgba(0, 168, 255, 0.2), transparent 60%);
    transform: translate(-50%, -50%); opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.stat-card:hover::before { opacity: 1; }

#teardown h2 { color: var(--primary-glow); }
.teardown-layout { display: flex; gap: 5%; position: relative; }
.teardown-sticky-visuals { width: 45%; height: 100vh; display: flex; align-items: center; justify-content: center; z-index: 2; }
.teardown-sticky-visuals.dimmed .hotspot-bike-img { filter: brightness(1); transition: filter 0.5s ease-in-out; }
.hotspot-bike-img { display: block; width: 100%; height: auto; filter: none; transition: filter 0.5s ease-in-out; }
.bike-container { position: relative; width: 100%; max-width: 600px; }
.teardown-scroll-content { width: 50%; padding-top: 20vh; padding-bottom: 20vh; z-index: 1; }
.component-showcase {
    margin: 0 auto 60vh auto;
    max-width: 95%;
    position: relative;
    z-index: 2;
}
.teardown-sticky-visuals {
    transition: filter 0.4s ease;
}
.teardown-sticky-visuals.is-focused {
    filter: brightness(0.65);
}
.teardown-sticky-visuals.is-focused .hotspot.active {
    filter: brightness(1.5);
    transform: translate(-50%, -50%) scale(1.2);
}
.component-visual { text-align: center; margin-bottom: 25px; }
.component-visual img { max-width: 100%; width: 350px; height: auto; border-radius: 8px; }
.component-text h3 {
    font-family: var(--font-heading); color: var(--text-dark); text-align: left; margin-top: 0;
    font-size: 1.8rem; border-bottom: 2px solid var(--primary-glow); padding-bottom: 10px; margin-bottom: 20px;
}
.component-intro { font-size: 1.1rem; line-height: 1.7; color: #555; text-align: left; }
.spec-list { list-style: none; padding: 0; margin: 25px 0; text-align: left; }
.spec-list li { position: relative; padding-left: 25px; margin-bottom: 12px; font-weight: 600; color: #444; }
.spec-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-glow); font-weight: bold; }
.component-details { margin-top: 20px; }
.component-details summary {
    cursor: pointer; display: inline-block; color: var(--primary-glow);
    font-weight: 600; list-style: none; position: relative; padding-right: 20px;
}
.component-details summary::-webkit-details-marker { display: none; }
.component-details summary::after {
    content: '+'; position: absolute; right: 0; font-size: 1.3rem; transition: transform 0.3s ease;
}
.component-details[open] > summary::after { transform: rotate(45deg); }
.details-content { overflow: hidden; text-align: left; }
.details-content p { color: #555; line-height: 1.7; margin-top: 15px; border-top: 1px solid #eee; padding-top: 15px; }
.hotspot {
    position: absolute; width: 60px; height: 60px; transform: translate(-50%, -50%);
    cursor: pointer; display: flex; justify-content: center; align-items: center; filter: brightness(1) !important; z-index: 3;
}
.hotspot-dot {
    position: absolute; width: 10px; height: 10px; background-color: var(--text-muted);
    border-radius: 50%; transition: all 0.3s ease-in-out;
}
.hotspot-wave {
    position: absolute; width: 100%; height: 100%; border: 2px solid var(--text-muted);
    border-radius: 50%; transform: scale(0); opacity: 0; animation: sonar-wave 1.5s infinite ease-out;
}
.hotspot.active .hotspot-dot { background-color: var(--primary-glow); transform: scale(1.2); }
.hotspot.active .hotspot-wave { border: 2px solid var(--primary-glow); }

#app-section { overflow: visible; padding: 100px 40px; padding-top: 15vh; padding-bottom: 15vh; }
.app-layout-container { display: flex; justify-content: space-between; align-items: flex-start; gap: 4%; max-width: 1400px; margin: 60px auto 0 auto; }
.app-text-content { width: 32%; flex-shrink: 0; }
.feature-text-item {
    padding: 25px; margin-bottom: 70vh; opacity: 0.6; border-left: 3px solid transparent;
    transition: opacity 0.4s ease, border-color 0.4s ease;
}
.feature-text-item:last-child { margin-bottom: 0; }
.feature-text-item.is-active { opacity: 1; border-left: 3px solid var(--primary-glow); }
.feature-text-item h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 15px; }
.feature-text-item p { color: var(--text-light); font-size: 1.1rem; line-height: 1.7; }
.app-image-container { width: 64%; height: 90vh; position: sticky; top: 5vh; display: flex; align-items: center; justify-content: center; }
.app-image-wrapper { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.app-showcase-image {
    position: absolute; height: 95%; width: auto; max-width: 120%; object-fit: contain;
    opacity: 0; transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; transform: scale(1);
}
.app-showcase-image.active { opacity: 1; transform: scale(1.05); }
.app-benefits-section { max-width: 1000px; margin: 80px auto 0 auto; padding-top: 40px; text-align: center; border-top: 1px solid rgba(0, 170, 255, 0.2); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.app-section .benefit-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 16px; padding: 25px;
}
.app-section .benefit-card h4 { font-family: var(--font-heading); color: var(--text-light); }
.app-section .benefit-card ul { list-style: none; padding-left: 0; text-align: left; }
.app-section .benefit-card ul li { color: var(--text-muted); padding-left: 25px; position: relative; margin-bottom: 10px; }
.app-section .benefit-card ul li::before {
    content: '✓'; position: absolute; left: 0; top: 2px; color: var(--primary-glow); font-weight: bold;
}

#use-cases { overflow: visible; }
.use-case-tabs-container {
    display: grid; grid-template-columns: 300px 1fr; gap: 40px;
    max-width: 1100px; margin: 60px auto 0; align-items: flex-start;
}
.use-case-tabs-nav { display: flex; flex-direction: column; gap: 10px; }
.use-case-tab-button {
    width: 100%; padding: 15px 20px; font-family: 'Inter', sans-serif; text-align: left; color: var(--text-light);
    background-color: transparent; border: 1px solid rgba(0, 170, 255, 0.2); border-left: 4px solid rgba(0, 170, 255, 0.2);
    border-radius: 8px; cursor: pointer; transition: all 0.3s ease;
}
.use-case-tab-button h3 { margin: 0; font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--text-light); transition: color 0.3s ease; pointer-events: none; }
.use-case-tab-button:hover { background-color: rgba(0, 170, 255, 0.1); border-color: rgba(0, 170, 255, 0.5); }
.use-case-tab-button.active {
    background-color: rgba(0, 170, 255, 0.15); border-color: var(--primary-glow);
    border-left-width: 4px; transform: scale(1.03);
}
.use-case-tab-button.active h3 { color: var(--primary-glow); }
.use-case-tab-content {
    position: relative; 
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(0, 170, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;

    min-height: 620px;
}
.use-case-tab-panel {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px); 
    transition: opacity 0.4s ease-out, transform 0.4s ease-out, visibility 0s 0.4s;

}
.use-case-tab-panel.active {

    opacity: 1;
    visibility: visible;
    transform: translateY(0); 
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.use-case-tab-image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.use-case-tab-text { padding: 30px; }
.use-case-tab-text h4 { font-family: var(--font-heading); font-size: 1.8rem; margin: 0 0 15px 0; color: #fff; }
.use-case-tab-text p { font-size: 1.1rem; line-height: 1.7; color: var(--text-light); margin: 0; }

#featured-in-section { background-color: var(--light-background); padding: 120px 40px; }
.feature-card-container {
    max-width: 1100px; margin: 0 auto; background-color: var(--theme-bright-white); border: 1px solid #e0e0e0;
    border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card-container:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0, 168, 255, 0.15); }
.feature-content { padding: 50px; text-align: left; position: relative; z-index: 2; }
.feature-logo img { height: 40px; width: auto; margin-bottom: 30px; }
.feature-quote {
    font-size: 1.4rem; line-height: 1.6; font-style: italic; color: var(--text-dark); margin: 0 0 40px 0;
    padding-left: 20px; border-left: 4px solid var(--primary-glow); text-align: left;
}
.feature-visual { height: 100%; width: 100%; }
.feature-visual img { width: 100%; height: 100%; object-fit: cover; }
.cta-button-outline {
    font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
    color: var(--primary-deep-blue); background: transparent; border: 2px solid var(--primary-deep-blue);
    padding: 12px 30px; border-radius: 50px; cursor: pointer; transition: all 0.3s ease;
}
.cta-button-outline:hover { background-color: var(--primary-deep-blue); color: #fff; }

#awards-section { padding: 100px 40px; }
.recognition-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px; max-width: 1200px; margin: 0 auto;
}
.recognition-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none;
    background-color: #fff; border: 1px solid #e0e0e0; border-radius: 16px; padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.recognition-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0, 168, 255, 0.15); }
.recognition-logo-container { height: 80px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.recognition-logo-container img { max-height: 100%; max-width: 140px; object-fit: contain; }
.recognition-title { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; color: var(--text-dark); text-align: center; line-height: 1.4; margin: 0; }

#global-journey-section { padding: 100px 40px; display: flex; flex-direction: column; align-items: center; overflow: visible; }
.map-container {
    position: relative; width: 100%; max-width: 900px; margin: 40px auto 0 auto; aspect-ratio: 2 / 1;
    background-image: url('../img/my_world_map.png'); background-size: contain; background-repeat: no-repeat; background-position: center;
}
.animation-layer-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: visible; }
.journey-line { fill: none; stroke: var(--primary-glow); stroke-width: 2.5; stroke-linecap: round; }
.journey-marker { opacity: 0; transform: scale(0.5); transform-origin: center; }
.journey-marker .main-circle { fill: var(--primary-glow); stroke: #fff; stroke-width: 1.5; filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.8)); }
.journey-marker text { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; fill: #fff; text-shadow: 0 0 5px rgba(0,0,0,0.7); }
.future-marker { opacity: 0; }
.future-marker .main-circle { fill: none; stroke: var(--primary-glow); stroke-width: 2; filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.7)); }
.future-marker .ping-circle { stroke: var(--primary-glow); stroke-width: 2; fill: transparent; transform-origin: center; animation: sonar-wave 2s infinite ease-out; }

#our-story-section { padding: 100px 40px; background-color: var(--theme-bright-white); overflow: hidden; }
#our-story-section .section-content { max-width: 1500px; margin: 0 auto; }
.story-timeline { position: relative; padding: 20px 0; margin-bottom: 80px; }
.story-timeline::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 3px; height: 100%; background-color: var(--primary-glow); opacity: 0.3;
}
.timeline-item { position: relative; width: 50%; padding: 10px 40px; box-sizing: border-box; }
.timeline-item:nth-child(odd) { left: 0; padding-right: 60px; }
.timeline-item:nth-child(even) { left: 50%; padding-left: 60px; }
.timeline-content {
    background: var(--light-background); padding: 25px; border-radius: 8px;
    border-left: 4px solid var(--primary-glow); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.timeline-content h3 { font-family: var(--font-heading); color: var(--text-dark); margin-top: 0; font-size: 1.5rem; }
.timeline-content p { color: #555; line-height: 1.7; margin-bottom: 0; }
.timeline-item::after {
    content: ''; position: absolute; top: 30px; width: 20px; height: 20px;
    background-color: #fff; border: 4px solid var(--primary-glow); border-radius: 50%; z-index: 1;
}
.timeline-item:nth-child(odd)::after { right: -10px; }
.timeline-item:nth-child(even)::after { left: -10px; }
.what-drives-us { margin-top: 60px; text-align: center; }
.drives-us-title { margin-bottom: 50px; }
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 50px; }
.principle-card {
    background-color: var(--light-background); padding: 30px; text-align: left; border-radius: 8px;
    border-top: 4px solid var(--primary-glow); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.principle-card h3 { font-family: var(--font-heading); color: var(--text-dark); font-size: 1.5rem; margin-top: 0; }
.principle-card p { color: #555; line-height: 1.7; margin-bottom: 0; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; text-align: left; }
.value-card {
    background-color: var(--theme-bright-white); padding: 25px; border: 1px solid #e0e0e0;
    border-radius: 8px; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 170, 255, 0.15); }
.value-icon { color: var(--primary-glow); margin-bottom: 15px; }
.value-icon svg { width: 32px; height: 32px; }
.value-card h4 { font-family: var(--font-heading); color: var(--text-dark); margin-top: 0; margin-bottom: 10px; font-size: 1.1rem; }
.value-card p { color: #555; line-height: 1.6; font-size: 0.95rem; margin: 0; }

#team-section { background-color: var(--theme-bright-white); }
#advisors-section { background-color: var(--light-background); }
.horizontal-scroll-wrapper { position: relative; }
.team-line-container {
    position: relative; width: 100%; overflow-x: scroll; margin: 0; box-sizing: border-box;
    padding-bottom: 40px; -webkit-overflow-scrolling: touch; scrollbar-width: thin;
    scrollbar-color: var(--primary-glow) rgba(0, 0, 0, 0.1);
}
.team-line-container::-webkit-scrollbar { height: 6px; }
.team-line-container::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.1); border-radius: 3px; }
.team-line-container::-webkit-scrollbar-thumb { background-color: var(--primary-glow); border-radius: 3px; }
.team-line { display: flex; gap: 30px; padding: 20px 40px; position: relative; z-index: 10; }

.team-card-link, .advisor-card-link {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease-out;
    flex: 1; 
    display: flex; 
}
.team-card, .advisor-card {
    position: relative;
    min-width: 220px;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 25px;
    width: 100%; 
}
.team-card-link:hover .team-card, .advisor-card-link:hover .advisor-card {
    transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0, 170, 255, 0.2); border-color: var(--primary-glow);
}
.team-photo, .advisor-photo {
    width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid #e0e0e0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: transform 0.3s ease-in-out; position: relative;
    z-index: 1; margin: 0 auto 15px auto;
}
.team-card-link:hover .team-photo, .advisor-card-link:hover .advisor-photo { transform: scale(1.05); }
.card-content, .advisor-content { text-align: center; }
.team-role, .advisor-role {
    font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600;
    text-transform: uppercase; color: var(--primary-glow);
}
.scroll-arrow {
    display: none; position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px;
    background: rgba(255,255,255,0.8); border: 1px solid rgba(0,0,0,0.1); border-radius: 50%;
    backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); cursor: pointer; z-index: 20;
    transition: background-color 0.3s ease, transform 0.2s ease; justify-content: center; align-items: center;
}
.scroll-arrow:hover { background: #fff; }
.scroll-arrow:active { transform: translateY(-50%) scale(0.95); }
.scroll-arrow.prev { left: -10px; }
.scroll-arrow.next { right: -10px; }
.scroll-arrow::before {
    content: ''; width: 12px; height: 12px; border-top: 3px solid var(--primary-glow);
    border-right: 3px solid var(--primary-glow); display: block;
}
.scroll-arrow.prev::before { transform: translateX(2px) rotate(-135deg); }
.scroll-arrow.next::before { transform: translateX(-2px) rotate(45deg); }
.profile-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(10, 15, 26, 0.8);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 1000; display: flex;
    justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease-in-out;
}
.profile-modal-overlay.visible { opacity: 1; }
.profile-modal {
    background-color: var(--light-background); color: var(--text-dark); border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2); width: 90%; max-width: 500px;
    position: relative; padding: 40px 30px; transform: scale(0.95); transition: transform 0.3s ease-in-out;
}
.profile-modal-overlay.visible .profile-modal { transform: scale(1); }
.profile-modal-close {
    position: absolute; top: 10px; right: 15px; background: none; border: none; font-size: 2.5rem;
    color: var(--text-muted); cursor: pointer; line-height: 1; transition: color 0.2s ease;
}
.profile-modal-close:hover { color: var(--text-dark); }
.profile-modal-content { text-align: center; }
.modal-photo {
    width: 130px; height: 130px; border-radius: 50%; object-fit: cover;
    border: 4px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.1); margin-bottom: 20px;
}
.modal-name { font-family: var(--font-heading); font-size: 1.8rem; margin: 0 0 5px 0; color: var(--text-dark); }
.modal-role { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; text-transform: uppercase; color: var(--primary-glow); margin: 0 0 20px 0; }
.modal-bio { font-size: 1.05rem; line-height: 1.7; color: #555; margin: 0 0 30px 0; }
.modal-linkedin-btn {
    display: inline-flex; align-items: center; gap: 8px; background-color: #0077b5;
    color: #fff; text-decoration: none; padding: 10px 20px; border-radius: 50px;
    font-weight: 600; transition: background-color 0.2s ease, transform 0.2s ease;
}
.modal-linkedin-btn:hover { background-color: #005e90; transform: translateY(-2px); }
.modal-linkedin-btn img { height: 18px; width: auto; }

.supporters-section { background-color: var(--theme-bright-white); }
.supporters-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px; max-width: 1200px; margin: 60px auto 0 auto;
}
.supporter-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 30px 25px; border-radius: 12px; background-color:#fff;
    border: 1px solid #e0e0e0; text-decoration: none; color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; box-sizing: border-box;
}
.supporter-card:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(0, 170, 255, 0.15); border-color: #e0e0e0; }
.supporter-logo-img { max-height: 55px; max-width: 150px; width: auto; margin-bottom: 25px; }
.supporter-name { font-family: var(--font-heading); font-size: 1.3rem; color: var(--text-dark); margin: 0 0 10px 0; }
.supporter-desc { font-size: 0.95rem; line-height: 1.6; color: #555; margin: 0; flex-grow: 1; }

footer {
    background-color: var(--dark-background); color: var(--text-muted); padding: 60px 40px 20px 40px;
    border-top: 1px solid rgba(0, 170, 255, 0.2);
}
.footer-container { max-width: 1200px; margin: 0 auto 40px auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px 60px; }
#footer-branding-newsletter { display: flex; flex-direction: column; gap: 40px; }
.footer-logo { height: 40px; width: auto; margin-bottom: 15px; }
.footer-tagline-motto { font-size: 1.1rem; color: #fff; font-weight: 600; margin: 0; }
.footer-column h3 { font-family: var(--font-heading); color: #fff; font-size: 1.2rem; margin-top: 0; margin-bottom: 20px; }
.footer-column p { color: var(--text-light); line-height: 1.7; margin-top: 0; margin-bottom: 15px; }
.footer-accordion { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-accordion summary {
    display: flex; justify-content: space-between; align-items: center; padding: 15px 0;
    cursor: pointer; list-style: none;
}
.footer-accordion summary::-webkit-details-marker { display: none; }
.footer-accordion summary h3 { margin: 0; padding: 0; }
.accordion-icon { width: 14px; height: 14px; position: relative; transition: transform 0.3s ease; transform: rotate(0deg); }
.accordion-icon::before, .accordion-icon::after {
    content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 2px;
    background-color: var(--primary-glow); transition: transform 0.3s ease;
}
.accordion-icon::after { transform: rotate(90deg); }
.footer-accordion[open] > summary .accordion-icon { transform: rotate(45deg); }
.accordion-content { overflow: hidden; }
.accordion-content ul { list-style: none; padding: 0 0 20px 0; margin: 0; }
.accordion-content ul li { margin-bottom: 12px; }
.accordion-content ul a { color: var(--text-light); text-decoration: none; transition: color 0.2s ease; }
.accordion-content ul a:hover { color: var(--primary-glow); }
.footer-contact-info { list-style: none; padding: 0 0 20px 0; margin: 0; display: flex; flex-direction: column; gap: 15px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-item span, .footer-contact-item a { color: #fff !important; text-decoration: none; font-size: 0.95rem; font-weight: normal; transition: color 0.2s ease; }
.footer-contact-item a:hover { color: var(--primary-glow) !important; }
.footer-contact-info .contact-icon { flex-shrink: 0; width: 18px; height: 18px; color: var(--primary-glow); margin-top: 2px; }
.newsletter-form { display: flex; margin-top: 10px; }
.newsletter-form input {
    flex-grow: 1; border: 1px solid rgba(255, 255, 255, 0.2); background-color: rgba(0,0,0,0.2);
    padding: 10px; border-radius: 4px 0 0 4px; color: #fff; outline: none; transition: border-color 0.3s ease;
}
.newsletter-form input:focus { border-color: var(--primary-glow); }
.newsletter-form button {
    border: none; background: linear-gradient(135deg, var(--primary-deep-blue), var(--primary-glow));
    color: #fff; padding: 10px 15px; border-radius: 0 4px 4px 0; cursor: pointer;
    font-weight: 600; font-family: 'Inter', sans-serif; transition: filter 0.2s ease;
}
.newsletter-form button:hover { filter: brightness(1.2); }
.footer-bottom-bar {
    max-width: 1200px; margin: 0 auto; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; font-size: 0.9rem;
}
.footer-legal-links a { color: var(--text-muted); text-decoration: none; margin-left: 20px; transition: color 0.2s ease; }
.footer-legal-links a:hover { color: #fff; }
.footer-social img { height: 24px; width: auto; opacity: 0.7; transition: opacity 0.3s ease; }
.footer-social a:hover img { opacity: 1; }

@media (max-width: 992px) {

#use-cases {
    overflow: visible;
}
    body { -webkit-text-size-adjust: 100%; }
    .mobile-only { display: block !important; }
    .desktop-only { display: none !important; }
   main, footer, section:not(#use-cases) {
    overflow-x: hidden !important;
}
    section { padding: 70px 20px; }
    h2, section h2 { font-size: 2.2rem !important; }
    .intro-paragraph { font-size: 1rem !important; }

    header {
        padding: 0 20px !important; display: flex !important;
        justify-content: space-between !important; align-items: center !important; grid-template-columns: none !important;
    }
    .hamburger {
        display: flex !important; background: none; border: none; cursor: pointer;
        z-index: 101; width: 34px; height: 28px; position: relative;
    }
    .hamburger-bar { display: block; width: 100%; height: 3px; border-radius: 50px; position: absolute; transition: all 0.4s ease; }
    header:not(.scrolled) .hamburger-bar { background-color: #fff; }
    header.scrolled .hamburger-bar { background-color: var(--primary-glow); }
    body.dark-section-theme-active header .hamburger-bar, body.dark-section-theme-active header.scrolled .hamburger-bar { background-color: #fff; }
    .hamburger-bar:nth-child(1) { top: 4px; }
    .hamburger-bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .hamburger-bar:nth-child(3) { bottom: 4px; }
    .hamburger.active .hamburger-bar { background-color: #fff; }
    .hamburger.active .hamburger-bar:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
    .hamburger.active .hamburger-bar:nth-child(2) { opacity: 0; }
    .hamburger.active .hamburger-bar:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }
    nav#main-nav { display: none; transform: translateX(100%); }
    nav#main-nav.active {
        display: flex; position: fixed; top: 0; right: 0; width: 85%; max-width: 400px; height: 100vh;
        background-color: rgba(15, 25, 40, 0.98); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
        flex-direction: column; align-items: flex-start; transition: transform 0.4s ease-in-out;
        z-index: 100; padding: 100px 0 50px 0; border-left: 2px solid var(--primary-glow);
        overflow-y: auto; transform: translateX(0);
    }
    nav#main-nav.active ul { display: block; width: 100%; padding:0; margin:0; }
    nav#main-nav.active li { display: block; width: 100%; margin: 0; }
    nav#main-nav.active a {
        font-size: 1.2rem !important; color: var(--text-light) !important; text-align: left !important;
        padding: 18px 30px !important; border-bottom: 1px solid rgba(255, 255, 255, 0.1); display: block; width: 100%;
    }
    nav#main-nav.active a:hover { background-color: rgba(0, 168, 255, 0.1); }
    nav#main-nav.active .dropdown-menu {
        display: none; position: static !important; transform: none !important; visibility: visible !important; opacity: 1 !important;
        background-color: rgba(0,0,0,0.2); box-shadow: none; border: none; padding: 0; margin: 0; width: 100%; max-height: none;
    }
    nav#main-nav.active .nav-item-dropdown.active .dropdown-menu { display: block; }
    nav#main-nav.active .dropdown-menu a { padding-left: 50px !important; }
nav#main-nav.active .nav-item-dropdown > a {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 8px;
}

    .hero-content {
        display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
        padding-top: 80px; grid-template-columns: none;
    }
    .hero-content h1 { font-size: 2.2rem !important; white-space: normal; margin-bottom: 25px; grid-column: auto; }
    .hero-content p { font-size: 1.1rem !important; max-width: 90%; margin-bottom: 40px; }
    .hero-brand-introduction { flex-direction: column; gap: 15px; align-items: center; border: none; padding: 0; margin-bottom: 40px; }
    .hero-product-logo { max-height: 50px; }
    .hero-content p, .hero-content .hero-brand-introduction, .hero-content .hero-cta-futuristic {
        grid-column: auto; justify-self: auto; text-align: center;
    }
    .hero-bg-image { width: 50vh; height: 50vh; top: 0; left: 0; object-position: center; object-fit: cover;}

    .demo-wrapper {
        display: flex; flex-direction: column; gap: 25px; grid-template-areas: none;
        grid-template-columns: none; align-items: center;
    }
    .demo-panel { padding: 20px; }
    .demo-panel h3 { font-size: 1.2rem !important; margin-bottom: 25px; }
    .total-power-value { font-size: 1.8rem; }
    .total-power-label, .bar-label, .battery-label { font-size: 0.75rem; }
    .power-bars-container, .panel-main-content { gap: 15px; }
    .ride-simulator { height: 70px; width: 100%; }
    .cyclist { width: 50px; left: 60px; }
    .road-svg path { stroke-dasharray: 15 10; }
    .demo-controls { width: 100%; gap: 15px; }
    .demo-controls label { font-size: 1rem; margin-bottom: 0; }

    .stats-dashboard-layout { grid-template-columns: 1fr; gap: 25px; }
    .stats-grid { grid-template-columns: 1fr; }

#teardown {
    background: var(--theme-bright-white);
    padding-top: 50px;
    padding-bottom: 50px;
}
.teardown-layout {
    flex-direction: column;
}
.mobile-bike-visualizer {
    display: block; 
    max-width: 400px;
    margin: 0 auto 25px auto;
    padding: 0 20px;
    position: relative;
}
.mobile-bike-visualizer .hotspot-bike-img {
    opacity: 1; 
    filter: none;
}
.mobile-bike-visualizer .hotspot {
    display: flex;
}
.teardown-scroll-content {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth; 
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0 20px 0;
    margin: 0;
}
.teardown-scroll-content::-webkit-scrollbar {
    display: none;
}
.component-showcase {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
    margin: 0;
    padding: 25px 30px; 
    background-color: #f4f4f9;
    border-radius: 0;
    border: none;
    box-sizing: border-box;
}
.component-visual img {
    max-height: 200px; 
}
.component-details {
  display: block !important;
}
#teardown-pagination {
    margin-top: 25px;
}
#teardown .slider-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
}
#teardown .slider-pagination .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    opacity: 0.5;
    transition: opacity 0.3s, background-color 0.3s;
}
#teardown .slider-pagination .dot.active {
    background-color: var(--primary-glow);
    opacity: 1;
}

    #app-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .app-slider-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 40px -20px 0 -20px;
        padding: 0 20px 20px 20px;
        gap: 15px;
    }
    .app-slider-container::-webkit-scrollbar {
        display: none;
    }
    .app-feature-card {
        flex: 0 0 90%; 
        scroll-snap-align: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(0, 170, 255, 0.2);
        border-radius: 16px;
        overflow: hidden;
    }
    .app-card-image {
        width: 100%;
        height: auto;
        display: block;
    }
    .app-card-text {
        padding: 25px;
    }
    .app-card-text h3 {
        font-size: 1.5rem;
        margin: 0 0 10px 0;
    }
    .app-card-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
    }
    #app-section .slider-pagination {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 10px;
    }
    #app-section .slider-pagination .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #fff;
        opacity: 0.4;
        transition: opacity 0.3s, background-color 0.3s;
    }
    #app-section .slider-pagination .dot.active {
        opacity: 1;
        background-color: var(--primary-glow);
    }
    .app-benefits-section {
        margin-top: 40px; 
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }

#use-cases {

    padding-left: 0;
    padding-right: 0;
}
#use-cases .use-case-tabs-container {
    grid-template-columns: 1fr;
    gap: 0;
}
#use-cases .use-case-tabs-nav {
    display: none;
}
#use-cases .use-case-tab-content {
    display: flex;
    overflow-x: auto; 
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;

    padding: 0 20px;
    scroll-padding: 0 20px; 
    margin: 0;
    border: none;
    background: none;
    border-radius: 0;

}
#use-cases .use-case-tab-content::-webkit-scrollbar {
    display: none;
}
#use-cases .use-case-tab-panel {
    display: block;

    flex: 0 0 90%;
    width: 90%;
    scroll-snap-align: start; 
    box-sizing: border-box;

    padding: 0;
    margin: 0;
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
}

#use-cases .use-case-tab-panel:not(:last-child) {
    margin-right: 15px;
}
#use-cases .use-case-tab-panel .use-case-tab-image {
    border-radius: 12px;
}
#use-cases .use-case-tab-panel .use-case-tab-text {
    padding: 20px 5px 0 5px;
}

    .feature-card-container { grid-template-columns: 1fr; }
    .feature-visual { display: none; }
    .feature-content { padding: 30px 25px; }

    .story-timeline::before { left: 10px; }
    .timeline-item, .timeline-item:nth-child(even) {
        width: 100%; left: 0; padding-left: 40px; padding-right: 0; margin-bottom: 30px;
    }
    .timeline-item::after, .timeline-item:nth-child(even)::after { left: 1px; }
    .principles-grid { grid-template-columns: 1fr; }
    .team-line-container {
        overflow-x: scroll; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory;
        padding-left: 20px; padding-right: 20px;
    }
    .team-line { padding: 20px 0; gap: 20px; }
    .team-card-link, .advisor-card-link { flex: 0 0 250px; scroll-snap-align: center; }

    .footer-container { grid-template-columns: 1fr; }
    .footer-bottom-bar { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-legal-links { order: 1; margin-left: 0; }
    .footer-legal-links a { margin-left: 0; }
}

#team-section .team-line-container,
#advisors-section .team-line-container {

  scrollbar-width: thin;
  scrollbar-color: #00A8FF #e0e0e0; 
}

#team-section .team-line-container::-webkit-scrollbar,
#advisors-section .team-line-container::-webkit-scrollbar {
  display: block !important; 
  height: 8px; 
}

#team-section .team-line-container::-webkit-scrollbar-track,
#advisors-section .team-line-container::-webkit-scrollbar-track {
  background-color: #e9ecef; 
  border-radius: 10px;
}

#team-section .team-line-container::-webkit-scrollbar-thumb,
#advisors-section .team-line-container::-webkit-scrollbar-thumb {
  background-color: #00A8FF; 
  border-radius: 10px;
}

@media (max-width: 992px) {
    #teardown {
        background: var(--theme-bright-white);
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .teardown-layout {
        flex-direction: column;
    }
    .mobile-bike-visualizer .hotspot-bike-img {
        opacity: 1; 
        filter: none;
    }
    .teardown-scroll-content {
        display: flex;
        width: 100%;
        box-sizing: border-box;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 10px 0 20px 0;
        margin: 0;
    }
    .teardown-scroll-content::-webkit-scrollbar {
        display: none;
    }
    #teardown .component-showcase {
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: center;
        background-color: #f4f4f9;
        padding: 25px 30px;
        box-sizing: border-box;
        border: none;
        border-radius: 0;
    }
    #teardown-pagination {
        margin-top: 25px;
    }
    .hotspot.active .hotspot-dot {
        background-color: var(--primary-glow);
        transform: scale(1.2);
    }
    .hotspot.active .hotspot-wave {
        border-color: var(--primary-glow);
    }

#our-story-section .story-timeline {
    position: relative;
    padding: 0 0 0 30px;
    margin-top: 40px;
}

#our-story-section .story-timeline::before {
    display: block;
    content: '';
    position: absolute;
    top: 15px;
    left: 10px;
    width: 3px;
    height: calc(100% - 30px);
    background-color: rgba(0, 168, 255, 0.2);
    border-radius: 3px;
}

#our-story-section .timeline-item,
#our-story-section .timeline-item:nth-child(even) {
    width: 100%;
    position: relative;
    left: 0;
    padding: 0;
    margin-bottom: 30px;
}

#our-story-section .timeline-item::after {
    display: block;
    content: '';
    position: absolute;
    top: 22px;
    left: -24px;
    width: 12px;
    height: 12px;
    background-color: var(--theme-bright-white);
    border: 3px solid var(--primary-glow);
    border-radius: 50%;
    z-index: 1;
}

#our-story-section .timeline-content {
    border: 1px solid #e0e0e0;
    border-left: 4px solid var(--primary-glow);
    border-top: none;
    padding: 20px 25px;
    background-color: #fdfdfd;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
}

#team-section .team-line-container::-webkit-scrollbar,

#awards-section .horizontal-scroll-wrapper,
#supporters-section .horizontal-scroll-wrapper {
    padding-bottom: 20px;
}

.recognition-line-container,
.supporters-line-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
}
.recognition-line-container::-webkit-scrollbar,
.supporters-line-container::-webkit-scrollbar {
    display: none; 
}

#awards-section .mobile-only .recognition-grid,
#supporters-section .mobile-only .supporters-grid {
    display: flex;
    gap: 20px;
    padding: 20px;
    width: max-content; 
}

#awards-section .mobile-only .recognition-card,
#supporters-section .mobile-only .supporter-card {
    flex: 0 0 80%; 
    scroll-snap-align: center; 
}

#awards-section .mobile-only .recognition-card {
    padding: 20px 15px;
    height: auto;
}
#awards-section .mobile-only .recognition-logo-container {
    height: 60px; 
    margin-bottom: 15px;
}
#awards-section .mobile-only .recognition-title {
    font-size: 0.9rem;
    line-height: 1.3;
}

#supporters-section .mobile-only .supporter-card {
    padding: 20px;
    height: auto; 
}
#supporters-section .mobile-only .supporter-logo-img {
    max-height: 45px; 
    margin-bottom: 15px;
}
#supporters-section .mobile-only .supporter-name {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
#supporters-section .mobile-only .supporter-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    flex-grow: 0; 
}

@media (max-width: 992px) {

  #use-cases {
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden !important; 
  }

  #use-cases .use-case-tabs-nav {
    display: none;
  }

  #use-cases .use-case-tab-content {
    display: flex; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 

    padding: 0 20px; 
    gap: 15px; 

    border: none;
    background: none;
    border-radius: 0;
    margin: 0;
  }

  #use-cases .use-case-tab-content::-webkit-scrollbar {
    display: none;
  }

  #use-cases .use-case-tab-panel {
    display: block; 
    flex: 0 0 90%; 
    width: 90%;
    scroll-snap-align: start; 
    padding: 0;
    margin: 0;
  }

  #use-cases .use-case-tab-panel .use-case-tab-image {
    border-radius: 12px;
  }
  #use-cases .use-case-tab-panel .use-case-tab-text {
    padding: 20px 5px 0 5px;
  }

  #use-cases .slider-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
  }
  #use-cases .slider-pagination .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.4;
    transition: opacity 0.3s, background-color 0.3s;
  }
  #use-cases .slider-pagination .dot.active {
    opacity: 1;
    background-color: var(--primary-glow);
  }
}

@media (max-width: 992px) {
  #team-section .slider-pagination.mobile-only,
  #advisors-section .slider-pagination.mobile-only {
    display: flex !important; 
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    padding-bottom: 20px; 
  }
}
/* Styling for Social Media Icons in Footer */
.footer-social-links a svg {
    /* Sets the width and height of the SVG icon */
    width: 24px;
    height: 24px;
    /* Ensures the icon fits within its <a> container */
    display: block; 
}

/* Optional: Add spacing between the icon and its container */
.footer-social-links a {
    padding: 8px; /* gives a bit of clickable area around the icon */
    border-radius: 50%;
    transition: background-color 0.3s;
}

/* Optional: Hover effect */
.footer-social-links a:hover {
    background-color: rgba(0, 168, 255, 0.1); /* light blue hover glow */
}
/* --- REVISED CONTACT ACCORDION FIX (Targeted for Alignment) --- */

/* Ensures the icon and text are side-by-side and centered */
.footer-contact-item {
    display: flex; 
    align-items: center; 
    margin-bottom: 12px;
}

/* Forces the SVG icons to a specific, small size and colors them */
.footer-contact-item .contact-icon {
    width: 20px; 
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0; 
    color: var(--primary-glow);
}
/* --- Fix for Main Navigation Horizontal Alignment --- */

#main-nav ul {
    /* Set the list to use Flexbox */
    display: flex; 
    
    /* This command centers all the navigation items vertically (up and down) */
    align-items: center;
    
    /* Ensure the list takes up the full available vertical space in the nav bar */
    height: 100%; 
}

/* We also apply flex to the list items themselves for consistency, though 'align-items' on the parent (ul) usually does the job. */
#main-nav ul li {
    display: flex;
    align-items: center;
    /* Optional: This property prevents the items from wrapping to a new line */
    flex-shrink: 0;
}
/* --- Blog Section Styles --- */

.blog-cards-container {
    /* Creates a responsive grid layout */
    display: grid;
    /* Sets up columns: at least 300px wide, and as many as can fit */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
    padding: 20px 0;
}

.blog-post-card {
    /* Uses the light background theme for the card */
    background-color: var(--light-background); 
    border-radius: 12px;
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E5E7EB; 
}

.blog-post-card:hover {
    /* Subtle lift effect on hover */
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.card-image-placeholder {
    width: 100%;
    height: 200px;
    /* Placeholder styles */
    background-color: #eee; 
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex; /* For placing the tag */
    align-items: flex-start; 
    justify-content: flex-end;
    padding: 15px;
}

.card-tag {
    background-color: var(--primary-glow);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content {
    padding: 20px;
    /* Ensures card text is dark on the white background */
    color: var(--text-dark); 
}

.card-title {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.card-title a {
    color: var(--dark-background);
    text-decoration: none;
    transition: color 0.3s;
}

.card-title a:hover {
    color: var(--primary-deep-blue);
}

.card-snippet {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    margin-top: 15px;
}

/* --- Ensure Nav Alignment Fix is still included --- */
#main-nav ul {
    display: flex; 
    align-items: center;
    height: 100%; 
}

#main-nav ul li {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
/* --- Fix: Ensure Active Nav Link is Vertically Aligned --- */
#main-nav ul li a.active-nav-link {
    /* Set the link itself to use flex properties */
    display: flex; 
    align-items: center;
    
    /* Ensure any padding or margin is balanced if there is a bottom border/underline */
    /* If you have custom padding/margin here, copy it and make sure it's applied to all nav links */
}

/* If the issue persists, this ensures the list item is also clean */
#main-nav ul li {
    display: flex;
    align-items: center;
}
/* --- Mobile Fixes for Blog Post Thumbnails and Content (Updated) --- */
@media (max-width: 600px) {
    
    /* 1. Fix: Main Page Heading (H1) Size */
    .page-header h1 {
        /* Reduce the large heading size for mobile */
        font-size: 2.5rem !important;
    }
    
    /* 2. Fix: Blog Section Heading (H2) Size */
    #blog-content-area h2 {
        /* Reduce the section heading size for mobile */
        font-size: 1.8rem !important; 
        margin-bottom: 25px !important;
    }

    /* 3. Fix: Card Image Scaling and Cropping */
    .blog-post-card .card-image-placeholder {
        height: 150px; 
        background-size: cover; 
        background-position: top center; 
    }
    
    /* 4. Fix: Card Title Text Size on Mobile */
    .blog-post-card .card-title {
        font-size: 1.25rem; 
        margin-bottom: 5px; 
    }
    
    /* 5. Fix: Card Snippet Text Size on Mobile */
    .blog-post-card .card-snippet {
        font-size: 0.9rem; 
        margin-bottom: 15px; 
    }

    /* 6. General mobile layout adjustments */
    .blog-cards-container {
        grid-template-columns: 1fr; 
    }
    
    /* Reduce padding on the blog section itself */
    #blog-content-area .section-content {
        padding: 20px 0;
    }
    
    /* Adjust overall section padding */
    section {
        padding: 50px 20px;
    }
}
/* --- COOKIE BANNER RESET: SIMPLE & RELIABLE CSS --- */

.cookie-banner-new {
    /* Positioning: Fixed to the bottom, reliable on ALL browsers */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    
    /* Initially hidden via CSS, shown by JS */
    display: none; 
    
    z-index: 10000; /* Ensure it is the top-most element */
    
    /* Style */
    background-color: rgba(17, 24, 39, 0.95); /* Semi-transparent dark blue */
    color: var(--text-light);
    padding: 10px 30px;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.cookie-banner-new p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 800px;
}

.accept-btn-new {
    /* Style for the Accept Button */
    background-color: var(--primary-glow);
    color: var(--dark-background);
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0; /* Prevents button from shrinking on small screens */
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .cookie-banner-new {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }
    .cookie-banner-new p {
        width: 100%;
        margin-bottom: 10px;
    }
}