/* ========================================
   EA Collection — Clean Dark Design
   ======================================== */

:root {
    --bg-body: #0b0e14;
    --bg-card: #12161e;
    --bg-card-hover: #181d27;
    --bg-glass: rgba(18, 22, 30, 0.8);
    --text-main: #e8eaed;
    --text-dim: #8b95a5;
    --text-muted: #5a6475;
    --text-secondary: #8b95a5;
    --accent: #38bdf8;
    --accent-2: #818cf8;
    --accent-green: #22c55e;
    --accent-glow: rgba(56, 189, 248, 0.08);
    --border: rgba(255, 255, 255, 0.06);
    --border-glass: rgba(255, 255, 255, 0.08);
    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --container-width: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(11, 14, 20, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding-top: 64px;
    /* navbar height */
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 80px 32px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 540px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 460px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    background: #fff;
    color: #0b0e14;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-cta-vps {
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    color: #fff;
}

.hero-cta-vps:hover {
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.25);
}

/* Chart Card */
.hero-chart {
    flex-shrink: 0;
}

.chart-card {
    width: 380px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.candlestick-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Section Shared
   ======================================== */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* ========================================
   EA Section
   ======================================== */
.ea-section {
    padding: 60px 0 40px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

/* Search */
.search-container {
    position: relative;
}

.search-container::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6475' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
    background-size: contain;
    z-index: 1;
    pointer-events: none;
}

.search-container input {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 11px 16px 11px 40px;
    border-radius: 10px;
    color: #fff;
    width: 280px;
    outline: none;
    font-size: 0.85rem;
    font-family: var(--font-sans);
    transition: border-color 0.2s;
}

.search-container input:focus {
    border-color: rgba(255, 255, 255, 0.15);
}

.search-container input::placeholder {
    color: var(--text-muted);
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 6px 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    color: var(--text-dim);
    border-color: rgba(255, 255, 255, 0.12);
}

.filter-btn.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ========================================
   Table
   ======================================== */
.table-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.ea-table-head {
    display: grid;
    grid-template-columns: 2.2fr 1fr 0.7fr 0.7fr 0.7fr 0.8fr 0.8fr;
    padding: 14px 24px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}

.ea-grid {
    display: flex;
    flex-direction: column;
}

.ea-row {
    display: grid;
    grid-template-columns: 2.2fr 1fr 0.7fr 0.7fr 0.7fr 0.8fr 0.8fr;
    padding: 16px 24px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.ea-row:last-child {
    border-bottom: none;
}

.ea-row:hover {
    background: var(--bg-card-hover);
}

.col-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: #fff;
}

.ea-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 5px;
    font-weight: 500;
    display: inline-block;
}

/* ========================================
   Icon Buttons
   ======================================== */
.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    transition: all 0.2s;
    text-decoration: none;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
}

/* Colored icon variants */
.icon-btn.blue {
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.2);
}

.icon-btn.blue:hover {
    background: rgba(96, 165, 250, 0.08);
    color: #93bbfc;
}

.icon-btn.yellow {
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.2);
}

.icon-btn.yellow:hover {
    background: rgba(251, 191, 36, 0.08);
    color: #fcd34d;
}

.icon-btn.pink {
    color: #f472b6;
    border-color: rgba(244, 114, 182, 0.2);
}

.icon-btn.pink:hover {
    background: rgba(244, 114, 182, 0.08);
    color: #f9a8d4;
}

.icon-btn.green {
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.2);
}

.icon-btn.green:hover {
    background: rgba(52, 211, 153, 0.08);
    color: #6ee7b7;
}

/* ========================================
   Icon Buttons with Labels
   ======================================== */
.icon-btn-labeled {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    transition: all 0.2s;
    text-decoration: none;
    min-width: 52px;
}

.icon-btn-labeled span {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

.icon-btn-labeled:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
}

/* Colored labeled icon variants */
.icon-btn-labeled.blue {
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.2);
}

.icon-btn-labeled.blue:hover {
    background: rgba(96, 165, 250, 0.08);
    color: #93bbfc;
}

.icon-btn-labeled.yellow {
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.2);
}

.icon-btn-labeled.yellow:hover {
    background: rgba(251, 191, 36, 0.08);
    color: #fcd34d;
}

.icon-btn-labeled.pink {
    color: #f472b6;
    border-color: rgba(244, 114, 182, 0.2);
}

.icon-btn-labeled.pink:hover {
    background: rgba(244, 114, 182, 0.08);
    color: #f9a8d4;
}

.icon-btn-labeled.green {
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.2);
}

.icon-btn-labeled.green:hover {
    background: rgba(52, 211, 153, 0.08);
    color: #6ee7b7;
}

.icon-btn-labeled.orange {
    color: #fb923c;
    border-color: rgba(251, 146, 60, 0.2);
}

.icon-btn-labeled.orange:hover {
    background: rgba(251, 146, 60, 0.08);
    color: #fdba74;
}

/* Price Button */
.btn-price-small {
    padding: 6px 14px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 7px;
    color: #fbbf24;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-price-small:hover {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.35);
}

/* Download Button */
.btn-dl-small {
    padding: 6px 14px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 7px;
    color: #34d399;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-dl-small:hover {
    background: rgba(52, 211, 153, 0.15);
    border-color: rgba(52, 211, 153, 0.35);
}

/* ========================================
   Info Section
   ======================================== */
.info-section {
    padding: 50px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    transition: border-color 0.2s;
}

.info-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.info-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.info-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.84rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ========================================
   Kontak Section
   ======================================== */
.kontak-section {
    padding: 50px 0;
    text-align: center;
}

.kontak-section h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.kontak-desc {
    color: var(--text-dim);
    font-size: 0.88rem;
    margin-bottom: 28px;
}

.kontak-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.kontak-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: var(--font-sans);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.kontak-btn.wa {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #25d366;
}

.kontak-btn.wa:hover {
    background: rgba(37, 211, 102, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.15);
}

.kontak-btn.tg {
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.25);
    color: #0088cc;
}

.kontak-btn.tg:hover {
    background: rgba(0, 136, 204, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.15);
}

/* ========================================
   Float Container (Robot + WhatsApp)
   ======================================== */
.float-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* ========================================
   Robot Mascot
   ======================================== */
.robot-mascot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 1;
    margin-bottom: -20px;
    animation: robotEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

.robot-img-wrapper {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
    cursor: pointer;
    transition: transform 0.3s;
}

.robot-img-wrapper:hover {
    animation-play-state: paused;
    transform: scale(1.15);
}

.robot-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Speech Bubble */
.speech-bubble {
    position: relative;
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: #fff;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-sans, 'Inter', sans-serif);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: bubbleEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both;
}

.speech-bubble span {
    display: inline-block;
}

.speech-arrow {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #128C7E;
}

/* ========================================
   Entrance Animation — Robot
   ======================================== */
@keyframes robotEntrance {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.5);
    }

    60% {
        opacity: 1;
        transform: translateY(-8px) scale(1.05);
    }

    80% {
        transform: translateY(3px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Waving / bobbing animation */
@keyframes robotWave {

    0%,
    100% {
        transform: rotate(0deg) translateY(0);
    }

    15% {
        transform: rotate(8deg) translateY(-3px);
    }

    30% {
        transform: rotate(-6deg) translateY(0);
    }

    45% {
        transform: rotate(6deg) translateY(-2px);
    }

    60% {
        transform: rotate(-4deg) translateY(0);
    }

    75% {
        transform: rotate(3deg) translateY(-1px);
    }
}

/* Speech bubble entrance */
@keyframes bubbleEntrance {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Speech bubble floating */
@keyframes bubbleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* ========================================
   WhatsApp Float (inside container)
   ======================================== */
.wa-float {
    position: relative;
    z-index: 2;
    background: #25d366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.25s;
    text-decoration: none;
    animation: waEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.wa-float:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

@keyframes waEntrance {
    0% {
        opacity: 0;
        transform: scale(0) translateY(30px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.wa-svg {
    width: 28px;
    height: 28px;
}

/* ========================================
   Footer
   ======================================== */
.main-footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

.main-footer p {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ========================================
   Empty State
   ======================================== */
.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.empty-state .empty-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

/* ========================================
   Mobile Icon Row (script.js mobile layout)
   ======================================== */
.mobile-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 2px 0;
}

/* ========================================
   Responsive — Tablet
   ======================================== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container {
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .chart-card {
        width: 300px;
        padding: 20px;
    }

    .ea-table-head,
    .ea-row {
        grid-template-columns: 2fr 0.9fr 0.7fr 0.7fr 0.7fr 0.8fr 0.8fr;
    }
}

/* ========================================
   Responsive — Mobile
   ======================================== */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
        height: 56px;
    }

    .nav-brand {
        font-size: 0.9rem;
        gap: 6px;
    }

    .nav-logo {
        width: 36px;
        height: 36px;
        border-radius: 36px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 0.75rem;
    }

    .hero {
        padding-top: 56px;
    }

    .hero-container {
        flex-direction: column;
        padding: 36px 16px 32px;
        gap: 28px;
        text-align: left;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 0.88rem;
        max-width: 100%;
        line-height: 1.6;
    }

    .hero-stats {
        font-size: 0.75rem;
        gap: 8px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
        font-size: 0.85rem;
    }

    .hero-chart {
        width: 100%;
    }

    .chart-card {
        width: 100%;
        padding: 16px;
    }

    .section-container {
        padding: 0 16px;
    }

    .ea-section {
        padding: 40px 0 32px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .section-header h2 {
        font-size: 1.2rem;
    }

    .search-container {
        width: 100%;
    }

    .search-container input {
        width: 100%;
        padding: 10px 14px 10px 38px;
        font-size: 0.82rem;
    }

    .filter-bar {
        gap: 6px;
        margin-bottom: 14px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.72rem;
    }

    /* Hide table header on mobile */
    .ea-table-head {
        display: none !important;
    }

    .table-container {
        background: transparent;
        border: none;
        overflow: visible;
    }

    .ea-grid {
        gap: 12px;
    }

    .ea-row {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 20px 16px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 14px;
        min-width: 0 !important;
        width: 100%;
        grid-template-columns: none !important;
    }

    .ea-row:hover {
        background: var(--bg-card-hover);
    }

    .col-name {
        font-size: 1rem;
        text-align: center;
        width: 100%;
    }

    .col-pair {
        text-align: center;
        width: 100%;
    }

    .col-harga,
    .col-dl {
        width: 100%;
    }

    .mobile-icons {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .icon-btn-labeled {
        min-width: 60px;
        padding: 8px 10px;
    }

    .icon-btn-labeled span {
        font-size: 0.55rem;
    }

    .btn-dl-small,
    .btn-price-small {
        width: 100%;
        display: block;
        padding: 12px;
        font-size: 0.82rem;
        border-radius: 10px;
        text-align: center;
    }

    /* Info Grid */
    .info-section {
        padding: 30px 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .info-card {
        padding: 22px 18px;
    }

    .info-card h3 {
        font-size: 0.88rem;
    }

    .info-card p {
        font-size: 0.8rem;
    }

    /* Kontak */
    .kontak-section {
        padding: 30px 0;
    }

    .kontak-section h2 {
        font-size: 1.2rem;
    }

    .kontak-desc {
        font-size: 0.82rem;
        padding: 0 8px;
    }

    .kontak-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 16px;
    }

    .kontak-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 24px;
        font-size: 0.85rem;
    }

    /* Float container */
    .float-container {
        bottom: 16px;
        right: 12px;
    }

    .robot-mascot {
        margin-bottom: -14px;
    }

    .robot-img-wrapper {
        width: 55px;
        height: 55px;
    }

    .speech-bubble {
        font-size: 0.6rem;
        padding: 5px 9px;
        border-radius: 8px;
    }

    .wa-float {
        width: 48px;
        height: 48px;
    }

    .wa-svg {
        width: 24px;
        height: 24px;
    }

    /* Footer */
    .main-footer {
        padding: 24px 0;
    }

    .main-footer p {
        font-size: 0.72rem;
        padding: 0 16px;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.55rem;
    }

    .nav-container {
        height: 50px;
    }

    .nav-brand {
        font-size: 0.8rem;
    }

    .nav-logo {
        width: 30px;
        height: 30px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 0.7rem;
    }

    .hero {
        padding-top: 50px;
    }

    .hero-container {
        padding: 28px 14px 24px;
    }

    .hero-cta {
        padding: 12px 16px;
        font-size: 0.82rem;
    }

    .ea-row {
        padding: 18px 14px;
    }

    .robot-img-wrapper {
        width: 45px;
        height: 45px;
    }

    .wa-float {
        width: 44px;
        height: 44px;
    }
}

/* ========================================
   Scrollbar
   ======================================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}