/**
 * ONNLY Public Mobile Styles
 * Tüm public sayfalar için ortak mobil stiller
 * Bu dosya tüm sayfalara include edilir
 */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f8fafc;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

/* ========================================
   BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--secondary);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   MOBILE MENU BUTTON (Hamburger)
   ======================================== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* ========================================
   MOBILE MENU OVERLAY (Full Screen)
   ======================================== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Body scroll lock when menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.mobile-menu {
    background: var(--dark);
    height: 100%;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2001;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.mobile-menu-header .logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-nav {
    flex: 1;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary);
}

.mobile-menu-link i {
    width: 24px;
    text-align: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.mobile-menu-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-legal a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.85rem;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
}

.mobile-menu-buttons .btn {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   MOBILE STICKY BOTTOM NAVIGATION
   ======================================== */
.mobile-bottom-nav,
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    min-width: 60px;
}

.bottom-nav-item i {
    font-size: 1.25rem;
}

.bottom-nav-item span {
    font-size: 0.65rem;
}

.bottom-nav-item:hover,
.bottom-nav-item:active,
.bottom-nav-item.active {
    color: var(--primary);
}

.bottom-nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white) !important;
    border-radius: 16px;
    padding: 0.6rem 1.25rem !important;
    margin: -0.25rem 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.bottom-nav-cta:hover,
.bottom-nav-cta:active {
    color: var(--white) !important;
    transform: scale(1.05);
}

.bottom-nav-cta i {
    font-size: 1rem;
}

.bottom-nav-cta span {
    font-size: 0.7rem;
    font-weight: 600;
}

/* ========================================
   COMMON BUTTON STYLES
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-full,
.btn-block {
    width: 100%;
    text-align: center;
}

/* ========================================
   HEADER / NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: var(--gray-light);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--light);
}

.nav-buttons {
    display: flex;
    gap: 0.75rem;
}

/* Solid Navbar (for inner pages) */
.navbar.solid {
    background: var(--dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   PAGE HEADER (Legal & Inner Pages)
   ======================================== */
.page-header {
    background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%);
    padding: 8rem 1.5rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 0.75rem;
}

.page-header h1 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.page-header p,
.last-updated {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* ========================================
   LEGAL CONTENT PAGES
   ======================================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.legal-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light);
    margin: 1.5rem 0 0.75rem;
}

.legal-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light);
    margin: 1rem 0 0.5rem;
}

.legal-content p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    color: var(--gray-light);
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content strong {
    color: var(--light);
}

/* Privacy Grid in Legal Pages */
.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.privacy-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.privacy-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.privacy-item h4 {
    color: var(--light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.privacy-item p {
    color: var(--gray-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* Alert Info Box */
.alert-info {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.alert-info p {
    color: var(--light);
    margin: 0;
}

/* ========================================
   AUTH PAGES (Login, Register)
   ======================================== */
.main-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    position: relative;
}

.main-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.auth-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    font-size: 0.85rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-header h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 0.4rem;
}

.auth-header p {
    color: var(--gray-light);
    font-size: 0.8rem;
}

/* Auth Form Specific Styles */
.auth-card .form-group {
    margin-bottom: 1rem;
}

.auth-card .form-group label {
    font-size: 0.75rem;
    margin-bottom: 0.35rem;
}

.auth-card .input-wrapper {
    position: relative;
}

.auth-card .input-wrapper i {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 0.85rem;
    z-index: 1;
}

.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"],
.auth-card input[type="date"],
.auth-card select,
.auth-card textarea {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--light);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.auth-card input:focus,
.auth-card select:focus,
.auth-card textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.auth-card input::placeholder,
.auth-card textarea::placeholder {
    color: var(--gray);
}

.auth-card select {
    appearance: none;
    cursor: pointer;
    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='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.auth-card select option {
    background: var(--dark);
    color: var(--light);
    padding: 0.5rem;
}

/* For inputs without icon */
.auth-card .form-group>input:not(.input-wrapper input),
.auth-card .form-group>select:not(.input-wrapper select) {
    padding-left: 1rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.75rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-wrapper label {
    color: var(--gray-light);
    cursor: pointer;
    font-size: 0.75rem;
}

.forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.75rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
}

.auth-link {
    text-align: center;
    color: var(--gray-light);
    font-size: 0.8rem;
}

.auth-link a {
    color: var(--primary);
    font-weight: 500;
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fcd34d;
}

.alert i {
    margin-right: 0.5rem;
}

/* ========================================
   VERIFICATION PAGES
   ======================================== */
.verification-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
}

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

.verification-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.verification-header h1 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.verification-header p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Success Card (All Verified) */
.verification-success-card {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.verification-success-card h2 {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 0.75rem;
}

.verification-success-card p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

/* Progress Card */
.verification-progress-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.progress-label {
    font-weight: 600;
    color: var(--light);
    font-size: 0.9rem;
}

.mandatory-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    color: var(--warning);
    font-size: 0.75rem;
    font-weight: 500;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-text {
    color: var(--gray-light);
    font-size: 0.8rem;
}

/* Verification Steps */
.verification-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.verification-step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.verification-step-card.verified {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

.verification-step-card.active {
    border-color: rgba(99, 102, 241, 0.3);
}

.verification-step-card.locked {
    opacity: 0.6;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.step-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-icon.verified {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.step-icon.pending {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary);
}

.step-icon.locked {
    background: rgba(100, 116, 139, 0.2);
    color: var(--gray);
}

.step-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 0.25rem;
}

.step-number {
    font-size: 0.75rem;
    color: var(--gray-light);
}

.step-description {
    color: var(--gray-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.step-status.success {
    color: #10b981;
}

.step-status.locked {
    color: var(--gray);
}

.step-status i {
    font-size: 0.9rem;
}

/* Verification Card (for individual pages like email.php, phone.php) */
.verification-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.verification-card h2 {
    font-size: 1.25rem;
    color: var(--light);
    margin-bottom: 0.75rem;
}

.verification-card p {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.verification-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
}

/* Verification Info Card */
.verification-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
}

.verification-info-card>i {
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.verification-info-card strong {
    display: block;
    color: var(--light);
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.verification-info-card p {
    color: var(--gray-light);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

/* Code Input */
.code-input-group {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.code-input {
    width: 50px;
    height: 55px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--light);
    transition: all 0.3s ease;
}

.code-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

/* Resend Link */
.resend-section {
    margin-top: 1.5rem;
    text-align: center;
}

.resend-section p {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.resend-link {
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
}

.resend-link:hover {
    text-decoration: underline;
}

/* Verification Icon Large (for auth-card pages) */
.verification-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

/* Form Hint */
.form-hint {
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 0.4rem;
}

/* Timer */
.timer-container {
    text-align: center;
    margin: 1.25rem 0;
}

.timer-label {
    font-size: 0.75rem;
    color: var(--gray-light);
    margin-bottom: 0.35rem;
}

.timer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Inter', monospace;
}

/* Button Link */
.btn-link {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    padding: 0.4rem 0;
    display: inline-block;
}

.btn-link:hover {
    text-decoration: underline;
}

.btn-link i {
    margin-right: 0.35rem;
}

/* Button Back */
.btn-back {
    margin-top: 1.25rem;
    font-size: 0.8rem;
    padding: 0.65rem 1.25rem;
}

/* Info Box */
.info-box {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
}

.info-box h6 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 0.65rem;
}

.info-box h6 i {
    color: var(--primary);
    margin-right: 0.4rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.75rem;
    color: var(--gray-light);
    margin-bottom: 0.35rem;
    line-height: 1.5;
}

.info-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

/* Auth Card Tel Input */
.auth-card input[type="tel"] {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--light);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

/* Auth Card Code Input (inline style) */
.auth-card .code-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 1.5rem 4rem;
    position: relative;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.hero h1 span {
    display: block;
    background: linear-gradient(135deg, var(--secondary), #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero>p,
.hero-content>p {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 500px;
    margin: 0 0 2rem 0;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--light);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ========================================
   LANDING PAGE SECTIONS
   ======================================== */
.section {
    padding: 4rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--gray-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Privacy Features */
.privacy-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.privacy-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.privacy-feature i {
    color: var(--primary);
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--light);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Steps Section */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.step-content h3 {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--light);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--dark-light);
    padding: 4rem 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 280px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    color: var(--gray-light);
    font-size: 0.8rem;
}

.footer-badge i {
    color: var(--primary);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column h4 {
    color: var(--light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-note {
    color: var(--warning);
    font-size: 0.8rem;
}

/* ========================================
   RESPONSIVE - MOBILE (768px and below)
   ======================================== */
@media (max-width: 768px) {

    /* Show mobile elements */
    .mobile-menu-btn {
        display: block;
    }

    .mobile-bottom-nav,
    .bottom-nav {
        display: flex;
    }

    /* Hide desktop elements */
    .nav-links,
    .nav-buttons,
    .desktop-only {
        display: none !important;
    }

    /* Hide footer on mobile (bottom nav replaces it) */
    .footer,
    footer.footer,
    .legal-footer {
        display: none !important;
    }

    /* Add padding for sticky bottom nav */
    body {
        padding-bottom: 75px;
    }

    /* Responsive typography */
    .hero h1 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .bottom-nav-item span {
        font-size: 0.6rem;
    }

    .bottom-nav-item i {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .privacy-features {
        flex-direction: column;
    }

    .privacy-feature {
        width: 100%;
        justify-content: center;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding-right: 0;
        text-align: center;
    }

    .contact-features {
        align-items: center;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ADDITIONAL LANDING PAGE STYLES
   ======================================== */
.section-dark {
    background: var(--dark-light);
}

/* Privacy Grid for Landing */
.privacy-grid-landing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.privacy-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.privacy-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
}

.privacy-card h3 {
    font-size: 1.25rem;
    color: var(--light);
    margin-bottom: 0.75rem;
}

.privacy-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Data Protection Section */
.data-protection {
    max-width: 1000px;
    margin: 0 auto;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.data-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.data-item i {
    font-size: 1.5rem;
    color: var(--danger);
    flex-shrink: 0;
}

.data-item h4 {
    font-size: 1rem;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.data-item p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge i {
    font-size: 2rem;
    color: var(--primary);
}

.trust-badge span {
    font-size: 0.9rem;
    color: var(--gray-light);
}

/* Legal Documents Section */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.legal-card {
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.legal-card:nth-child(1)::before {
    background: linear-gradient(90deg, #ec4899, #f472b6);
}

.legal-card:nth-child(2)::before {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.legal-card:nth-child(3)::before {
    background: linear-gradient(90deg, #06b6d4, #22d3ee);
}

.legal-card:nth-child(4)::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.legal-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.legal-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.legal-card:nth-child(1) .legal-icon {
    background: rgba(236, 72, 153, 0.15);
    color: #ec4899;
}

.legal-card:nth-child(2) .legal-icon {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.legal-card:nth-child(3) .legal-icon {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
}

.legal-card:nth-child(4) .legal-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.legal-card h3 {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 0.75rem;
}

.legal-card p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

.legal-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.legal-card:hover .legal-link i {
    transform: translateX(4px);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--light);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    color: var(--gray-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Form Inputs */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.input-wrapper input,
.input-wrapper textarea {
    padding-left: 2.75rem;
}

.form-input,
.form-textarea,
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder,
input::placeholder,
textarea::placeholder {
    color: var(--gray);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* Contact Section Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.contact-info>p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.contact-feature i {
    color: var(--primary);
    font-size: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
}

.contact-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    padding-left: 2.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--light);
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
}

.contact-form select option {
    background: var(--dark);
    color: var(--light);
}

/* Legal Links Footer */
.legal-footer {
    padding: 2rem 1.5rem;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: var(--primary);
}

.copyright {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Mobile Responsive for new styles */
@media (max-width: 768px) {
    .privacy-grid-landing {
        grid-template-columns: 1fr;
    }

    .data-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        gap: 1.5rem;
    }

    .legal-footer-content {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}