* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: fit-content;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-image: url('Background-WithoutLightsa.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outer-container {
    width: 1344px;
    max-width: 100%;
    max-height: 804px;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.container {
    display: flex;
    width: 100%;
    max-height: 804px;
    height: 678px;
    gap: 0;
    align-items: flex-start;
    background-color: rgba(235, 247, 254, 0.1);
    padding: 32px;
    border-radius: 8px;
}

/* Left Column */
.left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    background: #ebf7fe;
    border-radius: 8px;
    padding: 40px 32px 24px;
    margin-bottom: 32px;
    overflow: visible;
    height: fit-content;
}

/* Reduce bottom margin for all signup pages */
.step1-page .left-column,
.step2-page .left-column,
.step3-page .left-column {
    margin-bottom: 0;
}

/* Make all step containers have consistent height on desktop */
.step1-page .container,
.step2-page .container,
.step3-page .container {
    align-items: stretch;
    min-height: 650px;
}

.step1-page .left-column {
    height: auto;
    align-self: stretch;
    justify-content: space-between;
    gap: 0px;
}

.step1-page .right-column {
    align-self: stretch;
}

.signup-card {
    background: #ffffff;
    border: 1px solid #d2edfe;
    border-radius: 8px;
    padding: 32px;
    width: 100%;
    max-width: 484px;
    flex-shrink: 0;
    box-shadow: 0px 161px 45px 0px rgba(30, 121, 178, 0),
        0px 103px 41px 0px rgba(30, 121, 178, 0.01),
        0px 58px 35px 0px rgba(30, 121, 178, 0.02),
        0px 26px 26px 0px rgba(30, 121, 178, 0.03),
        0px 6px 14px 0px rgba(30, 121, 178, 0.04);
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    height: 32px;
    width: auto;
    display: block;
}

.header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    margin-bottom: 0;
}

.header-text {
    flex: 1;
}

.title {
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 0;
    font-family: 'Inter', sans-serif;
}

.subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #334155;
    line-height: 20px;
    font-family: 'Inter', sans-serif;
}

.progress-indicator {
    flex-shrink: 0;
    margin-left: 16px;
    margin-top: 0;
}

.signup-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 24px;
    overflow: visible;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    overflow: visible;
    position: relative;
    max-width: 100%;
    width: 100%;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #18181b;
    line-height: 1;
    margin-bottom: 8px;
}

.form-input {
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #e4e4e7;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #0f172a;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #068cdf;
}

.form-input::placeholder {
    color: #71717a;
}

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

.checkbox {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #068cdf;
}

.checkbox-label {
    font-size: 14px;
    font-weight: 400;
    color: #0f172a;
    line-height: 16px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.checkbox-label.error {
    color: #DC2626;
}

.checkbox.error {
    accent-color: #DC2626;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.25);
    border-radius: 3px;
}

.link {
    color: #068cdf;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.link:hover {
    opacity: 0.8;
}

.continue-button {
    width: 100%;
    height: 36px;
    background: #068cdf;
    color: #f8fafc;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 0px;
}

.continue-button:hover {
    background: #0578b8;
}

.continue-button:active {
    background: #046399;
}

.no-card-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #64748b;
    line-height: 20px;
    margin-bottom: 0;
    margin-top: 16px;
}

.credit-card-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.login-link {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #0f172a;
    line-height: 1.1;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
}

/* Right Column */
.right-column {
    flex: 1;
    max-width: 600px;
    color: #ffffff;
    padding: 40px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* Make right-column fill available space on index page */
.step1-page .right-column {
    align-self: stretch;
}

.right-inner-container {
    padding: 40px;
    padding-bottom: 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 0;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
    display: flex;
    width: 100%;
}

.info-point {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    position: relative;
    justify-content: flex-end;
    align-items: flex-start;
}

.info-point:first-child::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 22px;
    width: 0;
    height: 69.5px;
    border-left: 2px dashed rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 0;
}

.info-point:last-child {
    margin-bottom: 0;
}

.point-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.point-number {
    width: 22px;
    height: 22px;
    border-radius: 7.333px;
    background: #ffffff;
    color: #237cb3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14.667px;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.1;
}

.point-headline {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0;
    font-family: 'Inter', sans-serif;
}

.point-description {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    padding-left: 30px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

/* Step 2 - Form Row Layout */
.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
    overflow: visible;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 16px;
    overflow: visible;
    min-width: 0;
    max-width: 100%;
}

/* Phone Input with Country Code */
.phone-input-wrapper {
    display: flex;
    gap: 0;
    align-items: center;
    border: 1px solid #e4e4e7;
    border-radius: 6px;
    background: #ffffff;
    overflow: visible;
    transition: border-color 0.2s;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.phone-input-wrapper:focus-within {
    border-color: #068cdf;
}

.phone-input-wrapper {
    overflow: visible;
}

#basic {
    position: relative;
}

.country-code-select {
    height: 40px;
    padding: 8px 8px 8px 12px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%2371717a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 20px;
    border-right: 1px solid #e4e4e7;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    border-radius: 6px 0 0 6px;
    min-width: fit-content;
    width: auto;
}

.country-code-select:focus {
    outline: none;
    z-index: 20;
}

.phone-input-wrapper .flagstrap {
    width: auto;
    min-width: 72px;
    height: 40px;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    position: relative;
}

.phone-input-wrapper .flagstrap .dropdown-toggle {
    width: 100%;
    height: 40px;
    border: none;
    background: #f8fafc;
    color: #0f172a;
    padding: 0 6px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 6px 0 0 6px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.phone-input-wrapper .flagstrap .dropdown-toggle::after {
    content: none;
}

.phone-input-wrapper .flagstrap .dropdown-toggle:focus {
    outline: none;
}

.phone-input-wrapper .flagstrap .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 4px);
    width: 240px;
    max-height: 300px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    z-index: 9999;
    padding: 6px 0;
    box-shadow: 0px 12px 24px rgba(15, 23, 42, 0.12);
    pointer-events: auto;
}

.phone-input-wrapper .flagstrap .dropdown-menu.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.phone-input-wrapper .flagstrap .dropdown-menu li {
    list-style: none;
}

.phone-input-wrapper .flagstrap .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: #0f172a;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
}

.phone-input-wrapper .flagstrap .dropdown-menu li+li {
    border-top: 1px solid #f1f5f9;
}

.phone-input-wrapper .flagstrap .dropdown-menu a:hover {
    background: #f1f5f9;
}

.phone-input-wrapper .flagstrap-icon {
    float: none;
    margin-top: 0;
}

.phone-input-wrapper .flagstrap [class^="flagstrap-selected-"] {
    display: flex;
    align-items: center;
    gap: 0;
}

.phone-input-wrapper .flagstrap [class^="flagstrap-selected-"] i {
    margin-right: 4px !important;
}

.phone-input {
    border: none !important;
    border-radius: 0 6px 6px 0 !important;
    flex: 1;
    min-width: 0;
    width: 100%;
}

.phone-input:focus {
    border: none !important;
    outline: none !important;
}

/* Step 2 - Trial Features */
.trial-features {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
    width: 100%;
}

.feature-icon-row {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: contain;
    max-width: 100%;
    margin-bottom: 8px;
}

.feature-icon-img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
}

.feature-icon-card {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-card.blue {
    background: linear-gradient(135deg, #068CDF 0%, #0578B8 100%);
}

.feature-icon-card.orange {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.feature-icon-card.purple {
    background: linear-gradient(135deg, #A855F7 0%, #9333EA 100%);
}

.feature-description {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
}

.feature-cards-grid {
    display: flex;
    gap: 8px;
    width: 100%;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}

.feature-card-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: contain;
    max-width: 100%;
}

.feature-card-text {
    flex: 1;
}

.feature-card-title {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.trial-benefits {
    background: rgba(235, 247, 254, 0.1);
    border-radius: 8px;
    padding: 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 16px;
}

.trial-benefits-title {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.trial-benefits-list {
    display: flex;
    gap: 16px;
    align-items: center;
}

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

.benefit-number {
    width: 22px;
    height: 22px;
    background: #ffffff;
    color: #237cb3;
    border-radius: 7.333px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14.667px;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
}

.benefit-text {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Step 3 - Select/Dropdown Styling */
.form-select {
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #e4e4e7;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #0f172a;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    width: 100%;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-select:focus {
    outline: none;
    border-color: #068cdf;
}

.form-select option {
    color: #0f172a;
}

/* Step 3 - Testimonials */
.right-column-testimonials {
    padding: 40px;
    padding-right: 0px;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.testimonial-card {
    background: rgba(235, 247, 254, 0.1);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0px 135px 38px 0px rgba(12, 110, 171, 0),
        0px 87px 35px 0px rgba(12, 110, 171, 0.02),
        0px 49px 29px 0px rgba(12, 110, 171, 0.06),
        0px 22px 22px 0px rgba(12, 110, 171, 0.11),
        0px 5px 12px 0px rgba(12, 110, 171, 0.13);
}

.testimonial-card:nth-child(2) {
    width: 100%;
    max-width: 420px;
}

.testimonial-quote {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.testimonial-author {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
    font-family: 'Inter', sans-serif;
}

.author-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.company-badge {
    background: #ffffff;
    border-radius: 100px;
    padding: 9px 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-name {
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
}

.company-logo {
    height: 20px;
    width: auto;
    display: block;
    object-fit: contain;
}

.trusted-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    position: relative;
    width: 100%;
}

.trusted-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 104px;
    background: linear-gradient(to right,
            rgba(54, 135, 186, 0.5) 0%,
            rgba(51, 134, 185, 0) 50%,
            rgba(53, 134, 186, 0.5) 100%);
    pointer-events: none;
}

.trusted-title {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin: 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
}

.logos-row {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.logo-text {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

.trusted-logo {
    height: 32px;
    width: fit-content;
    display: block;
    object-fit: contain;
    opacity: 0.9;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

/* Ticker Slider Styles */
.ticker-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
}

.ticker-mask-left,
.ticker-mask-right {
    display: none;
}

.ticker-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 100px,
            black calc(100% - 100px),
            transparent 100%);
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 100px,
            black calc(100% - 100px),
            transparent 100%);
}

.ticker-track {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: ticker-scroll 25s linear infinite;
    will-change: transform;
    width: fit-content;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-track:hover {
    animation-play-state: paused;
}

/* Ensure logos maintain proper spacing and don't shrink */
.ticker-track .trusted-logo {
    margin: 0;
}


/* Centered Auth Pages (Sign In, Forgot Password, etc.) */
.auth-outer-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.auth-container {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.auth-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-logo-image {
    height: 32px;
    width: auto;
    display: block;
}

.auth-card {
    background: #ffffff;
    border: 1px solid #d2edfe;
    border-radius: 8px;
    padding: 40px 32px;
    width: 100%;
    box-shadow: 0px 161px 45px 0px rgba(30, 121, 178, 0),
        0px 103px 41px 0px rgba(30, 121, 178, 0.01),
        0px 58px 35px 0px rgba(30, 121, 178, 0.02),
        0px 26px 26px 0px rgba(30, 121, 178, 0.03),
        0px 6px 14px 0px rgba(30, 121, 178, 0.04);
}

.auth-title {
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: 0;
    font-family: 'Inter', sans-serif;
}

.auth-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 0;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 8px;
}

.checkbox-group-auth {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-footer-link {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.auth-footer-link a {
    color: #ffffff;
}

.auth-message {
    font-size: 14px;
    font-weight: 400;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
}

.auth-footer-text {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    margin-top: 0;
    font-family: 'Inter', sans-serif;
}

.auth-footer-text a {
    color: #ffffff;
}

/* Setup Page Styles */
.setup-page {
    overflow-y: auto;
}

.setup-outer-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.setup-card {
    background: #ffffff;
    border: 1px solid #d2edfe;
    border-radius: 8px;
    padding: 48px 40px;
    width: fit-content;
    height: fit-content;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08),
        0px 1px 3px 0px rgba(0, 0, 0, 0.05);
}

.setup-header {
    text-align: center;
    margin-bottom: 40px;
}

.setup-title {
    font-size: 32px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: 0;
    font-family: 'Inter', sans-serif;
}

.setup-title-mobile {
    display: none;
}

.setup-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #334155;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.setup-subtitle-mobile {
    display: none;
}

.setup-options {
    display: flex;
    gap: 24px;
    width: 100%;
}

.setup-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 32px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #ABDDFD;
    transition: all 0.2s;
    position: relative;
}

.setup-option:hover {
    border-color: #ABDDFD;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1),
        0px 2px 6px 0px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.setup-option-recommended {
    border-color: #ABDDFD;
    background: #f8fafc;
}

.setup-recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #068cdf;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
    text-transform: uppercase;
}

.setup-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #ebf7fe;
    border: 1px solid #068cdf;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.setup-option-icon svg {
    width: 24px;
    height: 24px;
}

.setup-option-title {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.setup-option-description {
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.setup-option-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.setup-option-features li {
    font-size: 14px;
    font-weight: 400;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.setup-option-features .check-icon {
    width: 16px;
    height: 16px;
    color: #068cdf;
    flex-shrink: 0;
}

.setup-option-features li:last-child {
    margin-bottom: 0;
}

.setup-button {
    width: 100%;
    height: 36px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
    border: none;
    margin-top: auto;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.setup-button-primary {
    background: #068cdf;
    color: #f8fafc;
}

.setup-button-primary:hover {
    background: #0578b8;
}

.setup-button-primary:active {
    background: #046399;
}

.setup-button-secondary {
    background: #068cdf;
    color: #f8fafc;
}

.setup-button-secondary:hover {
    background: #0578b8;
}

.setup-button-secondary:active {
    background: #046399;
}

/* Loader Content (replaces card content) */
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    height: fit-content;
    width: fit-content;
    margin: 0;
    gap: 12px;
    max-width: none;
    min-width: 0;
}

#loaderContent {
    height: fit-content !important;
    width: fit-content !important;
    max-width: none;
    min-width: 0;
    padding: 20px !important;
    margin: 0 !important;
}

/* Remove padding from setup-card when loader is visible */
.setup-card.loader-active {
    padding: 0;
}

.setup-card.loader-active #loaderContent {
    padding: 20px !important;
    margin: 0 !important;
}

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

.loader-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: spin 1.4s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loader-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
}

.loader-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Responsive adjustments - Right column content scaling (900px - 1200px) */
@media (max-width: 1200px) {

    /* Prevent right column overflow */
    .right-column {
        max-width: 450px;
        padding: 32px;
        padding-right: 16px;
        padding-bottom: 0;
        overflow: hidden;
        min-width: 0;
    }

    .right-inner-container {
        padding: 24px;
        padding-bottom: 0;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    /* Step 2 - Feature cards - keep 4 cards but smaller */
    .feature-icon-row {
        width: 100%;
        height: auto;
    }

    .feature-description {
        font-size: 14px;
    }

    .feature-cards-grid {
        gap: 6px;
    }

    .feature-card-image {
        width: 100%;
        height: auto;
    }

    .feature-card-title {
        font-size: 12px;
        line-height: 1.3;
    }

    .trial-benefits {
        padding: 16px;
        margin-top: 12px;
    }

    .trial-benefits-title {
        font-size: 14px;
    }

    .trial-benefits-list {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .benefit-text {
        font-size: 13px;
    }

    /* Step 3 - Testimonials */
    .testimonials-container {
        gap: 16px;
        width: 100%;
        overflow: hidden;
    }

    .testimonial-card {
        padding: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .testimonial-card:nth-child(2) {
        max-width: 100%;
    }

    .testimonial-quote {
        font-size: 14px;
        line-height: 1.4;
    }

    .testimonial-footer {
        gap: 12px;
        flex-wrap: wrap;
    }

    .author-name,
    .author-title {
        font-size: 13px;
    }

    .company-badge {
        padding: 6px 12px;
    }

    .company-logo {
        height: 16px;
    }

    /* Ticker / trusted logos */
    .trusted-logos {
        padding-top: 16px;
        width: 100%;
        overflow: hidden;
    }

    .trusted-title {
        font-size: 14px;
    }

    .ticker-wrapper {
        width: 100%;
        overflow: hidden;
    }

    .ticker-container {
        width: 100%;
    }

    .ticker-track {
        gap: 24px;
    }

    .trusted-logo {
        height: 20px;
    }
}

/* Responsive adjustments - Tablet and below (hide right column) */
@media (max-width: 1024px) {
    .right-column {
        display: none;
    }
}

/* Responsive adjustments - Mobile friendly */
@media (max-width: 700px) {

    /* Allow scrolling on mobile when content exceeds viewport */
    body {
        overflow-y: auto;
        overflow-x: hidden;
        min-height: 100vh;
        align-items: flex-start;
        padding: 0;
    }

    /* Sign-up flow containers */
    .outer-container {
        width: 100%;
        max-width: 100%;
        min-height: 100vh;
        padding: 16px;
        padding-top: max(16px, env(safe-area-inset-top));
        padding-bottom: max(16px, env(safe-area-inset-bottom));
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
        align-items: flex-start;
    }

    .container {
        width: 100%;
        max-width: 100%;
        max-height: none;
        background-color: transparent;
        padding: 0;
        flex-direction: column;
    }

    /* Make step 1 container hug content on mobile */
    .step1-page .container {
        min-height: auto;
        align-items: flex-start;
        height: fit-content;
    }

    /* Left column - form area */
    .left-column {
        width: 100%;
        max-width: 100%;
        padding: 24px 16px 24px;
        gap: 24px;
        justify-content: flex-start;
        border-radius: 8px;
    }

    /* Reduce spacing for step 1 on mobile */
    .step1-page .left-column {
        padding: 16px 16px 16px;
        gap: 16px;
        justify-content: flex-start;
        align-self: flex-start;
        height: fit-content;
    }

    .signup-card {
        max-width: 100%;
        padding: 24px 20px;
    }

    /* Reduce spacing for step 1 signup card on mobile */
    .step1-page .signup-card {
        padding: 20px 16px;
    }

    /* Reduce form spacing for step 1 on mobile */
    .step1-page .signup-form {
        margin-top: 16px;
    }

    /* Header - stack progress indicator above title on mobile, aligned left */
    .header-section {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
    }

    .header-text {
        flex: 1;
        min-width: 0;
        order: 2;
    }

    .progress-indicator {
        margin-left: 0;
        flex-shrink: 0;
        order: 1;
    }

    .title {
        font-size: 22px;
    }

    .subtitle {
        font-size: 15px;
    }

    /* Form rows - stack vertically on mobile */
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 16px;
    }

    .form-row .form-group:last-child {
        margin-bottom: 16px;
    }

    /* Touch-friendly inputs (min 44px height per Apple HIG) */
    .form-input,
    .form-select,
    /* Phone input - prevent overflow on mobile */
    .phone-input-wrapper {
        min-height: 44px;
        height: 44px;
        font-size: 16px;
        /* Prevents iOS zoom on focus */
        min-width: 0;
        /* Allow flex shrink within parent */
        overflow: hidden;
    }

    .country-code-select {
        min-height: 44px;
        height: 44px;
        max-width: 95px;
        /* Constrain so number input gets remaining space */
        flex-shrink: 0;
        padding-right: 24px;
    }

    .phone-input {
        min-height: 42px;
        min-width: 0;
        /* Critical: allow input to shrink in flex layout */
        flex: 1 1 0;
        width: 0;
        /* Flex trick: 0 base + flex-grow lets it take remaining space */
    }

    /* Touch-friendly button */
    .continue-button {
        min-height: 44px;
        height: 44px;
        font-size: 16px;
    }

    /* Touch-friendly checkbox */
    .checkbox {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
    }

    .checkbox-group,
    .checkbox-group-auth {
        gap: 12px;
    }

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

    /* Links - adequate touch target */
    .link {
        padding: 4px 0;
        display: inline-block;
    }

    .login-link {
        font-size: 15px;
    }

    /* Smaller logo on mobile */
    .logo-image {
        height: 26px;
    }

    .auth-logo-image {
        height: 26px;
    }

    /* Smaller progress indicator on mobile */
    .progress-indicator svg {
        width: 40px;
        height: 40px;
    }

    .no-card-message {
        margin-top: 20px;
        font-size: 14px;
    }

    /* Auth pages */
    .auth-outer-container {
        padding: 16px;
        padding-top: max(16px, env(safe-area-inset-top));
        padding-bottom: max(16px, env(safe-area-inset-bottom));
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
        min-height: 100vh;
        align-items: flex-start;
    }

    .auth-container {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }

    .auth-card {
        padding: 28px 20px;
        width: 100%;
    }

    .auth-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .auth-form .form-group {
        margin-bottom: 16px;
    }

    .auth-options {
        margin-bottom: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-footer-link,
    .auth-footer-text {
        font-size: 15px;
    }

    .auth-message {
        font-size: 15px;
    }

    /* Ensure no horizontal overflow */
    .left-column,
    .signup-card,
    .auth-card,
    .form-group,
    .phone-input-wrapper {
        max-width: 100%;
    }

    .form-group {
        min-width: 0;
        /* Allow flex children to shrink */
    }

    /* Don't constrain select/input with max-width inside phone wrapper - it breaks flex */
    .form-group input:not(.phone-input),
    .form-group select:not(.country-code-select),
    .form-group button {
        max-width: 100%;
    }

    /* Setup page responsive */
    .setup-outer-container {
        padding: 16px;
        padding-top: max(16px, env(safe-area-inset-top));
        padding-bottom: max(16px, env(safe-area-inset-bottom));
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
        align-items: flex-start;
    }

    .setup-card {
        padding: 32px 24px;
        max-width: 100%;
    }

    .setup-title-desktop {
        display: none;
    }

    .setup-title-mobile {
        display: block;
        font-size: 24px;
    }

    .setup-subtitle-desktop {
        display: none;
    }

    .setup-subtitle-mobile {
        display: block;
        font-size: 15px;
    }

    .setup-options {
        flex-direction: column;
        gap: 16px;
    }

    .setup-option-start-now {
        display: none;
    }

    .setup-option-recommended .setup-recommended-badge {
        display: none;
    }

    .setup-option {
        padding: 24px 20px;
    }

    .setup-option-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

    .setup-option-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .setup-option-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .setup-option-features {
        margin-bottom: 20px;
    }

    .setup-option-features li {
        font-size: 13px;
    }

    .setup-button {
        height: 44px;
        font-size: 16px;
    }
}

/* Extra small phones - additional refinements */
@media (max-width: 380px) {
    .outer-container {
        padding: 12px;
    }

    .left-column {
        padding: 20px 12px 24px;
    }

    .signup-card {
        padding: 20px 16px;
    }

    .title {
        font-size: 20px;
    }

    .auth-card {
        padding: 24px 16px;
    }

    .auth-title {
        font-size: 20px;
    }

    /* Narrower country code selector on very small screens */
    .country-code-select {
        max-width: 80px;
    }

    /* Setup page extra small */
    .setup-card {
        padding: 24px 16px;
    }

    .setup-title {
        font-size: 22px;
    }

    .setup-option {
        padding: 20px 16px;
    }
}

/* Error and Success Messages */
.message,
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.message.error,
.alert-danger {
    background-color: #FEF2F2;
    color: #DC2626;
    border: 1px solid #FEE2E2;
}

.message.success,
.alert-success {
    background-color: #F0FDF4;
    color: #16A34A;
    border: 1px solid #BBF7D0;
}

.message.info,
.alert-info {
    background-color: #EFF6FF;
    color: #2563EB;
    border: 1px solid #DBEAFE;
}

.message.warning,
.alert-warning {
    background-color: #FFFBEB;
    color: #D97706;
    border: 1px solid #FEF3C7;
}