:root {
    --primary: #4a9603;
    --text: #121212;
}

html,
body {
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 5;
    padding-left: 60px;
    padding-right: 60px;
}

@media (max-width: 1024px) {
    .nav {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.nav__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    gap: 16px;
    flex-wrap: wrap;
}

.nav__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.logo {
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: 22px;
    letter-spacing: 0.4px;
}

.logo__img {
    display: block;
    height: 34px;
    width: auto;
    max-width: 140px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(74, 150, 3, 0.25);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(74, 150, 3, 0.35);
}

.btn--ghost {
    border-color: rgba(74, 150, 3, 0.4);
    color: var(--primary);
}

.video {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.video__overlay {
    position: absolute;
    inset: 0;
    background: url("https://img.youtube.com/vi/VIDEO_ID_HERE/hqdefault.jpg") center/cover no-repeat;
    opacity: 0.85;
}

.video__scrim {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(74, 150, 3, 0.25), rgba(0, 0, 0, 0.65) 65%);
    mix-blend-mode: multiply;
}

.video__chrome {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    z-index: 2;
}

.video__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    display: inline-block;
}

.video__dot--red {
    background: #f87171;
}

.video__dot--yellow {
    background: #facc15;
}

.video__dot--green {
    background: #4ade80;
}

.video__title {
    margin-left: 6px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.video__badge {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 11px;
    z-index: 2;
}

.video__btn {
    position: absolute;
    inset: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 3;
}

.video__btn::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.video__btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-38%, -50%);
    border-left: 18px solid #4A9603;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.video__hint {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
}

.journey-panel {
    border: 1px solid rgba(74, 150, 3, 0.18);
    border-radius: 28px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(243, 248, 238, 0.8), #ffffff 60%);
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.1);
}

.journey-panel__header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 24px;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.journey-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(18, 18, 18, 0.08);
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.journey-card:hover {
    transform: translateY(-4px);
    border-color: rgba(74, 150, 3, 0.35);
    box-shadow: 0 16px 30px rgba(17, 24, 39, 0.12);
}

.journey-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(74, 150, 3, 0.1);
    color: #4A9603;
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
}

.journey-note {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(74, 150, 3, 0.08);
    font-size: 13px;
    color: #4B5563;
    text-align: center;
}

.timeline-track {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 70px;
    position: relative;
}

.timeline-track::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: linear-gradient(90deg, rgba(74, 150, 3, 0.4), rgba(74, 150, 3, 0.05));
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    border: 1px solid rgba(18, 18, 18, 0.08);
    background: #ffffff;
    padding: 22px;
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.timeline-step:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(74, 150, 3, 0.35);
    box-shadow: 0 20px 36px rgba(17, 24, 39, 0.12);
}

.timeline-kicker {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #4A9603;
}

.journey-arrow {
    position: absolute;
    right: -49px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: color 0.25s ease, border-color 0.25s ease;
    background: transparent;
    color: #4A9603;
    font-size: 12px;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(74, 150, 3, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(17, 24, 39, 0.08);
    overflow: hidden;
    z-index: 2;
}

.journey-arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #4A9603;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.timeline-step:hover .journey-arrow,
.journey-arrow:hover {
    color: #ffffff;
    border-color: #4A9603;
}

.timeline-step:hover .journey-arrow::before,
.journey-arrow:hover::before {
    transform: scaleX(1);
}

.timeline-step:last-child .journey-arrow {
    display: none;
}

.flip-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.flip-card {
    perspective: 1200px;
    outline: none;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-inner,
.flip-card:focus-within .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(18, 18, 18, 0.08);
    padding: 22px;
    background: #ffffff;
    backface-visibility: hidden;
    box-shadow: 0 16px 32px rgba(17, 24, 39, 0.08);
}

.flip-front {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flip-back {
    transform: rotateY(180deg);
    background: rgba(243, 248, 238, 0.9);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flip-back h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.flip-back ul {
    list-style: disc;
    padding-left: 18px;
    color: #4B5563;
    display: grid;
    gap: 6px;
    font-size: 14px;
}

.flip-back li::marker {
    color: #4A9603;
}

.flip-price {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(74, 150, 3, 0.12);
    color: #4A9603;
    font-size: 12px;
    font-weight: 600;
}

.video-card {
    border-radius: 28px;
    border: 1px solid rgba(74, 150, 3, 0.25);
    background: linear-gradient(160deg, #0c1a11 0%, #0f1f14 55%, #122b1a 100%);
    /* padding: 18px; */
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    align-self: center;
}

.video-copy {
    align-self: center;
}

.video-pill {
    border-radius: 999px;
    border: 1px solid rgba(18, 18, 18, 0.08);
    padding: 10px 14px;
    font-size: 13px;
    background: #ffffff;
    box-shadow: 0 10px 18px rgba(17, 24, 39, 0.08);
}

.faq-list {
    margin-top: 24px;
    display: grid;
    gap: 16px;
    max-width: 960px;
    margin-inline: auto;
}

.faq-item {
    border-radius: 18px;
    border: 1px solid rgba(18, 18, 18, 0.08);
    background: #ffffff;
    padding: 4px;
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    font-weight: 600;
    list-style: none;
    padding: 18px 20px;
    border-radius: 14px;
    background: #ffffff;
    transition: background 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 0 20px 16px;
    color: #4B5563;
    font-size: 14px;
    line-height: 1.6;
}

.faq-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(18, 18, 18, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #4A9603;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: #4A9603;
    color: #ffffff;
}

.faq-item[open] {
    border-color: rgba(74, 150, 3, 0.3);
    box-shadow: 0 16px 30px rgba(17, 24, 39, 0.12);
}

.faq-item summary:hover {
    background: rgba(74, 150, 3, 0.06);
}

.onboarding-signup form {
    margin-top: 20px;
}

.onboarding-signup .row {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

.onboarding-signup .col-12,
.onboarding-signup .col-sm-12,
.onboarding-signup .col-6 {
    padding: 8px;
    width: 100%;
}

.onboarding-signup .col-6 {
    width: 50%;
}

.onboarding-signup .mt-3 {
    margin-top: 12px;
}

.onboarding-signup .text-center {
    text-align: center;
}

.onboarding-signup .w-100 {
    width: 100%;
}

.onboarding-signup .py-2 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.onboarding-signup .d-block {
    display: block;
}

.onboarding-signup .me-2 {
    margin-right: 8px;
}

.onboarding-signup .text-muted {
    color: #4B5563;
}

.onboarding-signup .form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #121212;
    margin-bottom: 6px;
}

.onboarding-signup .form-control {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 12px 14px;
    font-size: 14px;
    background: #ffffff;
    outline: none;
}

.onboarding-signup .form-control:focus {
    border-color: rgba(74, 150, 3, 0.6);
    box-shadow: 0 0 0 4px rgba(74, 150, 3, 0.15);
}

.onboarding-signup .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.onboarding-signup .btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(74, 150, 3, 0.25);
}

.onboarding-signup .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(74, 150, 3, 0.35);
}

.onboarding-signup .select2-container--default .select2-selection--single {
    height: 46px;
    padding: 6px 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
}

.onboarding-signup .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 30px;
}

.onboarding-signup .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
}

@media (max-width: 1024px) {
    .journey-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline-track::before {
        display: none;
    }

    .journey-arrow {
        display: none;
    }

    .flip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .nav__wrap {
        padding: 12px 0;
    }

    .btn {
        padding: 12px 20px;
    }

    .journey-panel {
        padding: 22px;
    }

    .journey-grid {
        grid-template-columns: 1fr;
    }

    .timeline-track {
        grid-template-columns: 1fr;
    }

    .flip-grid {
        grid-template-columns: 1fr;
    }

    .flip-inner {
        min-height: 260px;
    }

    .video-card {
        padding: 14px;
    }

    .faq-item {
        padding: 16px;
    }

    .onboarding-signup .col-6 {
        width: 100%;
    }
}