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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: #070707;
    color: #f4f4f4;
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================
   GLOBAL
========================= */
.container {
    width: min(1240px, 92%);
    margin: 0 auto;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

section {
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(183, 255, 65, 0.06);
    border: 1px solid rgba(183, 255, 65, 0.16);
    color: #b7ff41;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* =========================
   BUTTONS
========================= */
.cta-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.28s ease;
    border: none;
}

.cta-btn {
    background: linear-gradient(135deg, #b7ff41 0%, #8fd62d 100%);
    color: #0b0b0b;
    box-shadow: 0 10px 24px rgba(143, 214, 45, 0.18);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(143, 214, 45, 0.24);
}

.cta-btn.big {
    min-height: 60px;
    padding: 0 34px;
    font-size: 18px;
}

.secondary-btn {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.secondary-btn:hover {
    border-color: rgba(183, 255, 65, 0.2);
    color: #b7ff41;
    transform: translateY(-2px);
}

/* =========================
   LANDING V2
========================= */
.landing-v2-hero {
    padding: 46px 0 34px;
    background:
        radial-gradient(circle at 15% 20%, rgba(183, 255, 65, 0.06), transparent 30%),
        radial-gradient(circle at 85% 30%, rgba(183, 255, 65, 0.04), transparent 28%),
        linear-gradient(180deg, #0b0b0b 0%, #070707 100%);
}

.landing-v2-hero-box,
.landing-v2-types-box,
.landing-v2-coverage-box,
.landing-v2-company-box,
.landing-v2-cta-box {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.24);
}

.landing-v2-hero-box {
    padding: 34px;
}

.landing-v2-badge-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.landing-v2-program {
    color: #b7ff41;
    font-size: 15px;
    font-weight: 800;
}

.landing-v2-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.landing-v2-hero-left h1 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.03;
    letter-spacing: -2px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
    max-width: 760px;
}

.landing-v2-hero-left p {
    font-size: 21px;
    color: rgba(255,255,255,0.72);
    max-width: 720px;
    margin-bottom: 28px;
}

.landing-v2-hero-actions {
    margin-bottom: 28px;
}

.landing-v2-inline-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.landing-v2-inline-point {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
}

.landing-v2-inline-point strong {
    display: block;
    font-size: 24px;
    line-height: 1.1;
    color: #b7ff41;
    margin-bottom: 8px;
    font-weight: 800;
}

.landing-v2-inline-point span {
    display: block;
    font-size: 15px;
    color: rgba(255,255,255,0.68);
}

.landing-v2-image-card {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    background: #111;
}

.landing-v2-image-card img {
    width: 100%;
    min-height: 480px;
    object-fit: cover;
}

.landing-v2-info,
.landing-v2-types,
.landing-v2-coverage,
.landing-v2-company {
    padding: 0 0 34px;
}

.landing-v2-section-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.landing-v2-section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.landing-v2-section-head h2 {
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: -1px;
    margin-top: 18px;
    margin-bottom: 12px;
    font-weight: 800;
    color: #fff;
}

.landing-v2-section-head p {
    font-size: 19px;
    color: rgba(255,255,255,0.68);
}

.landing-v2-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.landing-v2-step-card {
    padding: 32px 28px;
    border-radius: 24px;
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.05);
}

.landing-v2-step-no {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 800;
    color: #b7ff41;
}

.landing-v2-step-card h3 {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 800;
}

.landing-v2-step-card p {
    font-size: 17px;
    color: rgba(255,255,255,0.68);
}

.landing-v2-types-box,
.landing-v2-company-box,
.landing-v2-cta-box {
    padding: 34px;
}

.landing-v2-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.landing-v2-type-item {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.landing-v2-coverage-box {
    padding: 34px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
}

.landing-v2-coverage-left h2 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.06;
    letter-spacing: -1px;
    margin: 18px 0 14px;
    font-weight: 800;
    color: #fff;
}

.landing-v2-coverage-left p {
    font-size: 19px;
    color: rgba(255,255,255,0.68);
    margin-bottom: 22px;
}

.landing-v2-list {
    display: grid;
    gap: 15px;
}

.landing-v2-list li {
    position: relative;
    padding-left: 24px;
    font-size: 17px;
    color: rgba(255,255,255,0.82);
}

.landing-v2-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b7ff41;
}

.landing-v2-coverage-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-v2-coverage-right img {
    max-width: 100%;
    width: 420px;
    filter: drop-shadow(0 0 28px rgba(183,255,65,0.08));
}

.landing-v2-company-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.landing-v2-company-item {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
}

.landing-v2-company-item span {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.42);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.landing-v2-company-item strong {
    display: block;
    font-size: 17px;
    color: #fff;
    font-weight: 700;
    word-break: break-word;
}

.landing-v2-cta {
    padding: 0 0 110px;
}

.landing-v2-cta-box {
    text-align: center;
}

.landing-v2-cta-box h2 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.06;
    letter-spacing: -1px;
    margin: 18px 0 14px;
    font-weight: 800;
    color: #fff;
}

.landing-v2-cta-box p {
    max-width: 760px;
    margin: 0 auto 24px;
    font-size: 19px;
    color: rgba(255,255,255,0.68);
}

/* =========================
   POPUP
========================= */
.popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    overflow-y: auto;
}

.popup-content {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 34px 28px 28px;
    border-radius: 24px;
    background: #101010;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.popup-large,
.popup-xl {
    max-width: 1180px;
}

.popup-content h2 {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 800;
}

.popup-subtext {
    color: rgba(255,255,255,0.66);
    margin-bottom: 22px;
    font-size: 17px;
}

.popup-content form {
    display: grid;
    gap: 14px;
}

.popup-content input,
.popup-content textarea,
.popup-content select {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 15px 16px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: all 0.24s ease;
}

.popup-content input::placeholder,
.popup-content textarea::placeholder {
    color: rgba(255,255,255,0.34);
}

.popup-content input:focus,
.popup-content textarea:focus,
.popup-content select:focus {
    border-color: rgba(183, 255, 65, 0.3);
    box-shadow: 0 0 0 4px rgba(183, 255, 65, 0.06);
}

.popup-content textarea {
    min-height: 120px;
    resize: vertical;
}

.close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.24s ease;
}

.close:hover {
    background: rgba(255,255,255,0.08);
    color: #b7ff41;
}

/* =========================
   ADVANCED FORM
========================= */
.form-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 26px;
}

.form-program {
    min-width: 220px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(183,255,65,0.06);
    border: 1px solid rgba(183,255,65,0.14);
}

.form-program strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    color: #b7ff41;
    margin-bottom: 6px;
}

.form-program span {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.deee-form {
    display: grid;
    gap: 22px;
}

.form-section {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}

.form-section h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #fff;
}

.form-grid.two-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-grid.three-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label,
.equipment-item label {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.82);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.equipment-item {
    display: grid;
    gap: 8px;
}

.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin-top: 8px;
}

.checkbox-wrap input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #b7ff41;
}

.form-submit-btn {
    width: 100%;
    margin-top: 6px;
}

/* =========================
   LIVE NOTIFICATION
========================= */
.live-notification {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 3000;
    width: 360px;
    max-width: calc(100% - 40px);
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.live-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.live-notification-inner {
    background: rgba(14, 14, 14, 0.96);
    border: 1px solid rgba(183, 255, 65, 0.14);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.live-badge {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #b7ff41;
}

.live-notification p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255,255,255,0.88);
}

/* =========================
   STICKY CALL BUTTON
========================= */
.call-sticky {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 3100;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 290px;
    max-width: calc(100% - 40px);
    padding: 14px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #b7ff41 0%, #8fd62d 100%);
    color: #0a0a0a;
    box-shadow: 0 18px 40px rgba(143, 214, 45, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.call-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 46px rgba(143, 214, 45, 0.3);
}

.call-sticky-icon {
    position: relative;
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(10, 10, 10, 0.08);
    overflow: visible;
}

.call-sticky-icon svg {
    width: 24px;
    height: 24px;
    animation: phoneShake 1.4s ease-in-out infinite;
    transform-origin: center;
}

.call-sticky-icon::before,
.call-sticky-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(10, 10, 10, 0.18);
    animation: phoneRing 1.8s ease-out infinite;
}

.call-sticky-icon::after {
    animation-delay: 0.6s;
}

.call-sticky-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.call-sticky-text strong {
    font-size: 18px;
    font-weight: 800;
    color: #0a0a0a;
}

.call-sticky-text small {
    margin-top: 3px;
    font-size: 12px;
    font-style: normal;
    color: rgba(10, 10, 10, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.call-sticky-text em {
    margin-top: 6px;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    color: #0a0a0a;
}

@keyframes phoneShake {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(12deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(12deg); }
    40% { transform: rotate(-8deg); }
    50% { transform: rotate(8deg); }
    60% { transform: rotate(-4deg); }
    70% { transform: rotate(4deg); }
}

@keyframes phoneRing {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }
    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

/* =========================
   ANIMATION SUPPORT
========================= */
.landing-v2-hero-left,
.landing-v2-hero-right,
.landing-v2-step-card,
.landing-v2-type-item,
.landing-v2-coverage-box,
.landing-v2-company-box,
.landing-v2-cta-box {
    will-change: transform, opacity;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1180px) {
    .landing-v2-hero-grid,
    .landing-v2-coverage-box,
    .landing-v2-company-grid {
        grid-template-columns: 1fr;
    }

    .landing-v2-inline-points,
    .landing-v2-steps-grid,
    .landing-v2-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-v2-image-card img {
        min-height: 420px;
    }
}

@media (max-width: 900px) {
    .form-header,
    .form-grid.two-cols,
    .form-grid.three-cols,
    .equipment-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .form-header {
        display: grid;
    }

    .popup-xl,
    .popup-large {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .landing-v2-hero,
    .landing-v2-info,
    .landing-v2-types,
    .landing-v2-coverage,
    .landing-v2-company {
        padding-bottom: 24px;
    }

    .landing-v2-hero-box,
    .landing-v2-types-box,
    .landing-v2-coverage-box,
    .landing-v2-company-box,
    .landing-v2-cta-box {
        padding: 26px 20px;
        border-radius: 24px;
    }

    .landing-v2-inline-points,
    .landing-v2-steps-grid,
    .landing-v2-types-grid,
    .landing-v2-company-grid {
        grid-template-columns: 1fr;
    }

    .landing-v2-badge-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .landing-v2-hero-left h1,
    .landing-v2-section-head h2,
    .landing-v2-coverage-left h2,
    .landing-v2-cta-box h2 {
        letter-spacing: -1px;
    }

    .landing-v2-hero-left p,
    .landing-v2-section-head p,
    .landing-v2-coverage-left p,
    .landing-v2-cta-box p {
        font-size: 17px;
    }

    .landing-v2-step-card h3 {
        font-size: 24px;
    }

    .live-notification {
        left: 12px;
        right: 12px;
        bottom: calc(12px + 92px);
        width: auto;
        max-width: none;
    }

    .live-notification-inner {
        padding: 14px 15px;
        border-radius: 16px;
    }

    .live-notification p {
        font-size: 14px;
    }

    .call-sticky {
        right: 12px;
        left: 12px;
        bottom: 12px;
        min-width: auto;
        width: auto;
        max-width: none;
        padding: 12px 14px;
        gap: 12px;
        border-radius: 16px;
    }

    .call-sticky-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .call-sticky-text strong {
        font-size: 16px;
    }

    .call-sticky-text small {
        font-size: 11px;
    }

    .call-sticky-text em {
        font-size: 18px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(1240px, 94%);
    }

    .landing-v2-hero-left h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .popup-content {
        padding: 28px 20px 22px;
    }

    .popup-content h2 {
        font-size: 28px;
    }

    .cta-btn,
    .cta-btn.big,
    .secondary-btn {
        width: 100%;
    }
}


body.popup-open .call-sticky,
body.popup-open .live-notification,
body.form-typing .call-sticky,
body.form-typing .live-notification {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.popup-content {
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .popup-content {
        padding-bottom: 120px;
    }
}