/* Signup page — kurumsal */

.signup-page {
    background: #f8fafc;
    min-height: 100vh;
    color: #0f172a;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.signup-header {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.signup-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.signup-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: #1e3a5f;
    font-weight: 700;
    font-size: 1.05rem;
}

.signup-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.signup-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.signup-nav a {
    text-decoration: none;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 600;
}

.signup-nav a:hover { color: #3b82f6; }

.signup-nav-cta {
    background: #1e3a5f !important;
    color: #fff !important;
    padding: 0.45rem 1rem !important;
    border-radius: 8px !important;
}

.signup-layout {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 2.5rem;
    align-items: start;
}

.signup-aside {
    padding-top: 0.5rem;
}

.signup-aside-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 0.75rem;
}

.signup-aside h2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: #1e3a5f;
    line-height: 1.25;
    margin: 0 0 1rem;
}

.signup-aside > p {
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.signup-context-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #3b82f6;
    border-radius: 10px;
    padding: 1rem 1.15rem;
    margin-bottom: 1rem;
}

.signup-context-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.signup-context-card strong {
    display: block;
    color: #1e3a5f;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.signup-context-card p {
    margin: 0;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
}

.signup-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.signup-benefits li {
    padding: 0.5rem 0 0.5rem 1.35rem;
    position: relative;
    color: #334155;
    font-size: 0.9rem;
    border-bottom: 1px solid #f1f5f9;
}

.signup-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.signup-aside-contact {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.88rem;
    color: #64748b;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.signup-aside-contact a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.signup-main {
    min-width: 0;
}

.signup-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.signup-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(15, 39, 68, 0.15);
    padding: 2.5rem;
}

.signup-card h1 {
    font-size: 1.55rem;
    color: #1e3a5f;
    margin-bottom: 0.35rem;
    font-weight: 800;
}

.signup-card .subtitle {
    color: #64748b;
    margin-bottom: 1.75rem;
    font-size: 0.92rem;
    line-height: 1.5;
}

.signup-error {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.form-section {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.form-section h3 {
    font-size: 0.82rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-field-full {
    grid-column: 1 / -1;
}

.plan-badge {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: #3b82f6;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    vertical-align: middle;
}

@media (max-width: 900px) {
    .signup-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }
    .signup-aside { order: 2; }
    .signup-main { order: 1; }
}

@media (max-width: 600px) {
    .signup-header-inner { padding: 0.75rem 1rem; }
    .signup-nav a:not(.signup-nav-cta) { display: none; }
    .signup-layout { padding: 1.25rem 1rem 3rem; }
    .signup-card { padding: 1.5rem; }
}

.signup-card .form-field {
    margin-bottom: 0;
}

.signup-card .form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    display: block;
}

.signup-card .form-field input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
    color: var(--text);
    font-family: inherit;
    transition: all 0.15s;
}

.signup-card .form-field input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.signup-card .form-field .hint {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.signup-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.signup-card .form-row:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .signup-card .form-row {
        grid-template-columns: 1fr;
    }
}

.slug-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: white;
    overflow: hidden;
    transition: all 0.15s;
}

.slug-input-wrap:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.slug-input-wrap input {
    border: none !important;
    background: transparent !important;
    flex: 1;
    border-radius: 0 !important;
    padding: 0.65rem 0.85rem !important;
}

.slug-input-wrap input:focus {
    box-shadow: none !important;
}

.slug-suffix {
    padding: 0 0.85rem;
    color: var(--text-muted);
    background: var(--bg);
    border-left: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 500;
    height: 100%;
    display: flex;
    align-items: center;
}

.plan-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plan-option {
    display: block;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s;
    background: white;
}

.plan-option:hover {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.04);
}

.plan-option.selected {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.08);
}

.plan-option input[type="radio"] {
    margin-right: 0.75rem;
    accent-color: var(--accent);
}

.plan-option-content {
    display: inline-block;
    vertical-align: middle;
}

.plan-option-content strong {
    display: inline-block;
    color: var(--primary);
    margin-right: 0.5rem;
}

.plan-option-content span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.signup-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    margin-top: 1.5rem;
    border-radius: 10px;
}

.signup-legal {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: 0;
}

.signup-legal a {
    color: var(--accent);
    text-decoration: none;
}

.signup-legal a:hover {
    text-decoration: underline;
}

/* Success page */
.signup-success-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

.signup-success-wrap .signup-card {
    margin: 0;
}

.success-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
}

.success-card {
    text-align: center;
}

.success-card h1 {
    margin-bottom: 0.5rem;
}

.success-steps {
    text-align: left;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.success-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: var(--bg);
    border: 1px solid var(--border);
}

.success-step.done {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.25);
}

.success-step.active {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.25);
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--text-muted);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.success-step.done .step-num {
    background: var(--success);
}

.success-step.active .step-num {
    background: var(--accent);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.success-step strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.15rem;
}

.success-step p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.success-actions {
    margin: 2rem 0 1.5rem;
}

.success-actions .btn-yaman.primary {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 10px;
}

.success-tips {
    text-align: left;
    background: var(--bg);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
}

.success-tips h3 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.success-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-tips li {
    padding: 0.5rem 0;
    color: var(--text);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.success-tips li:last-child {
    border-bottom: none;
}

/* SMS OTP — Adım 2 */
.signup-sms-verify {
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: 12px;
    padding: 1.25rem 1.35rem 1.35rem;
    margin-bottom: 1.75rem;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.signup-sms-verify--active {
    background: #ecfdf5;
    border: 1.5px solid #6ee7b7;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.signup-sms-hint {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0 0 1rem;
}

.signup-sms-sent {
    background: #fff;
    border: 1px solid #a7f3d0;
    color: #065f46;
    border-radius: 8px;
    padding: 0.75rem 0.9rem;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.signup-sms-sent small {
    display: block;
    margin-top: 0.35rem;
    color: #047857;
    font-size: 0.8rem;
}

.signup-sms-code-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.65rem;
    text-align: center;
}

.sms-otp-inputs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.sms-otp-digit {
    width: 2.75rem;
    height: 3.25rem;
    text-align: center;
    font-size: 1.45rem;
    font-weight: 700;
    font-family: ui-monospace, 'Cascadia Code', 'Segoe UI', monospace;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    background: #fff;
    color: #0f172a;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.sms-otp-digit:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.signup-sms-verify--active .sms-otp-digit {
    border-color: #34d399;
}

.signup-sms-meta {
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.signup-sms-resend {
    background: none;
    border: none;
    padding: 0;
    margin-left: 0.25rem;
    color: #3b82f6;
    font-size: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-family: inherit;
}

.signup-sms-resend:hover:not(:disabled) {
    color: #1d4ed8;
}

.signup-sms-resend:disabled {
    color: #94a3b8;
    cursor: not-allowed;
    text-decoration: none;
}

.signup-sms-code-fallback {
    display: block;
    width: 100%;
    max-width: 12rem;
    margin: 0.5rem auto 0;
    padding: 0.65rem;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 0.25rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
}

@media (max-width: 420px) {
    .sms-otp-inputs { gap: 0.35rem; }
    .sms-otp-digit {
        width: 2.35rem;
        height: 2.85rem;
        font-size: 1.25rem;
    }
}
