.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 120px 20px;

    background:url('https://fons.grizly.club/uploads/posts/2025-06/27/17510078267895.jpg') center/cover;
}

/* INNER */
.hero-inner {
    max-width: 700px;
}

/* TITLE */
.hero h1 {
    font-size: 56px;
    line-height: 1.1;
}

.hero span {
    background: linear-gradient(90deg,#00ff9c,#00ffaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* TEXT */
.hero p {
    margin-top: 25px;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    margin-top: 35px;

    padding: 14px 28px;
    border-radius: 30px;

    background: linear-gradient(135deg,#00ff9c,#00cc88);
    color: black;
    text-decoration: none;

    transition: 0.3s;
}

.hero-btn:hover {
    transform: translateY(-3px);
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 35px;

    padding: 14px 26px;
    border-radius: 40px;

    background: linear-gradient(135deg,#00ff9c,#00cc88);
    color: black;

    font-weight: 600;
    text-decoration: none;

    position: relative;
    overflow: hidden;

    transition: 0.3s;
}

/* ARROWS */
.hero-btn .arrow {
    font-size: 14px;
    transition: 0.3s;
}

/* ANIMATION */
.hero-btn:hover .left {
    transform: translateX(-5px);
}

.hero-btn:hover .right {
    transform: translateX(5px);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,255,150,0.4);
}
/* BUTTON BASE */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;

    margin-top: 40px;

    padding: 18px 34px;
    border-radius: 50px;

    background: linear-gradient(135deg,#00ff9c,#00cc88);
    color: #000;

    font-weight: 600;
    text-decoration: none;

    position: relative;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,255,150,0.25);

    transition: 0.3s;
}

/* CHEVRONS */
.chevron {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* линии */
.chevron span {
    display: block;
    width: 10px;
    height: 2px;
    background: black;
}

/* левая */
.chevron.left span:nth-child(1) {
    transform: rotate(-45deg);
}

.chevron.left span:nth-child(2) {
    transform: rotate(45deg);
}

/* правая */
.chevron.right span:nth-child(1) {
    transform: rotate(45deg);
}

.chevron.right span:nth-child(2) {
    transform: rotate(-45deg);
}

/* 🔥 ПУЛЬС */
@keyframes pulseLeft {
    0% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(-6px); opacity: 0.5; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes pulseRight {
    0% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(6px); opacity: 0.5; }
    100% { transform: translateX(0); opacity: 1; }
}

.chevron.left {
    animation: pulseLeft 1.5s infinite;
}

.chevron.right {
    animation: pulseRight 1.5s infinite;
}

/* HOVER */
.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,255,150,0.45);
}
/* HERO BG UPGRADE */
.hero {
    position: relative;
    overflow: hidden;
}

/* градиентные пятна */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;

    background: radial-gradient(circle, rgba(0,255,150,0.15), transparent 70%);
    filter: blur(120px);

    z-index: 0;
}

/* левое пятно */
.hero::before {
    top: -100px;
    left: -100px;
}

/* правое */
.hero::after {
    bottom: -100px;
    right: -100px;
}

/* чтобы текст был сверху */
.hero-inner {
    position: relative;
    z-index: 2;
}
@media (min-width:768px) {


 .h1 {
    font-size: 48px!important;
}
}
@media (max-width:768px) {


 .h1 {
    font-size: 36px!important;
}
}

