/* ========================================
   CSS RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #fff;
    color: #181e4b;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   DESIGN TOKENS
   ======================================== */
:root {
    /* Primary */
    --primary-50: #f1f4f0;
    --primary-100: #d2ded1;
    --primary-200: #bdceba;
    --primary-500: #6f9469;

    /* Neutral */
    --dark: #181e4b;
    --gray: #5e6282;
    --gray-light: #9c9da4;
    --neutral-600: #56687a;
    --neutral-900: #0e2741;

    /* Accent */
    --error-500: #ec1333;
    --warning-500: #f99f36;
    --coral: #ed785a;

    /* Background */
    --card-bg: #fafcf9;
    --card-border: #f1f4f0;

    /* Spacing */
    --container-width: 1180px;
    --side-padding: 130px;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.page-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background: rgba(111, 148, 105, 1);
    color: #fff;
}

.btn-primary:hover {
    background: #5d8057;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(111, 148, 105, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    padding-top: 48px;
    padding-bottom: 80px;
    min-height: 870px;
    width: 100%;
}

.hero__bg {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* NAV */
.nav {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
    height: 64px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__logo-icon {
    width: 40px;
    height: 64px;
    object-fit: contain;
}

.nav__logo-text {
    width: 160px;
    height: 21px;
    object-fit: contain;
}

/* HERO CONTENT */
.hero__content {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto 0;
    padding: 0 var(--side-padding);
}

.hero__text {
    max-width: 588px;
    padding-top: 99px;
}

.hero__label {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: var(--primary-500);
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero__title {
    font-weight: 700;
    font-size: 82px;
    line-height: 86px;
    color: var(--dark);
    margin-bottom: 0;
    position: relative;
}

.hero__title-line {
    display: block;
    font-family: Inter;
    font-weight: 700;
    font-size: 82px;
    line-height: 86px;
    letter-spacing: 0px;
}

.hero__title-underline {
    position: absolute;
    top: 72px;
    left: 245px;
    width: 385px;
    height: 12px;
}

.hero__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(94, 98, 130, 1);
    margin-top: 32px;
    max-width: 477px;
}

.hero__cta {
    margin-top: 72px;
}

.hero__image {
    width: 568px;
    height: 686px;
    flex-shrink: 0;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   FEATURES / SERVICES SECTION
   ======================================== */
.features {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px var(--side-padding) 0;
    text-align: center;
}

.features__label {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--gray);
    letter-spacing: 0.02em;
}

.features__title {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: var(--dark);
    margin-top: 16px;
}

/* Decorative plus grid */
.features__decor {
    position: absolute;
    top: 51px;
    right: 100px;
    display: grid;
    grid-template-columns: repeat(5, 35px);
    grid-template-rows: repeat(5, 35px);
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    line-height: 1;
    pointer-events: none;
}

.features__decor span {
    color: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.features__decor span.red {
    color: var(--error-500);
}
.features__decor span.orange {
    color: var(--warning-500);
}

.features__cards {
    display: flex;
    gap: 37px;
    margin-top: 72px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-card {
    width: 267px;
    height: 293px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 32px 0;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(111, 148, 105, 0.12);
}

.feature-card__icon-wrap {
    position: relative;
    width: 50px;
    height: 50px;
}

.feature-card__icon {
    position: absolute;
    top: 2px;
    width: 73px;
    height: 67px;
}

.feature-card__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: var(--dark);
    margin-top: 41px;
}

.feature-card__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--gray);
    text-align: center;
    margin-top: 12px;
}

/* ========================================
   MEMBERSHIP SECTION
   ======================================== */
.membership {
    max-width: 1440px;
    margin: 0 auto;
    padding: 130px var(--side-padding) 0;
    display: flex;
    gap: 160px;
    align-items: flex-start;
}

.membership__content {
    flex: 1;
    max-width: 620px;
}

.membership__label {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--gray);
}

.membership__title {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: var(--dark);
    text-transform: capitalize;
    margin-top: 16px;
}

.membership__values {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 72px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.value-item__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-item__icon-wrap--warm {
    background: #f9f3eb;
}

.value-item__icon-wrap--cool {
    background: #edf0f6;
}

.value-item__icon-wrap--purple {
    background: #f4ebf9;
}

.value-item__icon {
    width: 24px;
    height: 24px;
}

.value-item__text {
    color: var(--gray);
}

.value-item__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
}

.value-item__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 8px;
}

.membership__cta {
    margin-top: 48px;
}

.membership__image-wrapper {
    position: relative;
    width: 400px;
    height: 600px;
    flex-shrink: 0;
}

.membership__image {
    width: 400px;
    height: 600px;
    border-radius: 24px;
    object-fit: cover;
}

.membership__badge {
    position: absolute;
    top: 30px;
    right: -30px;
    width: 125px;
    height: 107px;
    background: var(--coral);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.membership__badge-price {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
}

.membership__badge-label {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    margin-top: 3px;
}

/* ========================================
   COUNTDOWN SECTION
   ======================================== */
.countdown {
    max-width: 1180px;
    margin: 120px auto 0;
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 129px 20px 20px 20px;
    padding: 72px 60px 80px;
    text-align: center;
}

.countdown__decor-icon {
    position: absolute;
    top: -13px;
    right: -4px;
    width: 70px;
    height: 70px;
}

.countdown__decor-plus {
    position: absolute;
    right: -53px;
    top: 100%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(5, 35px);
    grid-template-rows: repeat(5, 35px);
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    pointer-events: none;
    z-index: -1;
}

.countdown__decor-plus span {
    color: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown__decor-plus span.red {
    color: var(--error-500);
}
.countdown__decor-plus span.orange {
    color: var(--warning-500);
}

.countdown__title {
    font-weight: 700;
    font-size: 42px;
    line-height: 58px;
    color: var(--dark);
}

.countdown__timer-labels {
    display: flex;
    justify-content: center;
    gap: 110px;
    margin-top: 34px;
}

.countdown__timer-label {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--gray-light);
}

.countdown__timer-digits {
    font-weight: 500;
    font-size: 72px;
    line-height: 1;
    color: var(--gray);
    margin-top: 20px;
    letter-spacing: 2px;
}

.countdown__subtitle {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: var(--gray-light);
    margin-top: 32px;
}

/* ========================================
   SAVINGS ESTIMATOR SECTION
   ======================================== */
.estimator {
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px var(--side-padding) 0;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.estimator__content {
    flex: 1;
}

.estimator__label {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--gray);
}

.estimator__title {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: var(--dark);
    text-transform: capitalize;
    margin-top: 16px;
}

.estimator__desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: rgba(24, 30, 75, 1);
    margin-top: 32px;
}

.estimator__controls {
    margin-top: 48px;
}

.estimator__slider-label {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--gray);
    margin-bottom: 7px;
}

.estimator__slider-row {
    display: flex;
    align-items: center;
    gap: 32px;
}

.estimator__slider-track {
    flex: 1;
    max-width: 523px;
    height: 24px;
    position: relative;
}

.estimator__slider-track input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: linear-gradient(
        to right,
        var(--primary-500) 0%,
        var(--primary-500) var(--slider-progress),
        rgba(241, 244, 240, 1) var(--slider-progress),
        rgba(241, 244, 240, 1) 100%
    );
    border-radius: 3px;
    outline: none;
    margin-top: 9px;
    box-shadow: 0px 1px 4px 0px rgba(159, 157, 161, 1) inset;
}

.estimator__slider-track input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(111, 148, 105, 0.3);
}

.estimator__slider-track input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: rgba(111, 148, 105, 1);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.estimator__slider-value {
    width: 76px;
    height: 44px;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #3f3e5e;
    letter-spacing: 0.1px;
    flex-shrink: 0;
}

.estimator__cta {
    margin-top: 48px;
}

/* Savings Result Card */
.estimator__result {
    width: 400px;
    flex-shrink: 0;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 36px;
    overflow: hidden;
}

.estimator__result-image {
    width: 100%;
    height: 173px;
    object-fit: cover;
    border-radius: 36px 36px 0 0;
}

.estimator__result-body {
    padding: 32px 40px 40px;
    text-align: center;
}

.estimator__result-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    color: var(--dark);
}

.estimator__result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.estimator__result-label {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: #5d617c;
}

.estimator__result-value {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--gray);
}

/* ========================================
   SIGNUP FORM SECTION
   ======================================== */
.signup {
    max-width: 1180px;
    margin: 120px auto 0;
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 129px 20px 20px 20px;
    padding: 72px 200px 80px;
    text-align: center;
}

.signup__decor-icon {
    position: absolute;
    top: -13px;
    right: -6px;
    width: 70px;
    height: 70px;
}

.signup__title {
    font-weight: 700;
    font-size: 42px;
    line-height: 58px;
    color: var(--dark);
}

.signup__subtitle {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: var(--dark);
    margin-top: 16px;
}

.signup__form {
    margin-top: 60px;
    text-align: left;
}

.signup__form-row {
    display: flex;
    gap: 32px;
    margin-bottom: 38px;
}

.signup__field {
    flex: 1;
}

.signup__field-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 33px;
    color: var(--neutral-600);
    margin-bottom: 5px;
}

.signup__field-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(162, 161, 168, 0.1);
    background: transparent;
    padding: 0 0 10px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--neutral-900);
    outline: none;
    transition: border-color 0.2s ease;
}

.signup__field-input:focus {
    border-color: var(--primary-500);
}

.signup__field-input::placeholder {
    color: rgba(14, 39, 65, 1);
}

.signup__cta {
    margin-top: 64px;
    text-align: center;
}

/* ========================================
   FOOTER SPACER
   ======================================== */
.footer-spacer {
    height: 120px;
}

/* ========================================
   DECORATIVE PLUS GRIDS (shared)
   ======================================== */
.plus-grid {
    display: grid;
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.plus-grid span {
    color: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus-grid .red {
    color: var(--error-500);
}
.plus-grid .orange {
    color: var(--warning-500);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* White modal box */
.modal-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    width: 451px;
    max-width: 90%;
    height: 450px;
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: popIn 0.25s ease-out;
    position: relative;
}

.modal-box1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    width: 451px;
    max-width: 90%;
    height: 450px;
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: popIn 0.25s ease-out;
    position: relative;
}

.modal-description {
    margin-top: 24px;
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: rgba(18, 13, 38, 1);
}

.welcometext {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 24px;
}

.modalbtn {
    width: 100%;
    max-width: 370px;
}

.modalbtn button {
    width: 100%;
    margin-top: 24px;
    border-radius: 12px;
    border: none;
    padding: 16px 24px;
    color: white;
}

.donebtn {
    background-color: rgba(111, 148, 105, 1);
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
}

#cancelbtn {
    color: rgba(111, 148, 105, 1);
    border: 2px solid rgba(111, 148, 105, 1);
    background-color: white;
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
}

.close-btn {
    position: absolute;
    right: 30px;
    top: 14px;
    cursor: pointer;
    font-size: 19px;
    font-weight: 300;
    border: 2px solid rgba(126, 136, 151, 1);
    padding: 12px 12px;
    border-radius: 50%;
    width: 24px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 0;
    color: rgba(126, 136, 151, 1);
}

.hidemodal {
    display: none !important;
}

.hidemodal1 {
    display: none !important;
}

.modal-confirm-change-password {
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 1);
}

.confirmationemailtext {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(0, 0, 0, 1);
}

.confirmationemailtext1 {
    margin-top: 24px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(0, 0, 0, 1);
}

.modal-confirm-change-password1 {
    margin-top: 10px;
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(0, 0, 0, 1);
}
/* ========================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --side-padding: 60px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero__bg {
        right: -400px;
    }

    .hero__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero__text {
        padding-top: 40px;
        max-width: 100%;
    }

    .hero__title {
        font-size: 56px;
        line-height: 62px;
    }

    .hero__title-underline {
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        width: 280px;
    }

    .hero__description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta {
        margin-top: 40px;
    }

    .hero__image {
        width: 100%;
        max-width: 500px;
        height: auto;
        margin-top: 40px;
    }

    /* Features */
    .features__title {
        font-size: 36px;
        line-height: 44px;
    }

    .features__decor {
        display: none;
    }

    .features__cards {
        gap: 24px;
    }

    .feature-card {
        width: calc(50% - 12px);
        min-width: 250px;
    }

    /* Membership */
    .membership {
        flex-direction: column;
        gap: 60px;
        padding-top: 80px;
    }

    .membership__content {
        max-width: 100%;
    }

    .membership__title {
        font-size: 36px;
        line-height: 44px;
    }

    .membership__image-wrapper {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 400 / 600;
        margin: 0 auto;
    }

    .membership__image {
        width: 100%;
        height: 100%;
    }

    .membership__badge {
        right: -10px;
    }

    /* Countdown */
    .countdown {
        margin-left: 20px;
        margin-right: 20px;
        padding: 50px 30px 60px;
        border-radius: 20px 60px 20px 20px;
    }

    .countdown__title {
        font-size: 32px;
        line-height: 40px;
    }

    .countdown__timer-labels {
        gap: 50px;
    }

    .countdown__timer-label {
        font-size: 14px;
    }

    .countdown__timer-digits {
        font-size: 48px;
    }

    .countdown__decor-plus {
        display: none;
    }

    /* Estimator */
    .estimator {
        flex-direction: column;
        gap: 60px;
        padding-top: 80px;
    }

    .estimator__title {
        font-size: 36px;
        line-height: 44px;
    }

    .estimator__result {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Signup */
    .signup {
        margin-left: 20px;
        margin-right: 20px;
        padding: 50px 40px 60px;
        border-radius: 60px 20px 20px 20px;
    }

    .signup__title {
        font-size: 32px;
        line-height: 40px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    :root {
        --side-padding: 24px;
    }

    /* Buttons */
    .btn {
        padding: 14px 24px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }

    /* Nav */
    .nav {
        padding: 0 var(--side-padding);
        height: 56px;
    }

    .nav__logo-icon {
        width: 32px;
        height: 52px;
    }

    .nav__logo-text {
        width: 120px;
    }

    .nav .btn {
        padding: 10px 16px;
        font-size: 14px;
        width: auto;
    }

    /* Hero */
    .hero {
        padding-top: 24px;
        padding-bottom: 40px;
    }

    .hero__bg {
        top: -100px;
        right: -600px;
        width: 1200px;
        height: 600px;
    }

    .hero__content {
        margin-top: 30px;
    }

    .hero__text {
        padding-top: 20px;
    }

    .hero__label {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 16px;
    }

    .hero__title {
        font-size: 36px;
        line-height: 42px;
    }

    .hero__title-underline {
        top: 34px;
        width: 180px;
    }

    .hero__description {
        font-size: 14px;
        line-height: 22px;
        margin-top: 20px;
    }

    .hero__cta {
        margin-top: 32px;
    }

    .hero__image {
        max-width: 100%;
        margin-top: 32px;
    }

    /* Features */
    .features {
        padding-top: 60px;
    }

    .features__label {
        font-size: 14px;
    }

    .features__title {
        font-size: 28px;
        line-height: 36px;
    }

    .features__cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }

    .feature-card {
        width: 100%;
        max-width: 300px;
        height: auto;
        padding: 32px 24px 32px;
    }

    .feature-card__title {
        margin-top: 24px;
        font-size: 18px;
    }

    .feature-card__desc {
        font-size: 14px;
        line-height: 22px;
    }

    /* Membership */
    .membership {
        padding-top: 60px;
        gap: 40px;
    }

    .membership__label {
        font-size: 14px;
    }

    .membership__title {
        font-size: 28px;
        line-height: 36px;
    }

    .membership__values {
        gap: 32px;
        margin-top: 40px;
    }

    .value-item {
        gap: 16px;
    }

    .value-item__icon-wrap {
        width: 40px;
        height: 40px;
    }

    .value-item__icon {
        width: 20px;
        height: 20px;
    }

    .value-item__title {
        font-size: 16px;
    }

    .value-item__desc {
        font-size: 14px;
        line-height: 22px;
    }

    .membership__image-wrapper {
        max-width: 300px;
    }

    .membership__badge {
        width: 100px;
        height: 86px;
        right: -5px;
        top: 20px;
    }

    .membership__badge-price {
        font-size: 26px;
    }

    .membership__badge-label {
        font-size: 12px;
    }

    /* Countdown */
    .countdown {
        margin-top: 60px;
        padding: 40px 20px 50px;
        border-radius: 20px 40px 20px 20px;
    }

    .countdown__decor-icon {
        width: 50px;
        height: 50px;
        top: -10px;
        right: 0;
    }

    .countdown__title {
        font-size: 24px;
        line-height: 32px;
    }

    .countdown__timer-labels {
        gap: 24px;
        margin-top: 24px;
    }

    .countdown__timer-label {
        font-size: 12px;
    }

    .countdown__timer-digits {
        font-size: 28px;
        margin-top: 12px;
        letter-spacing: 1px;
    }

    .countdown__subtitle {
        font-size: 14px;
        margin-top: 24px;
    }

    /* Estimator */
    .estimator {
        padding-top: 60px;
        gap: 40px;
    }

    .estimator__label {
        font-size: 14px;
    }

    .estimator__title {
        font-size: 28px;
        line-height: 36px;
    }

    .estimator__desc {
        font-size: 14px;
        margin-top: 20px;
    }

    .estimator__controls {
        margin-top: 32px;
    }

    .estimator__slider-label {
        font-size: 14px;
    }

    .estimator__slider-row {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .estimator__slider-track {
        max-width: 100%;
    }

    .estimator__slider-value {
        width: 100%;
        justify-content: center;
    }

    .estimator__cta {
        margin-top: 32px;
        text-align: center;
    }

    .estimator__result {
        max-width: 100%;
    }

    .estimator__result-body {
        padding: 24px 20px 32px;
    }

    .estimator__result-title {
        font-size: 18px;
    }

    .estimator__result-row {
        flex-direction: column;
        gap: 4px;
        margin-top: 16px;
        text-align: center;
    }

    .estimator__result-label {
        font-size: 16px;
    }

    /* Signup */
    .signup {
        margin-top: 60px;
        padding: 40px 20px 50px;
        border-radius: 40px 20px 20px 20px;
    }

    .signup__decor-icon {
        width: 50px;
        height: 50px;
        top: -10px;
        right: 0;
    }

    .signup__title {
        font-size: 24px;
        line-height: 32px;
    }

    .signup__subtitle {
        font-size: 14px;
    }

    .signup__form {
        margin-top: 40px;
    }

    .signup__form-row {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 24px;
    }

    .signup__field-label {
        font-size: 12px;
    }

    .signup__field-input {
        font-size: 14px;
    }

    .signup__cta {
        margin-top: 16px;
    }

    /* Footer */
    .footer-spacer {
        height: 60px;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    :root {
        --side-padding: 16px;
    }

    .hero__title {
        font-size: 28px;
        line-height: 34px;
    }

    .hero__title-underline {
        top: 26px;
        width: 140px;
    }

    .countdown__timer-digits {
        font-size: 22px;
    }

    .countdown__timer-labels {
        gap: 16px;
    }

    .countdown__timer-label {
        font-size: 10px;
    }
}

@media (max-width: 343px) {
    .nav .btn {
        padding: 10px 16px;
        font-size: 11px;
        width: auto;
    }
}

@media (max-width: 619px) {
    .hero__title-line {
        font-size: 54px;
    }
}
