/* ===============
   HERO
=============== */
.hero {
    position: relative;
    color: white;
    background:
        radial-gradient(circle at 20% 45%, var(--primary-alpha), transparent 20%),
        linear-gradient(135deg, #030711 0%, #080d1a 50%, #050913 100%);
    overflow: hidden;
}

.hero-inner {
    position: relative;
    min-height: 600px;
    padding-top: 130px;
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: var(--spacing-md);
}

.hero-2 {
    position: relative;
    color: white;
    background: linear-gradient(90deg, #030711 0%, #070f20 50%, #050913 100%);
    overflow: hidden;
}

.hero-inner-2 {
    position: relative;
    min-height: 400px;
    padding-top: 130px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
}

.hero-inner-2 p {
    margin: auto;
}


/* ===============
   HERO EYEBROW
=============== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
    color: #cbd5e1;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: 15px;
}

.eyebrow i {
    color: var(--primary-color);
}

/* ===============
   HERO BREADCRUMB
=============== */
.hero-breadcrumb {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .85rem;
    padding-bottom: 70px;
}

.hero-breadcrumb a {
    color: var(--muted);
    transition: color .2s ease;
}

.hero-breadcrumb a:hover {
    color: var(--primary-light);
}

.hero-breadcrumb strong {
    color: var(--primary-color);
    font-weight: 500;
}


/* ===============
   HERO CONTENT
=============== */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
}
.hero-content h1 {
    max-width: 620px;
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.hero-content h3 {
    margin-bottom: 30px;
}

.hero-content h1 span {
    display: block;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: #aab3c5;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ===============
   HERO BUTTONS
=============== */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-buttons .button i {
    color: var(--white);
}

/* ===============
   HERO DEVICES
=============== */
.hero-devices {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-image {
    position: relative;
    width: 720px;
    max-width: 100%;
    filter: drop-shadow(0 0 10px var(--primary-alpha));
    z-index: 2;
}


/* ===============
   HERO META
=============== */
.hero-meta {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
    max-width: 550px;
    margin-top: 30px;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-meta-icon {
    width: 39px;
    height: 39px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    background: rgba(255,255,255,.04);
    color: var(--primary-light);
}

.hero-meta-item small {
    display: block;
    margin-bottom: 2px;
    color: #6f7b90;
    font-size: .72rem;
}

.hero-meta-item strong {
    display: block;
    color: #dce1eb;
    font-size: .82rem;
    font-weight: 500;
}


/* ===============
   HERO FEATURES
=============== */
.hero-features {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(1, 53, 83, 0.5);
}

.hero-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 78px;
}

.hero-feature {
    display: grid;
    grid-template-columns: 44px 220px;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    color: white;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0 22px;
}

.hero-feature:last-child {
    border-right: 0;
}

.feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-alpha);
    border: 1px solid var(--border-dark);
    color: var(--primary-light);
}

.hero-feature strong {
    display: block;
    font-weight: 600;
}

.hero-feature span {
    display: block;
    color: #7f8aa0;
}