/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 55%, #1976D2 100%);
    padding: 100px 60px 0;
    overflow: hidden;
    min-height: 820px;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    gap: 56px;
}

.hero-text {
    flex: 1 1 auto;
    padding-bottom: 100px;
}

.hero h1 {
    font-size: 2.9rem;
    font-weight: 800;
    color: #fff;
    max-width: 540px;
    margin: 0 0 20px;
    line-height: 1.18;
}

.hero p.sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 460px;
    margin: 0 0 36px;
}

/* ── HERO BUTTONS ── */
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-buttons a img {
    height: 54px;
    width: auto;
    border-radius: 10px;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-buttons a img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

/* ── HOW TO USE BUTTON ── */
.hero-how-to-use {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 36px;
    padding: 12px 24px;
    background: #fff;
    color: #2196F3;
    border: 2px solid #2196F3;
    border-radius: 100px;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.hero-how-to-use:hover {
    background: #2196F3;
    color: #fff;
}

/* ── STATS BAR ── */
.stats-bar {
    display: flex;
    gap: 40px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 5px;
}

/* ── HERO PHONE MOCKUPS ── */
.hero-phones {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    gap: 14px;
}

.hero-phones .phone {
    border-radius: 32px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
    display: block;
}

/* Smaller radius on tablet */
@media (max-width: 960px) {
    .hero-phones .phone {
        border-radius: 26px;
    }
}

/* Even smaller radius on mobile */
@media (max-width: 768px) {
    .hero-phones .phone {
        border-radius: 22px;
    }
}

/* Tiny radius on small phones (iPhone 12 size) */
@media (max-width: 480px) {
    .hero-phones .phone {
        border-radius: 18px;
    }
}

.hero-phones .phone-side {
    width: 240px;
    margin-bottom: 36px;
    opacity: 0.88;
}

.hero-phones .phone-center {
    width: 285px;
    margin-bottom: 0;
    z-index: 1;
}

.hero-phones .phone:hover {
    transform: translateY(-8px);
}