:root {
    --color-white: #FFF;
    --color-blue: #0E58C7;
    --color-blue-light: #2268D1;
    --color-blue-bg: #0C111D;
    --color-gray-text: #94969C;
    --color-gray-bg: #161B26;
    --color-gray-border: #333741;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    color: var(--color-white);
}

h2,
h3,
.pre-title {
    font-weight: 600;
    margin: 0;
}

h1 {
    font-size: 60px;
    line-height: 72px;
    margin: 24px 0;
}

.pre-title {
    font-size: 16px;
    line-height: 24px;
}

p {
    font-size: 20px;
    line-height: 30px;
    color: var(--color-gray-text);
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
}

/* HEADER */

header {
    background-color: var(--color-blue-bg);
}

header .container {
    display: flex;
    justify-content: space-between;
}

.webp header .container {
    background-image: url(../img/background-grid.webp);
}

.no-webp header .container {
    background-image: url(../img/background-grid.png);
}

header .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 0;
}

.main-content {
    width: 100%;
    max-width: 585px;
}

.key-point,
.key-point-title {
    width: fit-content;
    display: flex;
    align-items: center;
    border: 1px solid var(--color-gray-border);
    border-radius: 6px;
    padding: 4px 8px 4px 4px;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.key-point-title {
    padding-left: 8px;
}

h1 span,
.main-content p span {
    display: block;
}

.form-outer {
    position: relative;
}

.webp .form-outer:before {
    background-image: url(../img/form-bg.webp);
}

.no-webp .form-outer:before {
    background-image: url(../img/form-bg.png);
}

.form-outer:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background-position: 50%;
    background-repeat: no-repeat;
    width: 560px;
    height: 560px;
}

.form-container {
    position: relative;
    width: 100%;
    max-width: 421px;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-blue-bg);
    border-left: 9px solid var(--color-gray-bg);
    border-right: 9px solid var(--color-gray-bg);
    padding: 35px;
    z-index: 1;
}

.form-container .form-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 7px;
}

.form-container p {
    font-size: 18px;
    line-height: 24px;
}

form {
    margin-top: 22px;
}

form {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

form .form-group {
    display: flex;
    gap: 16px;
}

form .form-group .form-control {
    width: calc(50% - 8px);
}

form .form-control {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

form input,
form select,
form textarea {
    font-size: 16px;
    padding: 14px 18px;
    background-color: var(--color-blue-bg);
    border: 1px solid var(--color-gray-text);
    border-radius: 6px;
    color: var(--color-white);
    outline: 0;
}

.btn {
    display: block;
    width: 100%;
    font-family: inherit;
    color: var(--color-white);
    background-color: var(--color-blue);
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--color-blue);
    border-radius: 8px;
    padding: 13px 24px;
    text-align: center;
    cursor: pointer;
    transition: all .25s ease-in-out;
}

.btn:hover {
    background-color: var(--color-blue-light);
}

button img {
    height: 17px;
}

header form .btn {
    margin-top: 6px;
}

.ticks ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticks ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
}

.ticks ul li:before {
    content: url(../img/tick-square.png);
    width: 24px;
    height: 24px;
}

/* SECTION */

section {
    background-color: var(--color-blue-bg);
    padding: 96px 0;
}

.section-heading {
    margin-bottom: 64px;
}

.section-heading .pre-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-heading h2 {
    display: inline-block;
    font-size: 36px;
    height: 44px;
}

.option {
    position: relative;
}

.option-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-gray-text);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.option h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.option p {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-gray-text);
}

/* PROCESS */

.process {
    background-color: var(--color-gray-bg);
}

.process .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.process .option:not(:last-child):after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
}

.webp .process .option:not(:last-child):after {
    background-image: url(../img/process/arrow-right.webp);
}

.no-webp .process .option:not(:last-child):after {
    background-image: url(../img/process/arrow-right.png);
}

/* CHOOSE */

.webp .choose {
    background-image: url(../img/background-grid.webp);
}

.no-webp .choose {
    background-image: url(../img/background-grid.png);
}

.choose {
    background-repeat: no-repeat;
    background-position: 100% 100%;
}

.choose .container {
    position: relative;
}

.choose .section-heading h2 {
    width: 100%;
    max-width: 410px;
}

.options-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.cta-container {
    position: absolute;
    top: 35px;
    right: 0;
}

.cta-container a.btn {
    display: inline-block;
    width: 100%;
    min-width: 350px;
}

/* TESTIMONIALS */

.testimonials {
    padding: 0;
}

.testimonials .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-gray-bg);
    padding: 55px;
    border-radius: 24px;
}

.testimonials .section-heading {
    max-width: 533px;
    margin-bottom: 0;
}

.testimonials .section-heading .pre-title {
    margin-bottom: 20px;
}

.people {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* READY */

.webp .ready .container {
    background-image: url(../img/background-grid.webp);
}

.no-webp .ready .container {
    background-image: url(../img/background-grid.png);
}

.ready .container {
    background-repeat: no-repeat;
    background-position: 100% 100%;
}

.ready .section-heading {
    width: 100%;
    max-width: 650px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.ready .section-heading p {
    margin-top: 12px;
}

.ready form,
.ready form .form-group,
.ready form .form-group .form-control {
    width: 100%;
    max-width: 100%;
}

/* FOOTER */

footer {
    background-color: var(--color-gray-bg);
    padding: 24px 0;
    color: var(--color-gray-text);
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer p {
    font-size: 18px;
}

.form-response {
    text-align: center;
}

.form-response.success {
    color: green;
}

.form-response.fail {
    color: red;
}

.phone-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.phone-prefix {
    position: absolute;
    left: 15px;
    color: #fff;
    font-size: 16px;
    z-index: 1;
}

#phone {
    padding-left: 45px !important;
}
.phone-input-container {
    position: relative;
    display: flex;
    align-items: center;
}
.option p {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-gray-text);
}

/* PROCESS */

.process {
    background-color: var(--color-gray-bg);
}

.process .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.process .option:not(:last-child):after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
}

.webp .process .option:not(:last-child):after {
    background-image: url(../img/process/arrow-right.webp);
}

.no-webp .process .option:not(:last-child):after {
    background-image: url(../img/process/arrow-right.png);
}

/* CHOOSE */

.webp .choose {
    background-image: url(../img/background-grid.webp);
}

.no-webp .choose {
    background-image: url(../img/background-grid.png);
}

.choose {
    background-repeat: no-repeat;
    background-position: 100% 100%;
}

.choose .container {
    position: relative;
}

.choose .section-heading h2 {
    width: 100%;
    max-width: 410px;
}

.options-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.cta-container {
    position: absolute;
    top: 35px;
    right: 0;
}

.cta-container a.btn {
    display: inline-block;
    width: 100%;
    min-width: 350px;
}

/* TESTIMONIALS */

.testimonials {
    padding: 0;
}

.testimonials .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-gray-bg);
    padding: 55px;
    border-radius: 24px;
}

.testimonials .section-heading {
    max-width: 533px;
    margin-bottom: 0;
}

.testimonials .section-heading .pre-title {
    margin-bottom: 20px;
}

.people {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* READY */

.webp .ready .container {
    background-image: url(../img/background-grid.webp);
}

.no-webp .ready .container {
    background-image: url(../img/background-grid.png);
}

.ready .container {
    background-repeat: no-repeat;
    background-position: 100% 100%;
}

.ready .section-heading {
    width: 100%;
    max-width: 650px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.ready .section-heading p {
    margin-top: 12px;
}

.ready form,
.ready form .form-group,
.ready form .form-group .form-control {
    width: 100%;
    max-width: 100%;
}

/* FOOTER */

footer {
    background-color: var(--color-gray-bg);
    padding: 24px 0;
    color: var(--color-gray-text);
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer p {
    font-size: 18px;
}

.form-response {
    text-align: center;
}

.form-response.success {
    color: green;
}

.form-response.fail {
    color: red;
}
#country_code {
    padding: 12px;
    font-size: 16px;
    width: 100%;           /* Full width of parent */
    min-width: 180px;
    max-width: 320px;      /* Change this to your preferred width */
    height: 48px;
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid var(--color-gray-text); /* Optional, for border */
    background: var(--color-blue-bg);         /* Match your site */
    color: var(--color-white);                /* Match your site */
}
