/* Modern signup details style (business_main inspired) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #111111;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.45;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-logo .big { color: #111111; }
.nav-logo .bite { color: rgba(0, 0, 0, 0.25); font-weight: 400; }

.nav-badge {
    margin-left: 10px;
    background: #111111;
    color: #fff;
    border-radius: 999px;
    padding: 3px 9px;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-login {
    text-decoration: none;
    background: #f4f4f4;
    color: #111111;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
}

.signup-shell {
    min-height: 100vh;
    padding: 108px 24px 44px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: start;
}

.signup-hero,
.signup-card {
    background: #f7f7f7;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}

.signup-hero { padding: 36px; }

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #cccccc;
}

.hero-title {
    margin-top: 16px;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.hero-title span { color: rgba(0, 0, 0, 0.28); }

.hero-subtitle {
    margin-top: 16px;
    color: #999999;
    line-height: 1.65;
    font-size: 1.02rem;
}

.signup-card { padding: 28px; }

.signup-card h2 {
    font-size: 2rem;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

/* ── Profile drag-and-drop zone (Poppins only here) ── */
.profile-dropzone {
    font-family: 'Poppins', sans-serif;
    border: 2px dashed rgba(0, 0, 0, 0.18);
    border-radius: 14px;
    padding: 18px 20px;
    background: #fafafa;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.profile-dropzone.drag-over {
    border-color: #111;
    background: #f0f0f0;
}

.dropzone-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    pointer-events: none;
}

.profile-preview {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    object-fit: cover;
    border: 1.5px solid rgba(0, 0, 0, 0.10);
    background: #e8e8e8;
    flex-shrink: 0;
    display: block;
}

.dropzone-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dropzone-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #111;
}

.dropzone-sub {
    font-size: 0.84rem;
    color: #555;
}

.dropzone-link {
    color: #111;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    pointer-events: all;
}

.dropzone-hint {
    font-size: 0.74rem;
    color: #aaa;
    margin-top: 2px;
}

#profile-image {
    display: none;
}

.field-span-2 { grid-column: span 2; }

.signup-card input,
.signup-card select {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    background: #ffffff;
    color: #111111;
    outline: none;
    font-size: 1rem;
}

.signup-card select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    background-image: linear-gradient(45deg, transparent 50%, #777 50%), linear-gradient(135deg, #777 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.signup-card .widget-select {
    border-color: rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.16s ease;
}

.signup-card .widget-select:hover {
    border-color: rgba(0, 0, 0, 0.16);
}

.signup-card .widget-select:focus {
    transform: translateY(-1px);
}

.signup-card textarea {
    width: 100%;
    min-height: 112px;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    background: #ffffff;
    color: #111111;
    outline: none;
    resize: vertical;
    font: inherit;
    font-size: 1rem;
}

.signup-card input:focus,
.signup-card select:focus,
.signup-card textarea:focus {
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.signup-card input.readonly {
    background: #f2f2f2;
}

.phone-container {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
}

.terms-row {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #666666;
}

.widget-checkbox {
    user-select: none;
    cursor: pointer;
}

.terms-checkbox-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.terms-checkbox-ui {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 6px;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    background: #ffffff;
    margin-top: 3px;
    position: relative;
    transition: all 0.18s ease;
}

.terms-checkbox-input:checked + .terms-checkbox-ui {
    background: #111111;
    border-color: #111111;
}

.terms-checkbox-input:checked + .terms-checkbox-ui::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.terms-checkbox-input:focus-visible + .terms-checkbox-ui {
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.12);
}

.terms-text {
    display: block;
}

.terms-row span {
    display: block;
    margin-top: 0;
}

.terms-row a { color: #111111; font-weight: 700; }

.field-error {
    min-height: 20px;
    margin-top: 8px;
    color: #c62828;
    font-size: 0.92rem;
}

.signup-button {
    margin-top: 14px;
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 700;
    cursor: pointer;
}

.signup-button:hover { background: #333333; }

.signup-message {
    margin-top: 10px;
    min-height: 22px;
    color: #c62828;
    font-size: 0.96rem;
}

.signup-message.ok { color: #156f3d; }

@media (max-width: 980px) {
    .signup-shell {
        grid-template-columns: 1fr;
        padding-top: 92px;
    }
}

@media (max-width: 640px) {
    .nav { padding: 0 14px; }
    .signup-hero,
    .signup-card { border-radius: 22px; padding: 20px; }
    .signup-card h2 { font-size: 1.7rem; }
    .hero-subtitle { font-size: 0.98rem; }
    .field-grid { grid-template-columns: 1fr; }
    .field-span-2 { grid-column: auto; }
    .phone-container { grid-template-columns: 1fr; }
    .signup-card input,
    .signup-card select,
    .signup-button { font-size: 1rem; }
}

/* ==================== V2 PREMIUM BUYER SIGNUP DETAILS ==================== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.signup-card-wrap {
    display: flex;
}

.signup-hero {
    padding: 42px;
    position: relative;
    overflow: hidden;
}

.signup-hero::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -150px;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(0,0,0,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.hero-stat-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 22px;
    border: 1px solid rgba(0,0,0,0.05);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-stat-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #cccccc;
    margin-bottom: 10px;
}

.hero-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.hero-stat-card p {
    font-size: 0.88rem;
    color: #999999;
    line-height: 1.6;
}

.hero-preview-card {
    margin-top: 18px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(0,0,0,0.08);
}

.hero-preview-head {
    height: 52px;
    background: #fafafa;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.preview-dot.red { background: #ff5f57; }
.preview-dot.yellow { background: #febc2e; }
.preview-dot.green { background: #28c840; }

.hero-preview-url {
    flex: 1;
    background: #f0f0f0;
    border-radius: 8px;
    height: 28px;
    margin-left: 8px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 0.75rem;
    color: #aaaaaa;
    font-weight: 500;
}

.hero-preview-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-preview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f7f7f7;
    border-radius: 18px;
    padding: 15px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #7b7b7b;
}

.hero-preview-item span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.45;
    flex-shrink: 0;
}

.hero-preview-item.active {
    background: #111111;
    color: #ffffff;
}

.card-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.card-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    color: #777777;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .hero-stat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .signup-hero,
    .signup-card { padding: 22px; }
}

/* LEGACY_SIGNUP_INFO_CSS_DISABLED
/* Hide all scrollbars globally */
* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

@font-face{
    font-family: 'Poppins Light';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face{
    font-family: 'Poppins Bold';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar { display: none; }

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #111111;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; }

/* ── Header / Nav ── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 68px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.18s ease;
}

.header:hover { opacity: 0.75; }
.header:active { opacity: 0.5; }

.header .big {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
    display: inline;
}

.header .bite {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(0,0,0,0.25);
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
    display: inline;
}

@media (max-width: 600px) {
    .header { padding: 0 20px; }
}

.signup_container {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 88px 24px 60px;
    overflow-x: hidden;
}

.signup-form {
    background: #ffffff;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    animation: fadeInUp 0.5s ease both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.signup-form h2 {
    font-family: 'Poppins', sans-serif;
    color: #111111;
    font-size: 2.4rem;
    margin-bottom: 36px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.signup-form input,
.signup-form select,
.signup-form .address {
    width: 100%;
    height: 52px;
    margin-bottom: 12px;
    padding: 0 20px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    border: none;
    font-size: 0.95rem;
    font-weight: 400;
    background: #f7f7f7;
    color: #111111;
    outline: none;
    transition: background 0.18s ease, box-shadow 0.18s ease;
}
.signup-form input:focus,
.signup-form select:focus,
.signup-form .address:focus {
    background: #f0f0f0;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

.signup-form input::placeholder,
.signup-form .address::placeholder {
    color: #aaaaaa;
    font-size: 0.93rem;
}

.phone-container {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
}

.phone-prefix {
    width: 32%;
    min-width: 80px;
    height: 52px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    padding-left: 16px;
    background: #f7f7f7;
    color: #111111;
    border: none;
    outline: none;
    transition: background 0.18s ease, box-shadow 0.18s ease;
    appearance: none;
}
.phone-prefix:focus {
    background: rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.phone {
    width: 68%;
    height: 56px;
    border-radius: 25px;
    font-family: 'Poppins Light', sans-serif;
    font-size: 1.1rem;
    padding-left: 24px;
    background: rgba(0, 0, 0, 0.03);
    color: #000000;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.phone:focus {
    background: rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Vorschlagslisten für Country und Address */
#country-suggestions, #address-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-family: 'Poppins Light', sans-serif;
    font-size: 1rem;
    margin-top: 2px;
    max-height: 220px;
    overflow-y: auto;
    color: #000000;
    animation: fadeInSuggest 0.4s cubic-bezier(0.4,0,0.2,1) both;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
@keyframes fadeInSuggest {
    from { opacity: 0; transform: translateY(10px);}
    to { opacity: 1; transform: translateY(0);}
}

#country-suggestions div,
#address-suggestions div {
    padding: 14px 18px;
    cursor: pointer;
    color: #000000;
    background: transparent;
    border-radius: 25px;
    margin: 4px 8px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#country-suggestions div:hover,
#address-suggestions div:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
    transform: translateX(4px);
}

/* Fehlermeldungen */
#country-error,
#address-error,
#password-error,
#signup-message {
    color: #ff4d4f;
    font-family: 'Poppins Light', sans-serif;
    font-size: 1em;
    margin-bottom: 12px;
    display: none;
    text-align: left;
    animation: shakeError 0.4s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes shakeError {
    10%, 90% { transform: translateX(-2px);}
    20%, 80% { transform: translateX(4px);}
    30%, 50%, 70% { transform: translateX(-8px);}
    40%, 60% { transform: translateX(8px);}
    100% { transform: translateX(0);}
}

#signup-message {
    display: block;
    text-align: center;
    margin-top: 18px;
    font-size: 1.05em;
    animation: fadeInMsg 0.7s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes fadeInMsg {
    from { opacity: 0; transform: scale(0.95);}
    to { opacity: 1; transform: scale(1);}
}

/* Button */
.signup-button {
    width: 100%;
    height: 56px;
    background: #000000;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins Bold', sans-serif;
    color: #ffffff;
    font-size: 1.2rem;
    text-align: center;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInBtn 1.1s cubic-bezier(0.4,0,0.2,1) 0.8s both;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.signup-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.signup-button:hover::before {
    transform: translateX(100%);
}
@keyframes fadeInBtn {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}

.signup-button:hover,
.signup-button:focus {
    background: #333333;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.signup-button:active {
    background: #000000;
    color: #ffffff;
    transform: scale(0.98);
}

.signup-button:disabled {
    background: #ddd;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Terms and Conditions Checkbox */
.terms-agreement {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0 15px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 25px;
    border: none;
    animation: fadeInTerms 1.2s cubic-bezier(0.4,0,0.2,1) 0.9s both;
}

@keyframes fadeInTerms {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.terms-agreement input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.terms-agreement input[type="checkbox"]:hover {
    border-color: #999;
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

.terms-agreement input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #18181b 0%, #4a4a4a 100%);
    border-color: #18181b;
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(24, 24, 27, 0.25);
}

.terms-agreement input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 13px;
    font-weight: bold;
    opacity: 1;
    animation: checkmarkPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkmarkPop {
    0% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0.5); 
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.2); 
    }
    100% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1); 
    }
}

.terms-agreement input[type="checkbox"]:focus {
    outline: none;
    border-color: #555;
    box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.1);
}

.terms-agreement label {
    color: #444;
    font-size: 0.95em;
    cursor: pointer;
    font-family: 'Poppins Light';
    transition: color 0.2s ease;
    user-select: none;
    line-height: 1.4;
    flex: 1;
}

.terms-agreement label:hover {
    color: #18181b;
}

.terms-agreement label a {
    color: #18181b;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.terms-agreement label a:hover {
    color: #000;
    text-decoration-color: #000;
}

#terms-error {
    display: block;
    margin-top: 8px;
    font-size: 0.9em;
    color: #ff4d4f;
    animation: shakeError 0.4s cubic-bezier(.36,.07,.19,.97) both;
}

/* Responsive */
@media (max-width: 900px) {
    .signup-form {
        max-width: 98vw;
        padding: 18px 2vw;
        border-radius: 25px;
    }
    .header {
        display: none;
    }
    .phone-container {
        flex-direction: column;
        gap: 0;
    }
    .phone-prefix, .phone {
        width: 100%;
        min-width: 0;
        margin-bottom: 10px;
    }
}








/* ==================== FOOTER ==================== */
.site-footer {
    background: #111;
    color: #fff;
    padding: 80px 40px 40px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 64px;
}
.footer-brand h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 8px;
}
.footer-brand h2 span:last-child {
    color: rgba(255,255,255,0.3);
    font-weight: 400;
}
.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}
.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}
.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}
.footer-links-list a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.18s ease;
}
.footer-links-list a:hover { color: #fff; }
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 32px;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    font-weight: 400;
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.18s ease;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
@media (max-width: 1100px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
    .site-footer { padding: 60px 20px 32px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* FINAL OVERRIDES */
.signup-card input:not([type="checkbox"]):not([type="file"]),
.signup-card select,
.signup-card textarea,
.signup-button {
    font-size: 1rem !important;
}

.signup-card input:not([type="checkbox"]):not([type="file"]),
.signup-card select {
    height: 56px !important;
    border-radius: 14px !important;
}

.terms-row input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    border-radius: 0 !important;
    border: 1.5px solid rgba(0, 0, 0, 0.32) !important;
    background: #fff !important;
    padding: 0 !important;
    margin: 4px 0 0 0 !important;
    box-shadow: none !important;
    transform: none !important;
}

.terms-row input[type="checkbox"]:checked {
    background: #111 !important;
    border-color: #111 !important;
}

.terms-row input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.terms-row input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.12) !important;
}

