:root {
    --color-base-green: #09AB58;
    --color-base-yellow: #FFCA14;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-black-900: #1a1a1a;
    --color-black-800: #222222;
    --color-black-700: #333333;
    --color-black-600: #4d4d4d;

    --primary-blue: #0049DB;
    --primary-red: #E53935;
    --light-gray: #6B7280;
    --light-blue: #E3F2FD;
    --light-blue-gradient: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    --white: #FFFFFF;
    --border: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
}

body {
    background: #F1F8FF;
    padding: 2rem;
    min-height: 96vh;
    /* height: calc(100vh - 2rem); */
    display: flex;
    justify-content: center;
    align-items: center;
}

.body-bg1 {
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
}

.body-bg2 {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.content-bg1 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
ol,
figure {
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

textarea,
button {
    font-family: inherit;
}

.itom-promo-container {
    max-width: 1400px;
    margin: 0 auto;
}

.itom-promo-row {
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 0;
    background: #fff;
    border-radius: 24px;
}

/* Left Content Area */
.content-area {
    padding: 2rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

/* .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0066CC 0%, #FF6B35 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: white;
            font-size: 1.25rem;
        } */

.logo-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-black);
}

.headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.headline .highlight {
    color: var(--primary-blue);
}

.value-proposition {
    font-size: 1.125rem;
    color: var(--color-black);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.value-proposition .highlight {
    font-weight: 700;
    color: var(--primary-blue);
}

.features-section {
    margin-bottom: 4rem;
}

.features-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--color-black);
    line-height: 1.6;
}

.checkmark-icon {
    width: 24px;
    height: 24px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkmark-icon::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.875rem;
}

.trusted-section {
    margin-top: 1.5rem;
    text-align: center;
}

.trusted-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--light-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

/* .trusted-logo {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--light-gray);
            opacity: 0.7;
        } */

/* Right Form Area */
.form-area {
    position: sticky;
    top: 2rem;
}

.form-card {
    background: #F0F5FF;
    border-radius: 24px;
    padding: 2.5rem;
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

.form-group {
    margin-bottom: .75rem;position: relative;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.form-label .required {
    color: var(--primary-red);
}
input::placeholder {
  font-weight: 300;
  opacity: 0.4;
}
.form-input,
.form-select, #country_state, #ukcountry_region {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--color-black);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#country_state, #ukcountry_region {margin-top:8px;}
.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-input::placeholder {
    color: var(--light-gray);
}
 .error-field, .error-field1 {
    position: relative;
    background-color: rgba(0,0,0,0);
    padding: 0;
    line-height: normal;
    font-size: 13px;
    font-weight: 300;
    color: #e80e19;
    z-index: 1;
    display: none;
    top: 6px!important;
    text-align: left;
}

 .form-group-item.error, .form-group-item.error1 {
    position: relative
}
.form-select, #country_state, #ukcountry_region {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.privacy-text {
    font-size: 0.875rem;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.privacy-text a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.privacy-text a:hover {
    text-decoration: underline;
}

.download-btn {
    width: 100%;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: inherit;
}

.download-btn:hover {
    background: #C62828;
    transform: translateY(-1px);
}

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

.download-icon {
    width: 20px;
    height: 20px;
}

.itom-promo-footer {
    border-top: 1px solid #ddd;
    text-align: center;
    padding-top: 16px;
    margin-top: 16px;
}

.itom-promo-footer a {
    color: #0049DB
}

/* Responsive Design */
@media (max-width: 1024px) {
    .itom-promo-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
.content-bg1 {display: none;}
    .form-area {
        position: static;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .content-area {
        padding: 1rem 0;
    }

    .logo-section {
        margin-bottom: 2rem;
    }

    .headline {
        font-size: 2rem;
    }

    .form-card {
        padding: 2rem;
    }

    .trusted-logos {
        gap: 1.5rem;
    }

    .trusted-logo {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .headline {
        font-size: 1.75rem;
    }

    .form-subtitle {
        font-size: 1.75rem;
    }
}