/* ═══════════════════════════════════════════
   base.css — AddNeo Global Styles
   ═══════════════════════════════════════════ */

:root {
    --green-deep: #0D2818;
    --green-mid: #163A26;
    --green-mid2: #1F4D33;
    --green-light: rgba(0,176,80,0.07);
    --green-glow: rgba(0,176,80,0.15);
    --accent: #00B050;
    --accent-hover: #009944;
    --accent-glow: rgba(0,176,80,0.25);
    --accent-subtle: rgba(0,176,80,0.06);
    --bg: #FFFFFF;
    --bg-warm: #FBFCFC;
    --card-bg: #FFFFFF;
    --glass-bg: rgba(255,255,255,0.75);
    --glass-border: rgba(255,255,255,0.3);
    --text-primary: #0A0A0A;
    --text-secondary: #5F6368;
    --text-tertiary: #9AA0A6;
    --text-on-dark: rgba(255,255,255,0.6);
    --border: #E8EAED;
    --border-light: #F2F4F6;
    --border-color: #E0E4E8;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 6px 24px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-lg: 0 14px 48px rgba(0,0,0,0.07), 0 4px 16px rgba(0,0,0,0.04);
    --shadow-xl: 0 24px 72px rgba(0,0,0,0.09), 0 8px 24px rgba(0,0,0,0.05);
    --shadow-glow-accent: 0 8px 32px rgba(0,176,80,0.2);
    --shadow-glow-deep: 0 8px 32px rgba(13,40,24,0.25);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px;
    --header-h: 72px;
    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-padding-top: var(--header-h); scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; font-size: 16px; }
button { cursor: pointer; border: none; background: none; }
.btn, button, .nav-item, [role="button"] { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; box-sizing: border-box; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--text-primary); }

.section { padding: 100px 0; width: 100%; overflow: hidden; }
.section-label {
    font-family: var(--font-heading);
    font-size: var(--fs-tiny);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.section-label::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--accent);
    border-radius: 2px;
}
.section-title {
    font-size: var(--fs-section, clamp(2rem, 4vw, 3rem));
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: var(--fs-section-sub, 1.0625rem);
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
    font-weight: 400;
}

.icon-svg { width: 24px; height: 24px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.fade-in { opacity: 0; transform: translateY(32px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-scale { opacity: 0; transform: scale(0.93); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-in-scale.visible { opacity: 1; transform: scale(1); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }
@keyframes float-delayed { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes breathe { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.05); opacity: 0.8; } }
@keyframes slide-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #0D2818 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.shimmer-text {
    background: linear-gradient(135deg, var(--accent) 0%, #E8F5E9 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmer 4s ease-in-out infinite;
}

.ethereal-bg {
    background: linear-gradient(165deg, #f0faf4 0%, #e3f5eb 25%, #d4efdf 50%, #e8f5ee 75%, #f5fcf7 100%);
    position: relative;
}
.ethereal-bg::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,176,80,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.ethereal-bg::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,176,80,0.03) 0%, transparent 70%);
    pointer-events: none;
}
.ethereal-dark {
    background: linear-gradient(165deg, #0D2818 0%, #1A3A2A 40%, #0f2e1e 70%, #0D2818 100%);
    position: relative;
}
.ethereal-dark::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,176,80,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.avatar-stack { display: flex; align-items: center; }
.avatar-stack-item {
    width: 40px; height: 40px; border-radius: 50%;
    border: 2.5px solid #fff;
    margin-left: -12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.625rem; font-weight: 700; color: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.avatar-stack-item:first-child { margin-left: 0; }
.avatar-stack-item:hover { transform: translateY(-4px); z-index: 2; }
.avatar-stack-count {
    width: 40px; height: 40px; border-radius: 50%;
    border: 2.5px solid #fff;
    margin-left: -12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.625rem; font-weight: 700;
    background: var(--green-deep); color: #fff;
    box-shadow: var(--shadow-sm);
}

.floating-stat {
    position: absolute;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 18px 22px;
    z-index: 3;
    animation: float 5s ease-in-out infinite;
}
.floating-stat:nth-child(2) { animation-delay: 2s; }
.floating-stat:nth-child(3) { animation-delay: 3.5s; }

.pillar-icon {
    width: 50px; height: 50px; border-radius: 18px;
    background: var(--green-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition);
}
.pillar-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.bento-card:hover .pillar-icon { background: rgba(0,176,80,0.12); transform: scale(1.05); }

.bento-grid { display: grid; gap: 24px; }
.bento-card {
    background: linear-gradient(165deg, #ffffff 0%, #fafcfa 50%, #ffffff 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    will-change: transform;
}
.bento-card:hover {
    box-shadow: 0 8px 32px rgba(0,176,80,0.08), 0 20px 60px rgba(0,0,0,0.06);
    transform: translateY(-6px) scale(1.005);
}
.bento-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.bento-card:hover .bento-card-img { transform: scale(1.05); }
.bento-card-content { padding: 36px; }
.bento-card-content-sm { padding: 28px; }
.bento-green { background: linear-gradient(145deg, #0D2818, #1A3A2A); color: #fff; }
.bento-green::before { display: none; }
.bento-green:hover { box-shadow: 0 8px 32px rgba(13,40,24,0.15), 0 20px 60px rgba(0,0,0,0.12); }
.bento-green .section-title { color: #fff; }
.bento-green .section-subtitle { color: rgba(255,255,255,0.65); }
.bento-green .section-label { color: var(--accent); }

.card-floating {
    background: linear-gradient(165deg, #ffffff 0%, #fafcfa 50%, #ffffff 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 6px 20px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.02);
    padding: 32px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    position: relative;
}
.card-floating:hover {
    box-shadow: 0 8px 32px rgba(0,176,80,0.08), 0 20px 60px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,176,80,0.06);
    transform: translateY(-6px) scale(1.008);
}

.stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-subtle);
    border: 1px solid rgba(0,176,80,0.12);
    padding: 6px 16px 6px 8px;
    border-radius: 999px;
    font-size: var(--fs-micro);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    font-family: var(--font-heading);
}
.stat-chip .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s infinite;
}

.toggle-btn {
    padding: 10px 28px; border-radius: 999px;
    border: 1.5px solid var(--border-color);
    background: transparent; color: var(--text-secondary);
    font-size: var(--fs-body-sm); font-weight: 600;
    cursor: pointer; transition: border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    font-family: var(--font-body);
}
.toggle-btn.active { background: var(--green-deep); color: #fff; border-color: var(--green-deep); box-shadow: var(--shadow-sm); }
.toggle-btn:hover:not(.active) { border-color: var(--accent); color: var(--accent); background: var(--accent-subtle); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn-primary { background: var(--green-deep); color: #fff; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(13,40,24,0.3); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 10px 30px var(--accent-glow); }
.btn-outline { border: 2px solid var(--border); color: var(--text-primary); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); box-shadow: 0 4px 16px rgba(0,176,80,0.08); }
.btn-white { background: #fff; color: var(--green-deep); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,255,255,0.2); }
.btn-subtle { background: rgba(255,255,255,0.06); color: #fff; border: 1.5px solid rgba(255,255,255,0.1); backdrop-filter: blur(4px); }
.btn-subtle:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.btn-sm { padding: 10px 22px; font-size: var(--fs-body-sm); }

.img-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(13,40,24,0.5) 100%);
    pointer-events: none;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars svg { width: 16px; height: 16px; color: #F4B400; fill: #F4B400; }

.station-list { display: flex; flex-direction: column; }
.station-item {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 22px; border-bottom: 1px solid var(--border-light);
    transition: background 0.35s cubic-bezier(0.22, 1, 0.36, 1), padding-left 0.35s cubic-bezier(0.22, 1, 0.36, 1); cursor: pointer;
}
.station-item:last-child { border-bottom: none; }
.station-item:hover { background: var(--accent-subtle); padding-left: 28px; }
.connector-badge {
    font-size: var(--fs-micro); font-weight: 600; letter-spacing: 0.06em;
    background: var(--green-light); color: var(--accent);
    padding: 3px 10px; border-radius: 100px; display: inline-block;
    font-family: var(--font-heading);
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.status-dot.available { background: var(--accent); box-shadow: 0 0 8px rgba(0,176,80,0.4); }
.status-dot.busy { background: #F4B400; box-shadow: 0 0 8px rgba(244,180,0,0.4); }
.status-dot.offline { background: var(--text-tertiary); }

.filter-pill {
    font-size: var(--fs-body-sm); font-weight: 500;
    padding: 8px 20px; border-radius: 999px;
    border: 1.5px solid var(--border-color);
    background: transparent; color: var(--text-secondary);
    cursor: pointer; transition: border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    font-family: var(--font-body);
}
.filter-pill:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-subtle); }
.filter-pill.active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 4px 12px rgba(0,176,80,0.25); }

.session-list { display: flex; flex-direction: column; gap: 8px; }
.session-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; border-radius: var(--radius-sm);
    background: var(--border-light); transition: background 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.session-item:hover { background: var(--accent-subtle); transform: translateX(4px); }
.charge-bar-compact { display: flex; align-items: center; gap: 12px; }
.charge-bar-track { width: 100px; height: 6px; background: var(--border-color); border-radius: 100px; overflow: hidden; }
.charge-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #00E060); border-radius: 100px; }

.faq-list { display: flex; flex-direction: column; border-radius: var(--radius-md); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border-light); background: #fff; }
.faq-item:last-child { border-bottom: none; }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 22px 28px; background: transparent; border: none;
    font-family: var(--font-body); font-size: var(--fs-body); font-weight: 600;
    color: var(--text-primary); cursor: pointer; text-align: left; gap: 16px;
    transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-question:hover { color: var(--accent); background: var(--accent-subtle); }
.faq-arrow { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); flex-shrink: 0; color: var(--text-tertiary); }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
    padding: 0 28px 24px; font-size: var(--fs-body-lg); color: var(--text-secondary);
    line-height: 1.8; display: none;
}
.faq-item.open .faq-answer { display: block; animation: slide-up 0.3s ease; }

input[type="text"]:not(.dsh-search-input), input[type="email"], input[type="password"], input[type="tel"], input[type="date"], input[type="file"], input[type="number"], input[type="url"], input[type="search"]:not(.dsh-search-input), select, textarea {
    width: 100%; padding: 14px 18px; border-radius: 14px;
    border: 1.5px solid var(--border-color); background: var(--card-bg);
    font-family: var(--font-body); font-size: var(--fs-body-sm); color: var(--text-primary);
    outline: none; transition: border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1); box-sizing: border-box;
}
input[type="checkbox"], input[type="radio"] { accent-color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; }
input:not(.dsh-search-input):focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-glow); }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
textarea { resize: vertical; min-height: 120px; }

.kpi-card {
    padding: 24px; border-radius: var(--radius-md);
    background: var(--bg-warm); text-align: center;
    transition: background 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.kpi-card:hover { background: var(--accent-subtle); transform: translateY(-2px); }
.kpi-number {
    font-family: var(--font-heading); font-size: var(--fs-stat); font-weight: 700;
    color: var(--accent); line-height: 1.2;
}
.kpi-label { font-size: var(--fs-body-sm); color: var(--text-secondary); margin-top: 4px; }

.divider { height: 1px; background: var(--border); margin: 0; border: none; }

.section-number {
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--accent);
    opacity: 0.5;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .section { padding: 80px 0; }
    .container { padding: 0 20px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .bento-grid { grid-template-columns: 1fr 1fr !important; }
    .bento-grid > [style*="grid-column"], .bento-grid > [style*="grid-row"] { grid-column: auto !important; grid-row: auto !important; }
}
@media (max-width: 768px) {
    :root { --header-h: 56px; }
    .section { padding: 60px 0; }
    .container { padding: 0 16px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .grid-2-gap, .bento-grid { grid-template-columns: 1fr !important; grid-template-rows: auto !important; }
    .bento-grid > [style*="grid-column"], .bento-grid > [style*="grid-row"] { grid-column: auto !important; grid-row: auto !important; }
    [style*="display: grid"]:not(.bento-grid):not(.grid-2):not(.grid-3):not(.grid-4) { grid-template-columns: 1fr !important; }
    [style*="padding:"][style*="px"] { padding: 24px 20px !important; }
    [style*="min-height:"][style*="400"] { min-height: 250px !important; }
    [style*="min-height:"][style*="350"] { min-height: 220px !important; }
    [style*="min-height:"][style*="320"] { min-height: 200px !important; }
    [style*="border-right"] { border-right: none !important; }
    .bento-card-content { padding: 28px; }
    .bento-card-content-sm { padding: 24px; }
    .card-floating { transform: none !important; }
    [style*="translateY"] { transform: none !important; }
    [style*="padding:140px"], [style*="padding: 140px"] { padding-top: 80px !important; padding-bottom: 60px !important; }
    section[style*="padding:140px"] { padding-top: 80px !important; padding-bottom: 60px !important; }
    [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
    [style*="grid-template-columns: repeat(4,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
    [style*="border-right:"][style*="border-right:1px"] { border-right: none !important; }
    [style*="grid-template-columns:1.3fr 1fr"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns: 1.3fr 1fr"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns:1fr 1.4fr"], [style*="grid-template-columns: 1fr 1.4fr"] { grid-template-columns: 1fr !important; }
    [style*="gap:56px"][style*="display:flex"] { flex-wrap: wrap !important; justify-content: center !important; }
    [style*="gap: 56px"][style*="display: flex"] { flex-wrap: wrap !important; justify-content: center !important; }
    img[style*="height:400px"] { height: auto !important; min-height: 220px !important; }
    [style*="min-height:400px"], [style*="min-height: 400px"] { min-height: 250px !important; }
    [style*="min-height:320px"], [style*="min-height: 320px"] { min-height: 200px !important; }
    .charge-bar-track { width: 72px !important; }
    [style*="grid-template-columns:1.6fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns: 1.6fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
    [style*="margin-top:-28px"] { margin-top: 0 !important; }
    [style*="margin-top:-32px"] { margin-top: 0 !important; }
    [style*="margin-top:-80px"] { margin-top: -40px !important; }
    [style*="margin-top:-12px"] { margin-top: 0 !important; }
    [style*="grid-template-columns:1fr 1fr"][style*="min-width:180px"] { grid-template-columns: 1fr !important; min-width: 0 !important; }
    [style*="grid-template-columns: 1fr 1fr"][style*="min-width: 180px"] { grid-template-columns: 1fr !important; min-width: 0 !important; }
    [style*="padding:180px"], [style*="padding: 180px"] { padding-top: 100px !important; padding-bottom: 60px !important; }
    [style*="padding:60px 48px"], [style*="padding: 60px 48px"] { padding: 32px 20px !important; }
    [style*="padding:32px 40px"], [style*="padding: 32px 40px"] { padding: 24px 20px !important; }
    [style*="padding:40px 36px"], [style*="padding: 40px 36px"] { padding: 28px 20px !important; }
    [style*="padding:36px 32px"], [style*="padding: 36px 32px"] { padding: 24px 20px !important; }
    [style*="padding:40px 28px"], [style*="padding: 40px 28px"] { padding: 24px 20px !important; }
    [style*="padding:36px 28px"], [style*="padding: 36px 28px"] { padding: 24px 20px !important; }
    [style*="padding:32px 28px"], [style*="padding: 32px 28px"] { padding: 24px 20px !important; }
    [style*="padding:28px 24px"], [style*="padding: 28px 24px"] { padding: 20px 18px !important; }
    [style*="padding:28px 20px"], [style*="padding: 28px 20px"] { padding: 20px 16px !important; }
            [style*="padding:56px 64px"], [style*="padding: 56px 64px"] { padding: 32px 20px !important; }
            [style*="padding:28px"], [style*="padding: 28px"] { padding: 20px !important; }
    [style*="padding:64px 48px"], [style*="padding: 64px 48px"] { padding: 40px 24px !important; }
    [style*="margin-bottom:56px"], [style*="margin-bottom: 56px"] { margin-bottom: 32px !important; }
    [style*="margin-bottom:60px"], [style*="margin-bottom: 60px"] { margin-bottom: 32px !important; }
    [style*="margin-bottom:100px"], [style*="margin-bottom: 100px"] { margin-bottom: 48px !important; }
    [style*="margin-bottom:80px"], [style*="margin-bottom: 80px"] { margin-bottom: 40px !important; }
    [style*="padding-bottom:80px"], [style*="padding-bottom: 80px"] { padding-bottom: 40px !important; }
    [style*="gap:48px"], [style*="gap: 48px"] { gap: 24px !important; }
    [style*="gap:40px"], [style*="gap: 40px"] { gap: 20px !important; }
    [style*="gap:36px"], [style*="gap: 36px"] { gap: 20px !important; }
            [style*="gap:56px"], [style*="gap: 56px"] { gap: 28px !important; }
            [style*="gap:32px"], [style*="gap: 32px"] { gap: 20px !important; }
            img[style*="height:200px"] { height: auto !important; min-height: 140px !important; }
            [style*="height:200px"][style*="overflow:hidden"] { height: auto !important; }
            [style*="height: 200px"][style*="overflow: hidden"] { height: auto !important; }
}
@media (max-width: 480px) {
    :root { --header-h: 48px; }
    .container { padding: 0 12px; }
    .section { padding: 40px 0; }
    .grid-4 { grid-template-columns: 1fr; }
    .bento-card-content { padding: 20px; }
    .card-floating { padding: 20px; }
    [style*="padding:"][style*="px"] { padding: 16px 14px !important; }
    [style*="padding:64px 48px"] { padding: 40px 24px !important; }
    [style*="padding:56px 48px"] { padding: 40px 24px !important; }
    [style*="padding:72px 56px"] { padding: 40px 24px !important; }
    [style*="padding:80px 56px"] { padding: 40px 24px !important; }
    [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: 1fr !important; }
    [style*="grid-template-columns: repeat(4,1fr)"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 360px) {
    :root { --header-h: 42px; }
    .container { padding: 0 8px; }
    .section { padding: 24px 0; }
    .bento-card-content { padding: 16px; }
    .card-floating { padding: 16px; }
    [style*="padding:"][style*="px"] { padding: 12px 10px !important; }
    [style*="padding:64px 48px"] { padding: 30px 16px !important; }
    [style*="padding:56px 48px"] { padding: 30px 16px !important; }
    [style*="padding:72px 56px"] { padding: 30px 16px !important; }
    [style*="padding:80px 56px"] { padding: 30px 16px !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.mouse-gradient {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
}
