@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Roboto", sans-serif;
    background-color: #000812;
}

.hero-section {
    background: linear-gradient(to bottom, #eb3c5b, #000812);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 150px 1rem;
    position: relative;
}

.brand {
    font-family: "Inter", sans-serif;
    position: absolute;
    top: 46px;
    left: 121px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 16px;
    color: #fff;
}

.brand span {
    color: #000812;
}

.hero-content {
    text-align: center;
}

.hero-heading {
    font-family: "Inter", sans-serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.hero-subheading {
    font-size: 16px;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    color: #efefef;
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 2rem;
    }
}

.kit-section {
    padding: 60px 20px;
    height: auto;
}

.kit-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 52px;
}

.kit-features {
    flex: 1 1 300px;
}

.kit-heading {
    font-size: 30px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    margin-bottom: 80px;
    position: relative;
    color: #fff;
}

.kit-underline-taper {
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 150px;
    height: 6px;
    background: linear-gradient(90deg, #eb3c5b, #eb3c5b);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.kit-feature {
    display: flex;
    align-items: stretch;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(239, 239, 239, 0.4);
}


.kit-feature-color {
    width: 100px;
    flex-shrink: 0;
}

.kit-feature-text {
    flex: 1;
    padding: 43px;
    font-weight: 500;
    background: #192029;
    font-size: 24px;
    color: #fff;
}

.kit-form-box {
    flex: 1 1 300px;
    background: #fff;
    border-left: 2px solid #eceff1;
    padding: 32px;
    margin-top: 105px;
    border-radius: 20px;
}

.kit-form-group {
    margin-bottom: 25px;
}

.kit-form-group label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 500;
}

.kit-form-group label span {
    color: red;
}

.kit-form-group input[type="text"],
.kit-form-group input[type="email"],
.kit-form-group input[type="tel"] {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    background: #fafafa;
    font-size: 1rem;
}

.lable-checkbox {
    margin-bottom: 20px !important;
}

.kit-checkbox-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.kit-checkbox-group label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    color: #333;
}

.kit-checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #e4e4e7;
    border-radius: 6px;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #fff;
}

.kit-checkbox-group input[type="checkbox"]:checked {
    background-color: #007f66;
    /* teal */
    border-color: #007f66;
}

.kit-checkbox-group input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.kit-robot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    padding: 14px;
    background-color: #fafafa;
    max-width: 400px;
    margin-top: 20px;
}

.container {
    align-items: normal !important;
}

.kit-robot label {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    gap: 10px;
}

.kit-robot input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #e4e4e7;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    background-color: #fff;
}

.kit-robot input[type="checkbox"]:checked {
    background-color: #007f66;
    /* teal check */
    border-color: #007f66;
}

.kit-robot input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 7px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.kit-robot img {
    height: 60px;
}

.kit-form button {
    display: inline-block;
    background: #007f66;
    color: #fff;
    padding: 11px 49px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.kit-form button:hover {
    background: #005e4d;
}

@media (max-width: 768px) {
    .kit-container {
        flex-direction: column;
    }
}

.features-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
    height: auto;
}

/* Section Title */
.section-title {
    font-family: "Inter", sans-serif;
    font-size: 30px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 40px;
    position: relative;
}

/* Grid Container */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* Feature Card */
.feature-card {
    color: #fff;
    border: 1px solid rgb(239, 239, 239, 0.4);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease-in-out;
    background: #192029;
}

/* Card Header */
.card-header {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    padding: 46px 24px;
    border-bottom: 1px solid rgb(239, 239, 239, 0.4);
    color: #fff;
    background: #242b33;
}


/* List Styling */
.feature-card ul {
    list-style: none;
    margin: 0;
    padding: 22px 39px;
}

.feature-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
}

.feature-card li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #eb3c5b;
    font-size: 20px;
    font-weight: 500;
}

/* ✅ Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 26px;
        text-align: center;
    }

    .features-section {
        padding: 40px 15px;
    }
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
    }

    .feature-card {
        width: 100%;
    }

    .section-title {
        font-size: 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .card-header {
        font-size: 16px;
        padding: 15px;
    }

    .feature-card ul {
        padding: 12px 18px;
    }

    .feature-card li {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

.build-scale-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: left;
    height: auto;
}

/* Section Heading */
.section-heading {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}

.section-heading::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, #00b894, #1abc9c, #81ecec);
    margin-top: 6px;
}

/* Main Grid (2 + 2 layout) */
.scale-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* Cards */
.scale-card {
    background: #192029;
    padding: 43px 24px;
    text-align: center;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    min-width: 300px;
    flex: 1 1 calc(50% - 20px);
    max-width: 63vh;
    transition: transform 0.2s ease-in-out;
}

/* Center Card (last one) */
.center-row {
    margin-top: 20px;
    justify-content: center;
}

.center-card {
    max-width: 600px;
    width: 100%;
}

/* ✅ Responsive */
@media (max-width: 768px) {
    .section-heading {
        text-align: center;
        font-size: 24px;
    }

    .scale-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.section-title-2 {
    text-align: center;
    padding: 20px;
    padding-bottom: 60px;

}

.section-title-2 h2 {
    font-size: 36px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    color: #fff;
}

.title-underline {
    width: 200px;
    height: 6px;
    background: radial-gradient(ellipse at center,
            #eb3c5b 0%,
            #eb3c5b 60%,
            transparent 100%);
    margin: 0 auto 30px auto;
    border-radius: 50%;
}

.section-title-2 p {
    font-size: 20px;
    color: #efefef;
}

.inquiry-section {
    background: #192029;
    padding: 50px 20px;
}

.container {
    max-width: 1150px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.form-container {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}

.kit-heading-center {
    text-align: center;
}

.title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
}

.title::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: #009977;
    margin-top: 6px;
}

.subtitle {
    margin-bottom: 25px;
    font-size: 16px;
    color: #555;
}

.hs-form {
    max-width: 500px;
    margin: 0 auto;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
}

/* Style labels */
.hs-form label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
}

/* Style required field asterisks */
.hs-form label .hs-form-required {
    color: red;
    margin-left: 2px;
}

/* Style text inputs */
.hs-form input[type="text"],
.hs-form input[type="email"],
.hs-form input[type="tel"],
.hs-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background-color: #fafafa;
    font-size: 14px;
    margin-top: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s, background-color 0.3s;
}

.hs-form input[type="text"]:focus,
.hs-form input[type="email"]:focus,
.hs-form input[type="tel"]:focus,
.hs-form textarea:focus {
    border-color: #008060;
    /* green focus */
    background-color: #fff;
    outline: none;
}

/* Style checkboxes */
.hs-form input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.hs-form input[type="checkbox"]:checked {
    background-color: #008060;
    border-color: #008060;
}

.hs-form input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Checkbox labels inline */
.hs-form .hs-form-checkbox {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
}

/* Style submit button */
.hs-form input[type="submit"] {
    background-color: #008060;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 14px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.hs-form input[type="submit"]:hover {
    background-color: #005f47;
}

/* Style reCAPTCHA spacing */
.hs-form .grecaptcha-badge,
.hs-form iframe[src*="recaptcha"] {
    margin-top: 20px;
}

/* Spacing between fields */
.hs-form .hs-form-field {
    margin-bottom: 20px;
}

/* Remove HubSpot branding footer */
.hs-form .hs-footer {
    display: none;
}

/* Form Elements */
form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 18px;
}

form span {
    color: red;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 25px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    color: #a5a5a5;
}

.inquiry-lable {
    margin-bottom: 20px !important;
}

.checkbox-group {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    align-items: center;
}

.margin-bottom {
    margin-bottom: 15px !important;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.phone-input {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.phone-input span {
    background: #f3f3f3;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.phone-input input {
    flex: 1;
}

/* Captcha box */
.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 20px;
    margin-top: 5px;
}

.captcha-box img {
    height: 24px;
    margin-left: auto;
}

/* Button */
.btn-submit {
    background: #00796b;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
}

.btn-submit:hover {
    background: #006653;
}

/* Image container */
.image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ✅ Responsive */
@media (max-width: 850px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .checkbox-group {
        justify-content: center;
    }

    form label {
        text-align: left;
    }
}

.white-space {
    height: 11vh;
}

.footer {
    background-color: #051120;
    color: white;
    padding: 60px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
    height: 27px;
    margin-bottom: 50px;
}

.footer-left {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.logo-slash {
    color: #eb3c5b;
    margin-right: 5px;
    font-size: 20px;
}

.footer-right {
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-right a {
    background-color: white;
    color: black;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.footer-right a:hover {
    background-color: #ccc;
}

hr {
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    margin: 15px 0;
}

.footer-bottom {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 25px;
}

/* ✅ Responsive Design */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 30px !important;
    }

    .brand {
        left: 30px;
    }

    .hero-heading {
        margin-top: 60px;
        font-size: 40px;
    }

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

    .kit-heading {
        font-size: 25px;
        margin-bottom: 60px;
    }

    .kit-feature-text {
        padding: 17px;
        font-size: 22px;
    }

    .kit-section {
        height: auto;
    }

    .kit-container {
        gap: 0;
    }

    .kit-form-box {
        border-left: none;
        padding: 20px;
        margin: 0;
    }

    .features-section {
        height: auto;
    }

    .build-scale-section {
        height: auto;
    }

    .footer {
        padding: 30px;
    }

    .footer-container {
        margin-bottom: 80px;
    }
}

@media (max-width: 425px) {
    .brand {
        display: flex;
        justify-content: center !important;
        left: 110px;
    }

    .footer-container {
        flex-direction: row;
        justify-content: center !important;
    }

    .footer-right {
        margin-top: 12px;
    }

    .hero-heading {
        font-size: 24px;
    }

    .hero-subheading {
        font-size: 12px;
    }

    .kit-heading {
        font-size: 20px;

    }

    .kit-feature-text {
        font-size: 20px;
    }

    .scale-card {
        font-size: 15px;
    }

    .section-title-2 h2 {
        font-size: 24px;
    }
}