﻿:root {
    --bg: #050505;
    --bg2: #090909;
    --surface: #101010;
    --surface2: #161616;
    --surface3: #1c1c1c;
    --border: rgba(255,255,255,.07);
    --text: #f6f1e8;
    --muted: #b7ab95;
    --muted2: #7f7668;
    --blue: #d4af37;
    --gold: #f0c14b;
    --green: #6ed36e;
    --red: #ef4444;
    --shadow: 0 24px 80px rgba(0,0,0,.40);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    min-height: 100%;
    background:
        radial-gradient(circle at 20% 5%, rgba(212,175,55,.16), transparent 34%),
        radial-gradient(circle at 80% 0%, rgba(245,185,66,.12), transparent 30%),
        linear-gradient(180deg, var(--bg), #050812);
    color: var(--text);
    font-family: Inter, Segoe UI, Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.ea-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.ea-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(7,11,20,.76);
    border-bottom: 1px solid var(--border);
}

.ea-nav-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ea-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.ea-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(212,175,55,.22), rgba(245,185,66,.22));
    border: 1px solid var(--border);
    color: var(--gold);
}

.ea-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
}

.ea-nav-links a:hover {
    color: var(--text);
}

.ea-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 18px;
    background: rgba(255,255,255,.04);
    color: var(--text);
    font-weight: 700;
    transition: .2s;
    cursor: pointer;
}

.ea-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255,255,255,.16);
}

.ea-btn-primary {
    background: linear-gradient(135deg, var(--blue), #8b6b18);
    color: white;
    border: none;
    box-shadow: 0 14px 40px rgba(212,175,55,.25);
}

.ea-btn-gold {
    background: linear-gradient(135deg, #f0c14b, #b8860b);
    color: #16120a;
    border: none;
}

.ea-hero {
    padding: 82px 0 56px;
}

.ea-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}

.ea-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(212,175,55,.08);
    border: 1px solid rgba(212,175,55,.22);
    color: #f4d06f;
    font-size: 13px;
    font-weight: 700;
}

.ea-hero h1 {
    font-size: clamp(44px, 6vw, 78px);
    line-height: .95;
    letter-spacing: -.06em;
    margin: 24px 0 20px;
}

.ea-gradient-text {
    background: linear-gradient(135deg, #ffffff, #a8dfff 45%, var(--gold));
    -webkit-background-clip: text;
    color: transparent;
}

.ea-hero p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    max-width: 640px;
}

.ea-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.ea-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.ea-stat {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.035);
    border: 1px solid var(--border);
}

.ea-stat strong {
    display: block;
    font-size: 28px;
    color: var(--blue);
}

.ea-stat span {
    color: var(--muted);
    font-size: 13px;
}

.ea-visual {
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
        radial-gradient(circle at 30% 0%, rgba(212,175,55,.22), transparent 38%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 22px;
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.ea-terminal {
    border-radius: 22px;
    background: rgba(5,8,18,.84);
    border: 1px solid var(--border);
    padding: 18px;
    height: 100%;
}

.ea-terminal-head {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 18px;
}

.ea-chart {
    height: 180px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(212,175,55,.12), transparent),
        repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 46px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 44px);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.ea-chart::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green), var(--gold));
    box-shadow: 0 0 30px rgba(212,175,55,.5);
    transform: skewY(-8deg);
}

.ea-trades {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.ea-trade {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 13px;
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
}

.ea-trade strong {
    color: var(--text);
}

.ea-profit {
    color: var(--green);
    font-weight: 800;
}

.ea-section {
    padding: 54px 0;
}

.ea-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 24px;
}

.ea-section h2 {
    font-size: 38px;
    letter-spacing: -.04em;
    margin: 0;
}

.ea-section p {
    color: var(--muted);
}

.ea-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ea-card {
    border-radius: 24px;
    background: rgba(13,19,32,.82);
    border: 1px solid var(--border);
    padding: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
}

.ea-card-highlight {
    border-color: rgba(245,185,66,.35);
    background:
        radial-gradient(circle at 100% 0%, rgba(245,185,66,.15), transparent 36%),
        rgba(13,19,32,.82);
}

.ea-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: rgba(212,175,55,.12);
    color: var(--blue);
}

.ea-card h3 {
    margin: 0 0 10px;
}

.ea-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.ea-app {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.ea-sidebar {
    border-right: 1px solid var(--border);
    background: rgba(5,8,18,.74);
    padding: 24px 18px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.ea-sidebar-user {
    margin: 26px 0;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.035);
    border: 1px solid var(--border);
}

.ea-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(212,175,55,.15);
    color: var(--blue);
    font-weight: 900;
}

.ea-menu {
    display: grid;
    gap: 8px;
}

.ea-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    padding: 13px 14px;
    border-radius: 14px;
}

.ea-menu a.active,
.ea-menu a:hover {
    color: var(--text);
    background: rgba(212,175,55,.10);
}

.ea-main {
    padding: 34px;
}

.ea-dashboard-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
}

.ea-dashboard-head h1 {
    margin: 0;
    font-size: 34px;
    letter-spacing: -.04em;
}

.ea-dashboard-head p {
    margin: 8px 0 0;
    color: var(--muted);
}

.ea-cards-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ea-metric {
    padding: 20px;
    border-radius: 22px;
    background: rgba(13,19,32,.82);
    border: 1px solid var(--border);
}

.ea-metric span {
    color: var(--muted);
    font-size: 13px;
}

.ea-metric strong {
    display: block;
    margin-top: 12px;
    font-size: 28px;
}

.ea-status {
    color: var(--green);
}

.ea-dash-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 18px;
    margin-top: 18px;
}

.ea-license-box {
    display: grid;
    gap: 12px;
}

.ea-copy-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.035);
    border: 1px solid var(--border);
}

.ea-code {
    font-family: Consolas, monospace;
    color: var(--green);
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ea-table {
    width: 100%;
    border-collapse: collapse;
}

.ea-table th,
.ea-table td {
    padding: 14px 10px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.ea-table th {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ea-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.ea-pill-green {
    background: rgba(34,197,94,.12);
    color: var(--green);
}

.ea-pill-gold {
    background: rgba(245,185,66,.12);
    color: var(--gold);
}

@media (max-width: 980px) {
    .ea-hero-grid,
    .ea-dash-grid {
        grid-template-columns: 1fr;
    }

    .ea-grid-3,
    .ea-cards-4,
    .ea-stat-row {
        grid-template-columns: 1fr;
    }

    .ea-app {
        grid-template-columns: 1fr;
    }

    .ea-sidebar {
        position: relative;
        height: auto;
    }

    .ea-nav-links {
        display: none;
    }
}
.ea-intro-strip {
    padding: 28px 0 0;
}

.ea-intro-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    padding: 20px 24px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(212,175,55,.10), rgba(245,185,66,.06)),
        rgba(13,19,32,.82);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.ea-intro-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(212,175,55,.12);
    border: 1px solid rgba(212,175,55,.25);
    color: #f4d06f;
    font-weight: 900;
    font-size: 13px;
    white-space: nowrap;
}

.ea-intro-title {
    display: block;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 5px;
}

.ea-intro-text {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

@media (max-width: 760px) {
    .ea-intro-card {
        grid-template-columns: 1fr;
    }
}





/* ea-products-tune */
#products .ea-card h3 {
    font-size: 26px;
    line-height: 1.2;
}

#products .ea-card p {
    font-size: 17px;
    line-height: 1.65;
}

#products .ea-card-icon {
    width: 54px;
    height: 54px;
    font-size: 22px;
}

#products .ea-card {
    min-height: 210px;
}

.ea-steps-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 10px 0 24px;
}

.ea-steps-flow span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(240,193,75,.18);
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}

.ea-steps-flow span:not(:last-child)::after {
    content: "→";
    margin-left: 4px;
    color: var(--gold);
    opacity: .75;
}

.ea-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.ea-step-card {
    position: relative;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
        rgba(16,16,16,.90);
    border: 1px solid rgba(255,255,255,.08);
    padding: 26px 24px 24px;
    min-height: 190px;
    box-shadow: 0 14px 36px rgba(0,0,0,.22);
    overflow: visible;
}

.ea-step-card:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(240,193,75,.14);
    border: 1px solid rgba(240,193,75,.28);
    color: var(--gold);
    font-size: 18px;
    font-weight: 900;
    z-index: 3;
    box-shadow: 0 8px 22px rgba(0,0,0,.25);
}

.ea-step-badge {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(240,193,75,.95), rgba(139,107,24,.95));
    color: #16120a;
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(212,175,55,.18);
    margin-bottom: 16px;
}

.ea-step-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: -.02em;
}

.ea-step-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 15px;
}

.ea-step-note {
    margin-top: 8px;
    color: var(--gold);
    font-weight: 800;
    font-size: 15px;
}

@media (max-width: 980px) {
    .ea-steps-grid {
        grid-template-columns: 1fr;
    }

    .ea-step-card:not(:last-child)::after {
        content: "↓";
        right: 50%;
        top: auto;
        bottom: -17px;
        transform: translateX(50%);
    }
}

/* ea-products-two-cards */
#products .ea-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 980px) {
    #products .ea-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* force-hide-steps-flow */
.ea-steps-flow {
    display: none !important;
}

/* eabot uploaded logo */
.ea-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.ea-brand-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 10px rgba(240,193,75,.18));
}

.ea-brand-text {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -.03em;
    color: var(--text);
    line-height: 1;
}

@media (max-width: 700px) {
    .ea-brand-logo {
        width: 42px;
        height: 42px;
    }

    .ea-brand-text {
        font-size: 22px;
    }
}

/* eabot real logo */
.ea-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.ea-logo-image-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(240,193,75,.08);
    border: 1px solid rgba(240,193,75,.22);
    box-shadow: 0 0 22px rgba(240,193,75,.16);
}

.ea-logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* paslepiam seną EA badge, jei kur liktų */
.ea-logo-mark {
    display: none !important;
}


/* eabot-logo-final-size */
.ea-logo-image-wrap {
    width: 64px !important;
    height: 64px !important;
    border-radius: 18px !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #050505 !important;
    border: 1px solid rgba(240,193,75,.35) !important;
    box-shadow: 0 0 22px rgba(240,193,75,.22) !important;
}

.ea-logo-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: scale(1.42) !important;
    transform-origin: center center !important;
}

.ea-logo span:last-child {
    font-size: 30px !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
}

/* eabot-logo-final-fix */
.ea-nav .ea-logo {
    gap: 12px !important;
}

.ea-logo-image-wrap {
    width: 50px !important;
    height: 50px !important;
    border-radius: 15px !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #050505 !important;
    border: 1px solid rgba(240,193,75,.30) !important;
    box-shadow: 0 0 14px rgba(240,193,75,.14) !important;
}

.ea-logo-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: scale(1.08) !important;
    transform-origin: center center !important;
}

.ea-nav .ea-logo span:last-child {
    font-size: 20px !important;
    font-weight: 900 !important;
    letter-spacing: .10em !important;
    line-height: 1 !important;
}

@media (max-width: 700px) {
    .ea-logo-image-wrap {
        width: 42px !important;
        height: 42px !important;
    }

    .ea-nav .ea-logo span:last-child {
        font-size: 17px !important;
    }
}


/* eabot-navbar-final-icon */
.ea-nav .ea-logo {
    gap: 10px !important;
}

.ea-logo-image-wrap {
    width: 48px !important;
    height: 48px !important;
    border-radius: 15px !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #050505 !important;
    border: 1px solid rgba(240,193,75,.32) !important;
    box-shadow: 0 0 16px rgba(240,193,75,.18) !important;
}

.ea-logo-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
}

.ea-nav .ea-logo span:last-child {
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: .12em !important;
    line-height: 1 !important;
}

/* final-navbar-logo-fix */
.ea-nav .ea-logo,
.ea-logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.ea-logo-image-wrap {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    border-radius: 14px !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #050505 !important;
    border: 1px solid rgba(240,193,75,.28) !important;
    box-shadow: 0 0 14px rgba(240,193,75,.16) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.ea-logo-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    display: block !important;
}

.ea-nav .ea-logo span:last-child,
.ea-logo > span:last-child {
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
    line-height: 1 !important;
    color: #fff !important;
}

/* final-use-eabot-logo-png */
.ea-logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.ea-logo-image-wrap {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    border-radius: 14px !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #050505 !important;
    border: 1px solid rgba(240,193,75,.32) !important;
    box-shadow: 0 0 14px rgba(240,193,75,.16) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.ea-logo-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    display: block !important;
}

.ea-nav .ea-logo span:last-child,
.ea-logo > span:last-child {
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: .10em !important;
    line-height: 1 !important;
    color: #fff !important;
}


/* ===== FINAL NAVBAR LOGO FIX ===== */
.ea-nav .ea-logo,
.ea-logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    line-height: 1 !important;
}

.ea-logo-image-wrap {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 16px !important;
    background: #050505 !important;
    border: 1px solid rgba(240,193,75,.30) !important;
    box-shadow: 0 0 16px rgba(240,193,75,.18) !important;
}

.ea-logo-image {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
    vertical-align: middle !important;
    transform: scale(1.08) !important;
}

.ea-nav .ea-logo span:last-child,
.ea-logo > span:last-child {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
    line-height: 1 !important;
    color: #ffffff !important;
}
/* ===== END FINAL NAVBAR LOGO FIX ===== */

/* ===== EABOT NAVBAR LOGO HARD RESET ===== */
.ea-nav .ea-logo,
.ea-logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    line-height: 1 !important;
}

.ea-logo-image-wrap {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 13px !important;
    background: #050505 !important;
    border: 1px solid rgba(240,193,75,.32) !important;
    box-shadow: 0 0 14px rgba(240,193,75,.15) !important;
}

.ea-logo-image {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ea-nav .ea-logo span:last-child,
.ea-logo > span:last-child {
    font-size: 17px !important;
    font-weight: 900 !important;
    letter-spacing: .10em !important;
    line-height: 1 !important;
    color: #ffffff !important;
}
/* ===== END EABOT NAVBAR LOGO HARD RESET ===== */

/* EABOT HERO VISUAL V4 */
.eabot-hero-v4{
    display:grid!important;
    grid-template-columns: 1fr 1.15fr!important;
    gap:24px!important;
    padding:28px!important;
    border-radius:30px!important;
    background:
        radial-gradient(circle at 12% 0%, rgba(255,210,31,.18), transparent 32%),
        linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025))!important;
    border:1px solid rgba(255,210,31,.34)!important;
    box-shadow:0 28px 90px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06)!important;
}

.v4-status{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:900;
    color:#f7f3e8;
    margin-bottom:14px;
    font-size:16px;
}

.v4-status span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#4fe36b;
    box-shadow:0 0 22px rgba(79,227,107,.95);
    animation:v4Pulse 1.4s infinite;
}

.v4-step{
    padding:17px 18px;
    border-radius:18px;
    background:rgba(0,0,0,.32);
    border:1px solid rgba(255,255,255,.09);
}

.v4-step b{
    display:block;
    color:#fff;
    font-size:16px;
    margin-bottom:5px;
}

.v4-step small{
    color:rgba(255,255,255,.62);
    font-size:13px;
}

.v4-arrow{
    color:#ffd21f;
    font-size:21px;
    line-height:1;
    padding:5px 0 5px 22px;
    animation:v4Arrow 1.5s infinite;
}

.v4-right{
    display:grid;
    grid-template-rows:auto 1fr auto;
    gap:18px;
}

.v4-chart-head{
    display:flex;
    justify-content:space-between;
    gap:16px;
    align-items:center;
}

.v4-chart-head b{
    color:#fff;
    font-size:18px;
}

.v4-chart-head span{
    color:rgba(255,255,255,.58);
    font-size:13px;
}

.v4-chart{
    min-height:230px;
    border-radius:24px;
    background:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
        rgba(0,0,0,.30);
    background-size:58px 44px;
    border:1px solid rgba(255,255,255,.09);
    overflow:hidden;
    padding:18px;
}

.v4-chart svg{
    width:100%;
    height:100%;
    min-height:210px;
}

.v4-area{
    fill:url(#eabotLineGlow);
}

.v4-line{
    fill:none;
    stroke:#ffd21f;
    stroke-width:5;
    stroke-linecap:round;
    stroke-linejoin:round;
    filter:drop-shadow(0 0 10px rgba(255,210,31,.65));
    stroke-dasharray:900;
    stroke-dashoffset:900;
    animation:v4Draw 3.8s ease-in-out infinite;
}

.v4-bot-ok{
    min-height:64px;
    padding:0 22px;
    border-radius:18px;
    background:rgba(0,0,0,.32);
    border:1px solid rgba(255,255,255,.09);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}

.v4-bot-ok span{
    color:rgba(255,255,255,.72);
    font-weight:800;
}

.v4-bot-ok strong{
    color:#6ff37e;
    font-weight:950;
    letter-spacing:.5px;
    display:flex;
    align-items:center;
    gap:9px;
}

.v4-bot-ok i{
    width:13px;
    height:13px;
    border-radius:50%;
    background:#4fe36b;
    box-shadow:0 0 24px rgba(79,227,107,.95);
    display:inline-block;
}

@keyframes v4Pulse{
    0%,100%{transform:scale(1);opacity:.9}
    50%{transform:scale(1.35);opacity:1}
}

@keyframes v4Arrow{
    0%,100%{opacity:.45;transform:translateY(-2px)}
    50%{opacity:1;transform:translateY(2px)}
}

@keyframes v4Draw{
    0%{stroke-dashoffset:900}
    48%,100%{stroke-dashoffset:0}
}

@media(max-width:900px){
    .eabot-hero-v4{
        grid-template-columns:1fr!important;
        gap:18px!important;
        padding:18px!important;
        border-radius:24px!important;
        margin:22px 0!important;
    }

    .v4-step{
        padding:14px 15px!important;
        border-radius:16px!important;
    }

    .v4-step b{
        font-size:15px!important;
    }

    .v4-step small{
        font-size:12px!important;
    }

    .v4-chart{
        min-height:170px!important;
        padding:14px!important;
        border-radius:20px!important;
        background-size:46px 36px!important;
    }

    .v4-chart svg{
        min-height:160px!important;
    }

    .v4-chart-head b{
        font-size:16px!important;
    }

    .v4-bot-ok{
        min-height:56px!important;
        padding:0 17px!important;
    }
}

/* EABOT DESKTOP HERO LAYOUT FIX */
@media(min-width:901px){
    .v3-hero{
        display:grid!important;
        grid-template-columns:minmax(520px, 680px) minmax(360px, 460px)!important;
        align-items:start!important;
        gap:56px!important;
        min-height:auto!important;
        padding-top:96px!important;
        padding-bottom:96px!important;
    }

    .v3-hero-copy,
    .v3-hero-copy-wide{
        max-width:680px!important;
        width:100%!important;
        grid-column:1!important;
    }

    .v3-hero h1{
        font-size:clamp(64px, 5.2vw, 92px)!important;
        line-height:.92!important;
        max-width:680px!important;
        margin-bottom:28px!important;
    }

    .v3-hero p{
        max-width:650px!important;
        font-size:22px!important;
        line-height:1.55!important;
    }

    .v3-hero .eabot-hero-animation,
    .v3-hero .eabot-hero-v4{
        position:relative!important;
        top:auto!important;
        right:auto!important;
        grid-column:2!important;
        width:100%!important;
        max-width:460px!important;
        margin:0!important;
        transform:none!important;
        align-self:start!important;
    }

    .eabot-hero-v4{
        grid-template-columns:1fr 1.05fr!important;
        gap:22px!important;
        padding:26px!important;
        min-height:540px!important;
    }

    .v4-chart{
        min-height:360px!important;
    }

    .v4-chart svg{
        min-height:340px!important;
    }

    .v3-section,
    .v3-product,
    section[id="product"],
    #product{
        margin-top:0!important;
        padding-top:70px!important;
        clear:both!important;
    }
}

@media(min-width:901px) and (max-width:1280px){
    .v3-hero{
        grid-template-columns:minmax(460px, 1fr) 420px!important;
        gap:42px!important;
    }

    .v3-hero h1{
        font-size:72px!important;
    }

    .v3-hero .eabot-hero-animation,
    .v3-hero .eabot-hero-v4{
        max-width:420px!important;
    }
}

/* EABOT PRODUCTS BACK BUTTON STATIC FIX */
@media(max-width:900px){
    body,
    html{
        overflow-x:hidden!important;
    }

    .back-btn,
    .back-button,
    .ea-back-btn,
    .dashboard-back,
    .products-back,
    a[href="javascript:history.back()"],
    a[onclick*="history.back"],
    a[href="/dashboard"],
    a[href="/"]{
        position:static!important;
        top:auto!important;
        left:auto!important;
        right:auto!important;
        bottom:auto!important;
        transform:none!important;
        z-index:auto!important;
    }

    .products-page .back-btn,
    .products-page .back-button,
    .products-page .ea-back-btn,
    .dashboard-products .back-btn,
    .dashboard-products .back-button,
    .dashboard-products .ea-back-btn{
        display:flex!important;
        width:100%!important;
        max-width:100%!important;
        margin:18px 0 26px!important;
        min-height:54px!important;
        border-radius:18px!important;
    }

    .products-page,
    .dashboard-products,
    main{
        overflow-x:hidden!important;
    }
}

/* EABOT FINAL DESKTOP HERO STRUCTURE FIX */
@media(min-width:901px){
    .v3-hero{
        display:grid!important;
        grid-template-columns:minmax(520px, 680px) 460px!important;
        gap:64px!important;
        align-items:start!important;
        padding-top:110px!important;
        padding-bottom:120px!important;
        min-height:auto!important;
        overflow:visible!important;
    }

    .v3-hero-copy,
    .v3-hero-copy-wide{
        grid-column:1!important;
        max-width:680px!important;
        width:100%!important;
    }

    .v3-hero h1{
        font-size:clamp(66px, 5vw, 88px)!important;
        line-height:.94!important;
        margin:0 0 26px!important;
        max-width:680px!important;
    }

    .v3-hero p{
        font-size:21px!important;
        line-height:1.55!important;
        max-width:660px!important;
    }

    .v3-actions{
        position:relative!important;
        z-index:3!important;
        margin-top:34px!important;
        display:flex!important;
        gap:18px!important;
        align-items:center!important;
        justify-content:flex-start!important;
    }

    .v3-tags{
        margin-top:36px!important;
    }

    .v3-hero > .eabot-hero-v4{
        grid-column:2!important;
        grid-row:1!important;
        position:relative!important;
        top:auto!important;
        right:auto!important;
        width:100%!important;
        max-width:460px!important;
        margin:0!important;
        transform:none!important;
        align-self:start!important;
        z-index:1!important;
    }

    .eabot-hero-v4{
        display:grid!important;
        grid-template-columns:1fr 1.05fr!important;
        gap:22px!important;
        padding:26px!important;
        min-height:540px!important;
        box-sizing:border-box!important;
    }

    .v4-chart{
        min-height:350px!important;
    }

    .v4-chart svg{
        min-height:330px!important;
    }

    .v3-product-section,
    .v3-section,
    section:not(.v3-hero){
        clear:both!important;
    }
}

@media(min-width:901px) and (max-width:1280px){
    .v3-hero{
        grid-template-columns:minmax(460px, 1fr) 410px!important;
        gap:44px!important;
    }

    .v3-hero h1{
        font-size:70px!important;
    }

    .v3-hero > .eabot-hero-v4{
        max-width:410px!important;
    }
}

/* EABOT PRODUCT BACK BUTTON REAL FIX */
.eabot-product-back-static{
    position:relative!important;
    top:auto!important;
    left:auto!important;
    right:auto!important;
    bottom:auto!important;
    transform:none!important;
    z-index:1!important;
    display:inline-flex!important;
}

@media(max-width:900px){
    .eabot-product-back-static{
        position:relative!important;
        top:auto!important;
        left:auto!important;
        right:auto!important;
        bottom:auto!important;
        transform:none!important;
        z-index:1!important;
        width:100%!important;
        max-width:100%!important;
        margin:18px 0 28px!important;
    }
}

/* EABOT DESKTOP SPACING TIGHTEN */
@media(min-width:901px){
    .clean-hero{
        padding-top:72px!important;
        padding-bottom:58px!important;
        gap:52px!important;
    }

    .hero-copy h1{
        margin-top:22px!important;
        margin-bottom:22px!important;
    }

    .actions{
        margin-top:26px!important;
    }

    .tags{
        margin-top:24px!important;
    }

    .section{
        padding-top:42px!important;
        padding-bottom:42px!important;
    }

    .section h2{
        margin-top:18px!important;
        margin-bottom:14px!important;
    }

    .product-card{
        margin-top:24px!important;
        padding:28px!important;
    }

    .steps{
        margin-top:24px!important;
    }

    .steps div{
        padding:24px!important;
    }

    #product{
        padding-top:32px!important;
    }

    #how{
        padding-top:36px!important;
    }
}

/* mobile irgi šiek tiek suveržiam */
@media(max-width:900px){
    .clean-hero{
        padding-top:28px!important;
        padding-bottom:42px!important;
        gap:22px!important;
    }

    .section{
        padding-top:38px!important;
        padding-bottom:38px!important;
    }

    .product-card{
        margin-top:20px!important;
    }
}

/* EABOT DESKTOP LANDING REWORK - compact modern layout */
@media (min-width: 1024px) {
  .clean-hero {
    min-height: auto !important;
    padding: 56px 0 34px !important;
    gap: 48px !important;
    align-items: center !important;
  }

  .clean-hero h1,
  .clean-title,
  .hero-title {
    font-size: clamp(42px, 4vw, 66px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.045em !important;
    margin: 0 0 22px !important;
    max-width: 720px !important;
  }

  .clean-hero p,
  .clean-subtitle,
  .hero-subtitle {
    font-size: clamp(20px, 1.75vw, 28px) !important;
    line-height: 1.45 !important;
    max-width: 720px !important;
    margin: 0 0 28px !important;
  }

  .clean-hero-actions,
  .hero-actions {
    margin-top: 0 !important;
    margin-bottom: 22px !important;
    gap: 18px !important;
  }

  .clean-hero-tags,
  .hero-tags {
    margin-top: 0 !important;
    gap: 14px !important;
  }

  .clean-hero-tag,
  .hero-tag {
    font-size: 15px !important;
    padding: 10px 18px !important;
  }

  .hero-visual,
  .clean-visual,
  .workflow-card {
    transform: scale(.92) !important;
    transform-origin: center right !important;
  }

  .section,
  .clean-section {
    padding-top: 34px !important;
    padding-bottom: 42px !important;
  }

  #products,
  .product-section {
    margin-top: 0 !important;
    padding-top: 34px !important;
    border-top: 1px solid rgba(255,255,255,.12) !important;
  }

  #products h2,
  .section-title,
  .product-title {
    font-size: clamp(32px, 3vw, 46px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;
    margin-bottom: 18px !important;
  }

  .product-card,
  .steps,
  .process-grid {
    margin-top: 22px !important;
  }

  .clean-wrap,
  .landing-container,
  .container {
    max-width: 1440px !important;
  }
}

/* stronger fix for very wide desktop */
@media (min-width: 1400px) {
  .clean-hero h1,
  .clean-title,
  .hero-title {
    font-size: 64px !important;
  }

  .clean-hero {
    padding-top: 48px !important;
  }

  .section,
  .clean-section {
    padding-top: 28px !important;
  }
}






/* EABOT INSTALL PAGE LAYOUT FIX */
.install-guide-wrap,
.install-page,
.dashboard-install-page {
    max-width: 1320px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.install-guide-grid,
.install-layout,
.install-content-layout {
    display: grid !important;
    grid-template-columns: 320px minmax(0, 1fr) !important;
    gap: 34px !important;
    align-items: start !important;
}

.install-tabs,
.install-tabs-card,
.install-menu-card {
    position: sticky !important;
    top: 28px !important;
    width: 320px !important;
    margin: 0 !important;
    align-self: start !important;
}

.install-panel,
.install-step-panel,
.install-content-card {
    margin: 0 !important;
    max-width: 920px !important;
    width: 100% !important;
    transform: none !important;
}

.install-panel h1,
.install-panel h2,
.install-panel h3,
.install-step-panel h1,
.install-step-panel h2,
.install-step-panel h3,
.install-content-card h1,
.install-content-card h2,
.install-content-card h3 {
    text-align: left !important;
}

.install-panel p,
.install-step-panel p,
.install-content-card p {
    text-align: left !important;
}

@media (max-width: 980px) {
    .install-guide-grid,
    .install-layout,
    .install-content-layout {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .install-tabs,
    .install-tabs-card,
    .install-menu-card {
        position: relative !important;
        top: auto !important;
        width: 100% !important;
    }

    .install-panel,
    .install-step-panel,
    .install-content-card {
        max-width: 100% !important;
    }
}
