:root {
    --orange: #ffab1f;
    --orange-dark: #f39a00;
    --dark: #373342;
    --text: #62616b;
    --light: #f8f9f7;
    --border: #e7e7e8;
    --green: #239653;
}

* {
    box-sizing: border-box;
}

/* =========================
   HEADER
========================= */

.site-header {
    height: 82px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    background: rgba(255,255,255,.96);
    position: relative;
    z-index: 10;
}

.header-inner {
    width: min(1400px, calc(100% - 80px));
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 46px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -3px;
    color: #30303a;
}

.logo .o {
    color: var(--orange);
    position: relative;
}

.logo .o::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    background: var(--orange);
    border-radius: 50%;
    left: 12px;
    top: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 58px;
    margin-left: 80px;
}

.main-nav a,
.header-actions a {
    text-decoration: none;
    color: var(--dark);
    font-size: 17px;
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 34px;
}

.signin {
    color: #596683 !important;
}

.header-btn {
    background: var(--orange);
    color: #fff !important;
    padding: 15px 28px;
    border-radius: 6px;
    transition: .2s ease;
}

.header-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

/* =========================
   HERO
========================= */

.pricing-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 42%,
            rgba(255,174,40,.13),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fff 0%,
            #fff 65%,
            #fffdf8 100%
        );
}

.pricing-section::after {
    content: "";
    position: absolute;
    right: -100px;
    top: 50px;
    width: 300px;
    height: 300px;

    background-image: radial-gradient(
        var(--orange) 1.5px,
        transparent 1.5px
    );

    background-size: 18px 18px;
    opacity: .18;
    mask-image: linear-gradient(
        90deg,
        transparent,
        black
    );

    pointer-events: none;
}

.pricing-container {
    width: min(1280px, calc(100% - 60px));
    margin: auto;
    min-height: calc(100vh - 82px);

    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 85px;

    align-items: center;
    position: relative;
    z-index: 2;
}

/* =========================
   LEFT SIDE
========================= */

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: .6px;
    color: var(--orange);
    text-transform: uppercase;

    margin-bottom: 22px;
}

.eyebrow::before {
    content: "";
    width: 27px;
    height: 3px;
    background: var(--orange);
    border-radius: 10px;
}

.hero-title {
    font-size: 35px;
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
    color: var(--dark);
}

.hero-title em {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    color: var(--dark);
    margin-top: 5px;
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: -9px;
    height: 7px;
    background: var(--orange);
    border-radius: 100%;
    transform: rotate(-1deg);
}

.hero-description {
    max-width: 570px;
    margin: 30px 0 32px;

    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
}

/* =========================
   BENEFIT BOX
========================= */

.benefit-box {
    max-width: 590px;
    border: 1px solid #ececec;
    background: rgba(255,255,255,.78);
    border-radius: 18px;
    padding: 25px 24px 0px 24px;
    box-shadow:
        0 10px 35px rgba(45,42,54,.045);
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px 35px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 14px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

    border-radius: 50%;
    background: #fff0d4;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 21px;
}

.benefit-text {
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
    color: var(--dark);
    padding-top: 4px;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    margin-top: 32px;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.check {
    width: 20px;
    height: 20px;
    min-width: 20px;

    border: 2px solid var(--green);
    color: var(--green);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    font-weight: 800;
}

/* =========================
   FORM CARD
========================= */

.form-wrapper {
    position: relative;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 24px;

    padding: 42px 40px 0;

    box-shadow:
        0 28px 65px rgba(48,44,58,.11);

    position: relative;
    overflow: hidden;
}

/* orange corner */

.pricing-card::before {
    content: "";
    position: absolute;
    right: -1px;
    top: -1px;

    width: 80px;
    height: 73px;

    background: var(--orange);

    clip-path: polygon(
        100% 0,
        100% 100%,
        0 0
    );
}

.step {
    display: inline-flex;
    align-items: center;

    border: 1px solid var(--orange);
    color: var(--orange);

    border-radius: 12px;
    padding: 8px 14px;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 21px;
}

.form-title {
    margin: 0;
    font-size: 37px;
    line-height: 1.15;
    letter-spacing: -1.5px;
    font-weight: 700;
}

.form-title span {
    color: var(--orange);
}

.form-subtitle {
    margin: 13px 0 28px;

    color: var(--text);
    font-size: 16px;
    line-height: 1.55;
    max-width: 530px;
}

.field-label {
    display: block;
    margin-bottom: 9px;

    font-size: 14px;
    font-weight: 700;
}

.input-wrap {
    position: relative;
}

.email-input {
    width: 100%;
    height: 65px;

    border: 1px solid #d9d9dd;
    border-radius: 12px;

    padding: 0 55px 0 20px;

    font-family: inherit;
    font-size: 16px;
    color: var(--dark);

    outline: none;
    transition: .2s ease;
}

.email-input::placeholder {
    color: #9ca0ad;
    font-weight: 400: 
    font-size:14px;
}

.email-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255,171,31,.12);
}

.email-icon {
    position: absolute;
    right: 20px;
    top: 50%;

    transform: translateY(-50%);

    color: #737b8d;
    font-size: 20px;
}

.privacy {
    display: flex;
    align-items: center;
    gap: 15px;

    background: #eff9f1;
    border-radius: 11px;

    padding: 15px 17px;
    margin-top: 20px;

    color: #285d3b;
    font-size: 14px;
    line-height: 1.4;
}

.privacy-icon {
    font-size: 22px;
    min-width: 24px;
}

.submit-btn {
    width: 100%;
    height: 64px;

    border: 0;
    border-radius: 12px;

    background: var(--orange);
    color: #fff;

    font-family: inherit;
    font-size: 17px;

    margin-top: 8px;

    cursor: pointer;

    box-shadow:
        0 10px 20px rgba(255,171,31,.20);

    transition: .2s ease;
}

.submit-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow:
        0 14px 25px rgba(255,171,31,.27);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.pricing-form-alert {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.45;
    border-radius: 10px;
}

.pricing-form .cf-turnstile {
    margin-top: 16px;
}

/* =========================
   WHAT YOU GET
========================= */

.what-you-get {
    margin-top: 10px;
    padding: 22px 0 30px;
}

.what-title {
    display: flex;
    align-items: center;
    gap: 16px;

    color: #92929b;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 20px;
}

.what-title::before,
.what-title::after {
    content: "";
    height: 1px;
    background: #e4e4e4;
    flex: 1;
}

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

.form-benefit {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 13px;
    line-height: 1.45;
    color: #51515c;
    font-weight: 500;
}

.form-benefit-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;

    border-radius: 50%;

    background: #f5f0ff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
}

.delivery {
    margin: 31px -37px 2px;

    padding: 19px 24px;

    background: linear-gradient(
        90deg,
        #fffaf0,
        #fffdf8
    );

    display: flex;
    align-items: center;
    border-radius: 0px 0px 15px 15px;
    gap: 14px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    border: 2px solid #fff;

    background:
        linear-gradient(
            135deg,
            #ddd,
            #999
        );

    margin-left: -7px;
}

.avatar:first-child {
    margin-left: 0;
}

.delivery-text {
    font-size: 13px;
    line-height: 1.4;
}

.delivery-text strong {
    font-size: 14px;
}

/* =========================
   DECORATION
========================= */

.wave {
    position: absolute;
    bottom: -90px;
    left: -80px;

    width: 550px;
    height: 180px;

    opacity: .25;

    border-top: 2px solid var(--orange);
    border-radius: 50%;
    transform: rotate(5deg);
}

.wave::before,
.wave::after {
    content: "";
    position: absolute;

    left: 0;
    width: 100%;
    height: 100%;

    border-top: 1px solid var(--orange);
    border-radius: 50%;
}

.wave::before {
    top: 10px;
}

.wave::after {
    top: 20px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 30px;
        margin-left: 30px;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 760px;
        gap: 50px;
    }

    .eyebrow {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-box {
        margin-left: auto;
        margin-right: auto;
    }

    .trust-points {
        text-align: left;
    }
}

@media (max-width: 800px) {

    .site-header {
        height: 70px;
    }

    .header-inner {
        width: calc(100% - 35px);
    }

    .main-nav {
        display: none;
    }

    .header-actions {
        gap: 15px;
    }

    .signin {
        display: none;
    }

    .header-btn {
        padding: 11px 18px;
        font-size: 14px !important;
    }

    .logo {
        font-size: 38px;
    }

    .pricing-container {
        width: calc(100% - 30px);
        padding: 50px 0 65px;
    }

    .hero-title {
        font-size: 50px;
        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 16px;
    }

    .pricing-card {
        padding: 30px 24px 0;
        border-radius: 20px;
    }

    .form-title {
        font-size: 30px;
    }

    .delivery {
        padding: 17px 24px;
    }
}

@media (max-width: 560px) {

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .trust-points {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-benefits {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 43px;
    }

    .pricing-card::before {
        width: 75px;
        height: 75px;
    }

    .pricing-card::after {
        font-size: 20px;
        right: 14px;
        top: 14px;
    }

    .privacy {
        align-items: flex-start;
    }
}

