/**
 * ============================================================================
 * MAIN STYLESHEET - CLEANED & OPTIMIZED
 * No duplicate rules, fully responsive, production-ready
 * Maintains original design, colors, and functionality
 * ============================================================================
 */

/* ============================================================================
   CSS VARIABLES (Root Level)
   ============================================================================ */
:root {
    --primary-blue: #2563eb;
    --primary-blue-light: #3b82f6;
    --primary-blue-dark: #1d4ed8;
    --light-blue: #eff6ff;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
}

/* ============================================================================
   GLOBAL RESET & BASE STYLES
   ============================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================================
   HEADER & NAVIGATION (Desktop)
   ============================================================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    height: 32px;
    text-decoration: none;
}

.logo-icon {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-center {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-center a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-center a:hover {
    color: var(--primary-blue);
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-center a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-btn {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    color: var(--primary-blue);
    background: var(--light-blue);
}

.trial-btn {
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1);
}

.trial-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1);
}

/* ============================================================================
   USER DROPDOWN (Desktop)
   ============================================================================ */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-700);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.user-dropdown-toggle:hover {
    background: var(--gray-100);
}

.user-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-weight: 500;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-credits {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.user-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

.user-dropdown:hover .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 20px;
    background: var(--gray-50);
    display: flex;
    gap: 15px;
    align-items: center;
}

.dropdown-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 20px;
    flex-shrink: 0;
}

.dropdown-user-info {
    flex: 1;
    min-width: 0;
}

.dropdown-user-name {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-user-email {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: var(--gray-50);
    border-left-color: var(--primary-blue);
    color: var(--primary-blue);
}

.dropdown-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.logout-item {
    color: #ef4444;
}

.logout-item:hover {
    color: #dc2626;
    border-left-color: #ef4444;
}

/* ============================================================================
   MOBILE MENU STYLES
   ============================================================================ */
.mobile-toggle-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--gray-600);
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 1003;
    position: relative;
    padding: 0;
}

.mobile-toggle-btn:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

.mobile-toggle-btn .hamburger-icon,
.mobile-toggle-btn .close-x-icon {
    position: absolute;
    transition: all 0.3s ease;
    line-height: 1;
}

.mobile-toggle-btn .hamburger-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.mobile-toggle-btn .close-x-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

.mobile-toggle-btn.menu-open .hamburger-icon {
    opacity: 0;
    transform: rotate(90deg);
}

.mobile-toggle-btn.menu-open .close-x-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 1002;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--gray-200);
}

.mobile-nav.menu-open {
    right: 0;
}

.mobile-nav-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav-header {
    min-height: 70px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid var(--gray-200);
    justify-content: space-between;
}

.mobile-user-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-user-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.mobile-user-info {
    flex: 1;
    min-width: 0;
}

.mobile-user-name {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-user-credits {
    font-size: 13px;
    color: var(--primary-blue);
    font-weight: 600;
    background: var(--light-blue);
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

.mobile-auth-section {
    display: flex;
    gap: 10px;
}

.mobile-login,
.mobile-signup {
    flex: 1;
    padding: 10px 16px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-login {
    color: var(--gray-600);
    border: 1px solid var(--gray-300);
}

.mobile-login:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

.mobile-signup {
    background: var(--primary-blue);
    color: white;
}

.mobile-signup:hover {
    background: var(--primary-blue-dark);
}

.mobile-nav-links {
    flex: 1;
    padding: 20px 0;
}

.mobile-link {
    display: block;
    padding: 16px 24px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-link:hover {
    background: var(--gray-50);
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
}

.mobile-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 20px 24px;
}

.mobile-logout {
    color: #ef4444;
}

.mobile-logout:hover {
    color: #dc2626;
    border-left-color: #ef4444;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.menu-open {
    opacity: 1;
    visibility: visible;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content .badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.hero-content h1 .main-title {
    display: block;
    color: var(--gray-900);
    font-size: 56px;
    margin-top: 5px;
}

.hero-content .subtitle {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 5px;
}

.hero-cta {
    margin-top: 30px;
}

.cta-btn {
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    padding: 16px 40px;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

.cta-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
}

/* ============================================================================
   UPLOAD CONTAINER & IMAGE UPLOAD AREA
   ============================================================================ */
.upload-container {
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    width: 100%;
    max-width: 100%;
}

.upload-area {
    border: 2px dashed var(--gray-300);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    background: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upload-area:hover {
    border-color: var(--primary-blue);
    background: var(--light-blue);
}

.upload-area.hidden {
    display: none;
}

.upload-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--primary-blue);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.upload-area:hover .upload-icon {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.upload-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.upload-text p {
    color: var(--gray-500);
    font-size: 15px;
    margin-bottom: 20px;
}

.upload-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.upload-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.file-types {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.file-type {
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--gray-600);
}

.try-free-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

.fixed-upload-wrapper {
    position: relative;
    min-height: 300px;
    width: 100%;
    margin-bottom: 20px;
}

/* ============================================================================
   PREVIEW, LOADING & RESULT STATES
   ============================================================================ */
.preview-container {
    display: none;
    position: relative;
    width: 100%;
    min-height: 300px;
    background: white;
    border-radius: 12px;
    border: 2px dashed var(--gray-300);
    padding: 40px;
    box-sizing: border-box;
}

.preview-container.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-preview {
    max-height: 280px !important;
    max-width: 95% !important;
    width: auto !important;
    height: auto !important;
    border-radius: 8px;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    background: white;
    border: 2px solid var(--gray-300);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.remove-image-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    line-height: 1;
}

.preview-actions {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.generate-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    max-width: 300px;
}

.generate-btn:hover {
    background: var(--primary-blue-dark);
}

.loading-state {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: white;
    border-radius: 12px;
    border: 2px dashed var(--gray-300);
    z-index: 20;
}

.loading-state.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: var(--gray-800);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.loading-subtext {
    color: var(--gray-500);
    font-size: 15px;
    margin-top: 5px;
}

.result-container {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    min-height: 300px;
}

.result-container.active {
    display: block;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.result-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--success);
}

.result-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.alt-text-box {
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #e2e8f0;
}

.generated-alt-text {
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    text-align: left !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #374151 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

.copy-btn {
    background: var(--primary-blue) !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    margin-top: 15px !important;
}

.copy-btn:hover {
    background: var(--primary-blue-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2) !important;
}

.copy-btn:active {
    transform: translateY(0) !important;
}

.result-image-container {
    width: 100%;
    max-height: 180px;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.result-image {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 8px;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--error);
    padding: 10px;
    border-radius: 6px;
    margin: 10px 0;
    display: none;
    text-align: center;
    font-size: 14px;
}

.error-message.active {
    display: block;
}

/* ============================================================================
   OPTIONS ROW (Language & Keywords)
   ============================================================================ */
.options-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 20px;
    flex-wrap: wrap;
}

.option-group {
    flex: 1;
}

.language-group {
    flex: 1;
    min-width: 180px;
}

.keywords-group {
    flex: 2;
    min-width: 250px;
}

.option-label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
    font-size: 13px;
}

.language-select,
.keywords-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 14px;
    background: var(--white);
    color: var(--gray-800);
    height: 42px;
    box-sizing: border-box;
}

.language-select:focus,
.keywords-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.keywords-hint {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ============================================================================
   SECTION TITLES (Global)
   ============================================================================ */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.section-subtitle-small {
    text-align: center;
    font-size: 18px;
    color: var(--gray-600);
    margin-top: 10px;
}

/* ============================================================================
   FEATURE HIGHLIGHTS SECTION (Platform Features)
   ============================================================================ */
.feature-highlights {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: bold;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.5;
}

.feature-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 15px;
}

.file-formats {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.format-badge {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* ============================================================================
   IMPORT SECTION (CSV, Dropbox, Google Drive, Pinterest)
   ============================================================================ */
.import-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.import-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.import-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.import-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.import-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: currentColor;
    opacity: 0.8;
}

.import-icon {
    font-size: 48px;
    margin-bottom: 20px;
    height: 80px;
    width: 80px;
    line-height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
}

.import-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.import-desc {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.import-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.05);
    color: var(--gray-700);
}

/* ============================================================================
   DEMO SECTION (Live Example)
   ============================================================================ */
.demo-section {
    padding: 80px 0;
    background: var(--white);
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-visual {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.demo-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.demo-image:hover {
    transform: scale(1.01);
}

.image-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.ai-processing {
    background: var(--light-blue);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.processing-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ai-icon {
    font-size: 24px;
}

.processing-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
}

.processing-status {
    font-size: 14px;
    color: var(--gray-600);
}

.alt-text-output {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
    position: relative;
}

.alt-text-label {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
}

.generated-text {
    color: var(--gray-800);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.demo-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 20px;
}

.demo-content .highlight {
    color: var(--primary-blue);
}

.demo-content p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 25px;
}

.benefits-list {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.benefit-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.benefit-text p {
    font-size: 15px;
    color: var(--gray-600);
    margin: 0;
}

.try-demo-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-top: 10px;
}

.try-demo-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* ============================================================================
   HOW IT WORKS SECTION
   ============================================================================ */
.how-it-works {
    padding: 80px 0;
    background: var(--gray-50);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    margin: 15px auto 20px;
}

.step-icon i {
    display: block;
    line-height: 1;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.step-desc {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.5;
}

/* ============================================================================
   TESTIMONIALS SECTION
   ============================================================================ */
.testimonials {
    padding: 80px 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

/* ============================================================================
   INTEGRATIONS SECTION
   ============================================================================ */
.integrations-section {
    padding: 80px 0;
    background: var(--white);
}

.integrations-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.integrations-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* When there's only 1 card, limit width */
.integrations-cards:has(.integration-card:only-child) {
    max-width: 500px;
}

/* When there are 2 cards, they take equal width */
/* auto-fit handles this automatically */

.integration-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 35px;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.integration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.integration-icon {
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.integration-icon img {
    max-height: 60px;
    max-width: 100%;
}

.integration-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.integration-desc {
    color: var(--gray-700);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 16px;
    flex-grow: 1;
}

.integration-metrics {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
}

.integration-metric {
    text-align: center;
}

.integration-metric-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
}

.integration-metric-label {
    font-size: 12px;
    color: var(--gray-600);
    margin-top: 3px;
}

.integration-btn {
    background: var(--primary-blue);
    color: white;
    border: 2px solid var(--primary-blue);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 15px;
    margin-top: auto;
    align-self: center;
}

.integration-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* ============================================================================
   SEO BENEFITS SECTION
   ============================================================================ */
.seo-section {
    padding: 80px 0;
    background: var(--light-blue);
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.seo-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.seo-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.seo-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.seo-card-desc {
    color: var(--gray-600);
    line-height: 1.6;
}

.stats-banner {
    background: var(--primary-blue);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 60px 0;
}

.stats-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stats-text {
    font-size: 20px;
    opacity: 0.9;
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.faq-header p {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 15px;
    background: var(--white);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px 25px;
    background: var(--white);
}

.faq-item.active .faq-question {
    background: var(--light-blue);
}

.question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    flex: 1;
    margin: 0;
    line-height: 1.4;
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    margin-left: 20px;
    flex-shrink: 0;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-blue-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.answer-content {
    padding: 0 25px 25px;
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 16px;
    border-left: 3px solid transparent;
}

.faq-item.active .answer-content {
    border-left-color: var(--primary-blue);
    padding-left: 22px;
}

/* ============================================================================
   FINAL CTA SECTION
   ============================================================================ */
.final-cta {
    padding: 80px 0;
    background: var(--white);
}

.final-cta .container {
    text-align: center;
    max-width: 800px;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.final-cta p {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
}

.final-cta .highlight {
    color: var(--primary-blue);
    font-weight: 700;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 18px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    text-align: center;
}

.primary-cta {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.primary-cta:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.secondary-cta {
    background: var(--gray-100);
    color: var(--gray-800);
    font-weight: 600;
}

.secondary-cta:hover {
    background: var(--gray-200);
    transform: translateY(-3px);
}

.no-card {
    font-size: 15px;
    color: var(--gray-500);
    margin-top: 20px;
}

/* ============================================================================
   AI VISIBILITY SECTION (Why Alt Text Matters)
   ============================================================================ */
.ai-visibility {
    padding-bottom: 0 !important;
    background: var(--white);
}

/* ============================================================================
   DASHBOARD CONTAINER & BUTTONS
   ============================================================================ */
.dashboard-container {
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid var(--gray-100);
}

.dashboard-btn {
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

.dashboard-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
}

/* ============================================================================
   REGISTER PAGE STYLES - UNIQUE CLASSES (NO CONFLICTS)
   ============================================================================ */

/* Main Container */
.register-main {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f2f5 100%);
}

.register-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Register Container */
.register-container {
    display: flex;
    background: var(--white);
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    width: 100%;
    min-height: 650px;
}

/* ============================================================================
   LEFT SIDE - BRANDING
   ============================================================================ */
.register-left {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: white;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.register-left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.register-brand-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.register-brand-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.register-brand-icon i {
    font-size: 30px;
}

.register-brand-content h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.register-brand-content > p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Stats */
.register-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.register-stat {
    flex: 1;
    text-align: center;
}

.register-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
}

.register-stat-label {
    font-size: 12px;
    opacity: 0.8;
}

/* Rotating Tips Carousel */
.register-tips-carousel {
    margin: 0 0 25px;
    position: relative;
}

.register-tips-container {
    position: relative;
    min-height: 100px;
}

.register-tip {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.register-tip.active {
    display: flex;
    opacity: 1;
    animation: registerTipSlideIn 0.5s ease;
}

@keyframes registerTipSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.register-tip-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.register-tip-icon i {
    font-size: 24px;
    color: white;
}

.register-tip-content {
    flex: 1;
}

.register-tip-content h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.register-tip-content p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.85;
}

/* Dots Navigation */
.register-tips-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.register-tip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.register-tip-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.register-tip-dot.active {
    width: 24px;
    border-radius: 4px;
    background: white;
}

/* Features List - FIXED DISPLAY */
.register-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.register-features-list li {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    line-height: 1.4;
    color: white;
}

.register-features-list li:last-child {
    margin-bottom: 0;
}

.register-feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.register-feature-icon i {
    font-size: 16px;
    color: white;
}

/* ============================================================================
   RIGHT SIDE - REGISTER FORM
   ============================================================================ */
.register-right {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.register-form-content {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.register-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.register-form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.register-form-header p {
    color: var(--gray-500);
    font-size: 14px;
}

/* Social Login Section */
.register-social-section {
    margin-bottom: 25px;
}

.register-social-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.register-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    background: var(--white);
    font-weight: 500;
    font-size: 14px;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.register-social-btn i {
    font-size: 18px;
}

.register-google:hover {
    border-color: #DB4437;
    background: rgba(219, 68, 55, 0.05);
    color: #DB4437;
}

.register-github:hover {
    border-color: #333;
    background: rgba(51, 51, 51, 0.05);
    color: #333;
}

/* Divider */
.register-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.register-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-200);
}

.register-divider span {
    background: var(--white);
    padding: 0 15px;
    color: var(--gray-500);
    font-size: 12px;
    position: relative;
    z-index: 1;
}

.register-divider-small {
    margin: 15px 0;
}

.register-divider-small span {
    font-size: 12px;
    color: var(--primary-blue);
    font-weight: 500;
}

.register-divider-small span i {
    margin: 0 5px;
}

/* Alert Messages */
.register-alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: registerSlideIn 0.3s ease;
    font-size: 14px;
}

@keyframes registerSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.register-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--error);
}

.register-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.register-alert-icon {
    font-size: 18px;
}

/* Form Rows */
.register-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .register-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Form Groups */
.register-form {
    width: 100%;
}

.register-form-group {
    margin-bottom: 18px;
}

.register-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 13px;
}

.register-input-wrapper {
    position: relative;
}

.register-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 16px;
}

.register-form-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.register-form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.register-form-input::placeholder {
    color: var(--gray-400);
}

/* reCAPTCHA Container */
.register-recaptcha-container {
    margin: 20px 0;
    padding: 10px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    display: flex;
    justify-content: center;
    overflow-x: auto;
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
    
    .register-recaptcha-container {
        padding: 5px;
        justify-content: center;
    }
}

/* Terms Checkbox */
.register-terms-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    padding: 12px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.register-terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-blue);
}

.register-terms-label {
    font-size: 13px;
    color: var(--gray-600);
    cursor: pointer;
}

.register-terms-label a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.register-terms-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.register-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.register-submit-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.register-submit-btn:active {
    transform: translateY(0);
}

/* Login Link */
.register-login-link {
    text-align: center;
    margin-top: 20px;
    color: var(--gray-600);
    font-size: 14px;
}

.register-login-link a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.register-login-link a:hover {
    text-decoration: underline;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */
@media (max-width: 992px) {
    .register-container {
        flex-direction: column;
        max-width: 550px;
        margin: 0 auto;
        min-height: auto;
    }
    
    .register-left {
        padding: 40px 30px;
        text-align: center;
    }
    
    .register-brand-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .register-stats {
        justify-content: center;
    }
    
    .register-features-list {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .register-features-list li {
        text-align: left;
    }
    
    .register-right {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .register-main {
        padding: 20px 15px;
    }
    
    .register-left {
        padding: 30px 25px;
    }
    
    .register-brand-content h1 {
        font-size: 28px;
    }
    
    .register-stats {
        gap: 15px;
    }
    
    .register-stat-number {
        font-size: 22px;
    }
    
    .register-right {
        padding: 30px 25px;
    }
    
    .register-form-header h2 {
        font-size: 24px;
    }
    
    .register-social-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .register-social-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .register-left {
        padding: 25px 20px;
    }
    
    .register-brand-content h1 {
        font-size: 24px;
    }
    
    .register-brand-content > p {
        font-size: 13px;
    }
    
    .register-stats {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .register-stat {
        min-width: 80px;
    }
    
    .register-stat-number {
        font-size: 18px;
    }
    
    .register-stat-label {
        font-size: 10px;
    }
    
    .register-features-list li {
        font-size: 12px;
        gap: 12px;
    }
    
    .register-feature-icon {
        width: 28px;
        height: 28px;
    }
    
    .register-feature-icon i {
        font-size: 14px;
    }
    
    .register-right {
        padding: 25px 20px;
    }
    
    .register-form-header h2 {
        font-size: 22px;
    }
    
    .register-form-header p {
        font-size: 13px;
    }
    
    .register-form-input {
        padding: 12px 12px 12px 44px;
        font-size: 14px;
    }
    
    .register-submit-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .register-tip {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    
    .register-tip-icon {
        margin-right: 0;
        margin-bottom: 12px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* ============================================================================
   LOGIN PAGE STYLES 
   ============================================================================ */

/* Main Container */
.login-main {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f2f5 100%);
}

.login-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Login Container */
.login-container {
    display: flex;
    background: var(--white);
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    width: 100%;
    min-height: 600px;
}

/* ============================================================================
   LEFT SIDE - BRANDING
   ============================================================================ */
.login-left-side {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: white;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.login-left-side::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.login-brand-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.login-brand-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.login-brand-icon i {
    font-size: 30px;
}

.login-brand-content h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.login-brand-content > p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Stats */
.login-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.login-stat {
    flex: 1;
    text-align: center;
}

.login-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
}

.login-stat-label {
    font-size: 12px;
    opacity: 0.8;
}

/* Features List */
.login-features-list {
    list-style: none;
    margin-top: auto;
}

.login-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.login-feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.login-feature-icon i {
    font-size: 16px;
}

/* ============================================================================
   RIGHT SIDE - LOGIN FORM
   ============================================================================ */
.login-right-side {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.login-form-content {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.login-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.login-form-header p {
    color: var(--gray-500);
    font-size: 14px;
}

/* Social Login Section - MOVED UP */
.login-social-section {
    margin-bottom: 25px;
}

.login-social-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.login-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    background: var(--white);
    font-weight: 500;
    font-size: 14px;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.login-social-btn i {
    font-size: 18px;
}

.login-google:hover {
    border-color: #DB4437;
    background: rgba(219, 68, 55, 0.05);
    color: #DB4437;
}

.login-github:hover {
    border-color: #333;
    background: rgba(51, 51, 51, 0.05);
    color: #333;
}

/* Divider */
.login-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gray-200);
}

.login-divider span {
    background: var(--white);
    padding: 0 15px;
    color: var(--gray-500);
    font-size: 12px;
    position: relative;
    z-index: 1;
}

/* Alert Messages */
.login-alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: loginSlideIn 0.3s ease;
    font-size: 14px;
}

@keyframes loginSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--error);
}

.login-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.login-alert-icon {
    font-size: 18px;
}

/* Form Groups */
.login-auth-form {
    width: 100%;
}

.login-form-group {
    margin-bottom: 20px;
}

.login-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 13px;
}

.login-input-wrapper {
    position: relative;
}

.login-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 16px;
}

.login-form-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.login-form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.login-form-input::placeholder {
    color: var(--gray-400);
}

/* reCAPTCHA Container - IMPROVED FOR MOBILE */
.login-recaptcha-container {
    margin: 20px 0;
    padding: 10px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    display: flex;
    justify-content: center;
    overflow-x: auto;
}

.g-recaptcha {
    transform: scale(1);
    transform-origin: center;
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
    
    .login-recaptcha-container {
        padding: 5px;
        justify-content: center;
    }
}

/* Form Options */
.login-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.login-remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
    cursor: pointer;
}

.login-remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--primary-blue);
}

.login-forgot-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-forgot-link:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

/* Submit Button */
.login-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-submit-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.login-submit-btn:active {
    transform: translateY(0);
}

/* Register Link */
.login-register-link {
    text-align: center;
    margin-top: 25px;
    color: var(--gray-600);
    font-size: 14px;
}

.login-register-link a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.login-register-link a:hover {
    text-decoration: underline;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */
@media (max-width: 992px) {
    .login-container {
        flex-direction: column;
        max-width: 500px;
        margin: 0 auto;
        min-height: auto;
    }
    
    .login-left-side {
        padding: 40px 30px;
        text-align: center;
    }
    
    .login-brand-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .login-stats {
        justify-content: center;
    }
    
    .login-features-list {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .login-features-list li {
        text-align: left;
    }
    
    .login-right-side {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .login-main {
        padding: 20px 15px;
    }
    
    .login-left-side {
        padding: 30px 25px;
    }
    
    .login-brand-content h1 {
        font-size: 28px;
    }
    
    .login-stats {
        gap: 15px;
    }
    
    .login-stat-number {
        font-size: 22px;
    }
    
    .login-right-side {
        padding: 30px 25px;
    }
    
    .login-form-header h2 {
        font-size: 24px;
    }
    
    .login-social-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .login-social-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .login-left-side {
        padding: 25px 20px;
    }
    
    .login-brand-content h1 {
        font-size: 24px;
    }
    
    .login-brand-content > p {
        font-size: 13px;
    }
    
    .login-stats {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .login-stat {
        min-width: 80px;
    }
    
    .login-stat-number {
        font-size: 18px;
    }
    
    .login-stat-label {
        font-size: 10px;
    }
    
    .login-features-list li {
        font-size: 12px;
        gap: 10px;
    }
    
    .login-feature-icon {
        width: 28px;
        height: 28px;
    }
    
    .login-feature-icon i {
        font-size: 14px;
    }
    
    .login-right-side {
        padding: 25px 20px;
    }
    
    .login-form-header h2 {
        font-size: 22px;
    }
    
    .login-form-header p {
        font-size: 13px;
    }
    
    .login-form-input {
        padding: 12px 12px 12px 44px;
        font-size: 14px;
    }
    
    .login-submit-btn {
        padding: 12px;
        font-size: 14px;
    }
}
/* ============================================================================
   MOBILE MENU AUTH BUTTONS - FIXED STYLES
   ============================================================================ */

/* Mobile Auth Buttons Container */
.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 20px 20px 20px;
    margin-top: 10px;
}

/* Login Button */
.mobile-login-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-300);
}

.mobile-login-btn:hover {
    background: var(--gray-100);
    color: var(--gray-800);
    border-color: var(--gray-400);
}

/* Signup / Start Free Trial Button */
.mobile-signup-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--primary-blue);
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.mobile-signup-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.mobile-signup-btn:active {
    transform: translateY(0);
}

/* Mobile Divider */
.mobile-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 15px 20px;
}

/* Mobile Logout Button */
.mobile-logout {
    color: #ef4444 !important;
}

.mobile-logout:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626 !important;
    border-left-color: #ef4444;
}

/* Mobile Link Icons */
.mobile-link i {
    width: 22px;
    color: var(--gray-500);
}

.mobile-link:hover i {
    color: var(--primary-blue);
}

/* Ensure mobile nav links have proper padding */
.mobile-nav-links {
    flex: 1;
    padding: 10px 0;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-link:hover {
    background: var(--gray-50);
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-auth-buttons {
        padding: 0 15px 15px 15px;
        gap: 10px;
    }
    
    .mobile-login-btn,
    .mobile-signup-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .mobile-link {
        padding: 12px 20px;
    }
}
/* ============================================================================
   ROTATING TIPS CAROUSEL
   ============================================================================ */

.login-tips-carousel {
    margin: 20px 0 30px;
    position: relative;
}

.login-tips-container {
    position: relative;
    min-height: 100px;
}

.login-tip {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-tip.active {
    display: flex;
    opacity: 1;
    animation: tipSlideIn 0.5s ease;
}

@keyframes tipSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-tip-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.login-tip-icon i {
    font-size: 24px;
    color: white;
}

.login-tip-content {
    flex: 1;
}

.login-tip-content h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.login-tip-content p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.85;
}

/* Dots Navigation */
.login-tips-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.login-tip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-tip-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.login-tip-dot.active {
    width: 24px;
    border-radius: 4px;
    background: white;
}

/* Responsive */
@media (max-width: 992px) {
    .login-tip {
        padding: 14px 16px;
    }
    
    .login-tip-icon {
        width: 40px;
        height: 40px;
    }
    
    .login-tip-icon i {
        font-size: 20px;
    }
    
    .login-tip-content p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .login-tips-carousel {
        margin: 15px 0 20px;
    }
    
    .login-tip {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    
    .login-tip-icon {
        margin-right: 0;
        margin-bottom: 12px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================================================
   PRICING PAGE - COMPLETE CSS WITH NEW CLASSES
   ============================================================================ */

/* Hero Section */
.pricing-hero {
    text-align: center;
    padding: 30px 20px 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
}

.pricing-hero h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.pricing-hero > p {
    font-size: 15px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 15px;
}

.pricing-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 25px 0 15px;
    flex-wrap: wrap;
}

.pricing-stat-item {
    text-align: center;
}

.pricing-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
}

.pricing-stat-label {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 5px;
}

.pricing-hero-note {
    color: var(--gray-500);
    font-size: 13px;
    margin-top: 10px;
    background: rgba(37, 99, 235, 0.05);
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
}

/* Billing Section */
.pricing-billing-section {
    text-align: center;
    padding: 15px 20px;
    background: var(--white);
}

.pricing-billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--gray-100);
    border-radius: 10px;
    padding: 3px;
    margin-bottom: 5px;
}

.pricing-toggle-btn {
    padding: 8px 16px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

.pricing-toggle-btn.active {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pricing-savings-note {
    color: #10b981;
    font-weight: 600;
    font-size: 13px;
    margin-top: 5px;
}

/* Plans Section */
.pricing-plans-section {
    padding: 20px 15px;
    max-width: 1200px;
    margin: 0 auto;
}


.register-social-btn.register-facebook:hover {
    border-color: #166fe5;
    background: rgba(22, 111, 229, 0.05);
    color: #166fe5;
}
.login-social-btn.login-facebook:hover {
    border-color: #166fe5;
    background: rgba(22, 111, 229, 0.05);
    color: #166fe5;
}
.pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

@media (max-width: 1100px) {
    .pricing-plans-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .pricing-plans-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-plan-card {
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-plan-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.pricing-plan-card.popular {
    border-color: #f59e0b;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.15);
}

.pricing-popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 15px;
    border: 2px solid #f59e0b;
    z-index: 1;
    white-space: nowrap;
}

.pricing-plan-header {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
    flex: 1;
}

.pricing-plan-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.pricing-plan-description {
    color: var(--gray-500);
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.pricing-plan-price {
    margin: 12px 0;
}

.pricing-price-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 5px;
}

.pricing-price-period {
    font-size: 13px;
    color: var(--gray-500);
    margin-left: 2px;
}

.pricing-plan-credits {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    margin: 8px 0;
}

.pricing-price-per-image {
    color: var(--gray-500);
    font-size: 13px;
    margin: 3px 0;
}

.pricing-savings-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 5px;
}

.pricing-plan-cta {
    padding: 15px;
    text-align: center;
}

.pricing-plan-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.pricing-plan-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-1px);
}

.pricing-plan-btn.popular {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    font-weight: 700;
}

.pricing-plan-btn.popular:hover {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.pricing-plans-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 13px;
    margin-top: 15px;
}

.pricing-plans-note a {
    color: var(--primary-blue);
    text-decoration: none;
}

.pricing-plans-note a:hover {
    text-decoration: underline;
}

/* Credit Packs Section */
.pricing-credit-packs-section {
    padding: 25px 15px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.pricing-credit-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .pricing-credit-container {
        flex-direction: column;
        text-align: center;
    }
}

.pricing-credit-content {
    flex: 1;
}

.pricing-credit-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.pricing-credit-content p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.pricing-credit-subtitle {
    color: var(--gray-500);
    font-size: 13px;
}

.pricing-credit-purchase {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.pricing-purchase-summary {
    text-align: center;
}

.pricing-credit-amount {
    margin-bottom: 5px;
}

.pricing-amount-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
}

.pricing-amount-label {
    font-size: 14px;
    color: var(--gray-600);
    margin-left: 5px;
}

.pricing-price-display {
    background: var(--gray-50);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid var(--gray-200);
}

.pricing-price-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
}

.pricing-price-label {
    font-size: 12px;
    color: var(--gray-500);
    margin-left: 3px;
}

.pricing-purchase-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.pricing-quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-50);
    padding: 5px;
    border-radius: 8px;
    border: 1px solid var(--gray-300);
}

.pricing-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: none;
    background: var(--white);
    color: var(--gray-700);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pricing-qty-btn:hover {
    background: var(--gray-200);
}

.pricing-qty-display {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    min-width: 30px;
    text-align: center;
}

.pricing-purchase-btn {
    padding: 10px 20px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.pricing-purchase-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.2);
}

/* Features Section */
.pricing-features-section {
    padding: 50px 20px;
    background: var(--gray-50);
}

.pricing-features-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-features-title {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.pricing-features-subtitle {
    display: block;
    font-size: 16px;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

.pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .pricing-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-features-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-feature-category {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.pricing-feature-category:hover {
    transform: translateY(-3px);
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}

.pricing-category-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-category-icon i {
    color: var(--primary-blue);
    font-size: 18px;
}

.pricing-category-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-category-features li {
    padding: 8px 0;
    color: var(--gray-600);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-category-features li::before {
    content: "✓";
    color: var(--success);
    font-weight: 600;
    font-size: 12px;
}

/* FAQ Section */
.pricing-faq-section {
    padding: 60px 20px;
    background: var(--white);
}

.pricing-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-faq-title {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.pricing-faq-subtitle {
    display: block;
    font-size: 16px;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

.pricing-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    background: var(--white);
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-faq-item:hover {
    border-color: var(--primary-blue);
}

.pricing-faq-item.active {
    border-color: var(--primary-blue);
}

.pricing-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 600;
    color: var(--gray-800);
    background: var(--white);
}

.pricing-faq-item.active .pricing-faq-question {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.pricing-faq-icon {
    transition: transform 0.3s ease;
}

.pricing-faq-item.active .pricing-faq-icon {
    transform: rotate(45deg);
}

.pricing-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.pricing-faq-item.active .pricing-faq-answer {
    max-height: 300px;
}

.pricing-faq-answer p {
    padding: 0 20px 20px;
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* CTA Section */
.pricing-cta-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: white;
}

.pricing-cta-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.pricing-cta-subtitle {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 25px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-cta-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-cta-btn.primary {
    background: white;
    color: var(--primary-blue);
}

.pricing-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.pricing-cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}
/* ============================================================================
   BLOG PAGE STYLES - COMPLETE REDESIGN
   ============================================================================ */

/* Container */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Header */
.blog-page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.blog-page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.blog-page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Category Filters */
.blog-category-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.blog-filter-btn {
    padding: 10px 24px;
    background: var(--gray-100);
    border-radius: 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-filter-btn:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.blog-filter-btn.active {
    background: var(--primary-blue);
    color: white;
}

/* Featured Article - Hero Style */
.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

@media (max-width: 992px) {
    .blog-featured {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.blog-featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-featured:hover .blog-featured-image img {
    transform: scale(1.05);
}

.blog-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--warning), #fbbf24);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
}

.blog-featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-featured-content p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-500);
}

.blog-meta-item i {
    color: var(--primary-blue);
    font-size: 14px;
}

/* Read Button */
.blog-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-read-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    gap: 15px;
}

/* Articles Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-content p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-500);
}

.blog-card-meta i {
    color: var(--primary-blue);
    font-size: 12px;
}

.blog-card-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card-link:hover {
    gap: 10px;
    color: var(--primary-blue-dark);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.blog-page-link {
    padding: 10px 16px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-page-link:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.blog-page-link.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.blog-page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Empty State */
.blog-empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    margin: 40px 0;
}

.blog-empty i {
    font-size: 64px;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.blog-empty h3 {
    font-size: 24px;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.blog-empty p {
    color: var(--gray-600);
    margin-bottom: 25px;
}

.blog-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-empty-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

/* Newsletter Section - Redesigned */
.blog-newsletter {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 30px;
    margin: 60px 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.blog-newsletter-content {
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.blog-newsletter-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.blog-newsletter-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.blog-newsletter-content p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.blog-newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.blog-newsletter-input-group {
    display: flex;
    gap: 15px;
    background: white;
    border-radius: 60px;
    padding: 5px;
}

@media (max-width: 768px) {
    .blog-newsletter-input-group {
        flex-direction: column;
        border-radius: 30px;
        background: transparent;
        gap: 10px;
    }
}

.blog-newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 60px;
    font-size: 16px;
    outline: none;
    background: white;
}

@media (max-width: 768px) {
    .blog-newsletter-input {
        border-radius: 60px;
    }
}

.blog-newsletter-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.blog-newsletter-btn {
    padding: 16px 32px;
    background: white;
    color: var(--primary-blue);
    border: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .blog-newsletter-btn {
        border-radius: 60px;
    }
}

.blog-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-newsletter-note {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-page-header {
        padding: 40px 0;
    }
    
    .blog-page-header h1 {
        font-size: 32px;
    }
    
    .blog-page-header p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .blog-featured-content {
        padding: 30px;
    }
    
    .blog-featured-content h2 {
        font-size: 24px;
    }
    
    .blog-meta {
        gap: 12px;
    }
    
    .blog-newsletter-content {
        padding: 40px 25px;
    }
    
    .blog-newsletter-content h3 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .blog-featured-content h2 {
        font-size: 22px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .blog-card-content h3 {
        font-size: 18px;
    }
    
    .blog-newsletter-content h3 {
        font-size: 24px;
    }
    
    .blog-newsletter-input,
    .blog-newsletter-btn {
        padding: 14px 20px;
    }
}


/* ============================================================================
   ARTICLE PAGE STYLES - CLEAN & MATCHING BLOG DESIGN
   ============================================================================ */

/* Container */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reading Progress Bar */
.article-progress {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gray-200);
    z-index: 999;
}

.article-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
    width: 0%;
    transition: width 0.3s ease;
}

/* Back Navigation */
.article-back {
    margin: 30px 0 20px;
}

.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.article-back-link:hover {
    color: var(--primary-blue);
    transform: translateX(-5px);
}

/* Article Header */
.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
}

.article-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-excerpt {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.article-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-500);
}

.article-meta-item i {
    color: var(--primary-blue);
    font-size: 13px;
}

/* Featured Image */
.article-image {
    margin: 30px 0 40px;
    border-radius: 20px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Author Profile - Centered */
.article-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px;
    background: var(--gray-50);
    border-radius: 60px;
    margin: 30px 0 40px;
    border: 1px solid var(--gray-200);
}

.article-author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.article-author-info {
    text-align: left;
}

.article-author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.article-author-info p {
    font-size: 13px;
    color: var(--gray-500);
}

/* Article Content */
.article-content {
    line-height: 1.8;
    font-size: 17px;
    color: var(--gray-700);
    margin-bottom: 50px;
}

.article-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-200);
}

.article-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 35px 0 15px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 30px 0;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content blockquote {
    border-left: 4px solid var(--primary-blue);
    padding: 20px 30px;
    margin: 30px 0;
    background: var(--light-blue);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--gray-700);
}

.article-content code {
    background: var(--gray-100);
    padding: 3px 8px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.9em;
}

/* Share Section */
.article-share {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 50px;
}

.article-share-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.article-share-title i {
    color: var(--primary-blue);
}

.article-share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.article-share-btn {
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.article-share-btn.twitter {
    background: #1DA1F2;
    color: white;
}

.article-share-btn.facebook {
    background: #1877F2;
    color: white;
}

.article-share-btn.linkedin {
    background: #0A66C2;
    color: white;
}

.article-share-btn.copy {
    background: var(--gray-100);
    color: var(--gray-700);
}

.article-share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Related Articles */
.article-related {
    margin-bottom: 50px;
}

.article-related-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-related-title i {
    color: var(--primary-blue);
}

.article-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
@media (max-width: 768px) {
    .article-progress {
        top: 60px !important;
        z-index: 998 !important;
    }
    
    /* Ensure mobile menu is above progress bar */
    .mobile-nav {
        z-index: 1002 !important;
    }
    
    .mobile-toggle-btn {
        z-index: 1003 !important;
        position: relative;
    }
    
    .mobile-nav-overlay {
        z-index: 1001 !important;
    }
}

@media (max-width: 768px) {
    .article-related-grid {
        grid-template-columns: 1fr;
    }
}

.article-related-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.article-related-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.article-related-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.article-related-info {
    padding: 18px;
}

.article-related-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.4;
    margin-bottom: 8px;
}

.article-related-meta {
    font-size: 12px;
    color: var(--gray-500);
    display: flex;
    gap: 6px;
}

/* Newsletter Section */
.article-newsletter {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    margin: 40px 0 60px;
}

.article-newsletter-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.article-newsletter h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.article-newsletter p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.article-newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.article-newsletter-group {
    display: flex;
    gap: 15px;
    background: white;
    border-radius: 60px;
    padding: 5px;
}

@media (max-width: 600px) {
    .article-newsletter-group {
        flex-direction: column;
        border-radius: 30px;
        background: transparent;
        gap: 10px;
    }
}

.article-newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 60px;
    font-size: 16px;
    outline: none;
    background: white;
}

@media (max-width: 600px) {
    .article-newsletter-input {
        border-radius: 60px;
    }
}

.article-newsletter-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.article-newsletter-btn {
    padding: 16px 32px;
    background: white;
    color: var(--primary-blue);
    border: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 600px) {
    .article-newsletter-btn {
        border-radius: 60px;
    }
}

.article-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.article-newsletter-note {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 20px;
}

/* Error Page */
.article-error-container {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: 24px;
    max-width: 500px;
    margin: 80px auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.article-error-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.article-error-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.article-error-message {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.article-error-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-error-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .article-container {
        max-width: 100%;
    }
    
    .article-title {
        font-size: 32px;
    }
    
    .article-excerpt {
        font-size: 16px;
    }
    
    .article-meta {
        gap: 12px;
    }
    
    .article-author {
        padding: 20px;
        border-radius: 40px;
    }
    
    .article-author-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .article-content {
        font-size: 16px;
    }
    
    .article-content h2 {
        font-size: 24px;
    }
    
    .article-content h3 {
        font-size: 20px;
    }
    
    .article-share-buttons {
        gap: 10px;
    }
    
    .article-share-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .article-newsletter {
        padding: 40px 25px;
    }
    
    .article-newsletter h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 28px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .article-author {
        flex-direction: column;
        text-align: center;
        border-radius: 30px;
    }
    
    .article-author-info {
        text-align: center;
    }
    
    .article-share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .article-share-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .article-newsletter-group {
        flex-direction: column;
    }
    
    .article-newsletter-input,
    .article-newsletter-btn {
        width: 100%;
    }
}
/* ============================================================================
   CONTACT PAGE STYLES - COMPLETE FIXED VERSION
   ============================================================================ */

/* Container */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Header */
.contact-page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.contact-page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Alert Messages */
.contact-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: contactSlideIn 0.3s ease;
}

@keyframes contactSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.contact-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--error);
}

.contact-alert-icon {
    font-size: 20px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Contact Info Card */
.contact-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.contact-section-title {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-100);
}

.contact-section-title h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-section-title h2 i {
    color: var(--primary-blue);
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    flex-shrink: 0;
}

.contact-method-details h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.contact-method-details p {
    color: var(--gray-600);
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.contact-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.contact-link:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

.contact-text {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

/* User Info (Logged In) */
.contact-user-info {
    background: var(--light-blue);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--primary-blue);
}

.contact-user-info p {
    margin-bottom: 10px;
    color: var(--gray-700);
    font-size: 15px;
}

.contact-user-info strong {
    color: var(--gray-900);
}

.contact-dashboard-link {
    text-align: center;
    margin-top: 20px;
}

/* Form Styles */
.contact-form {
    width: 100%;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 14px;
}

.contact-form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.contact-form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.contact-textarea {
    min-height: 140px;
    resize: vertical;
}

/* reCAPTCHA Container */
.contact-recaptcha-container {
    margin: 20px 0;
    padding: 15px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

/* Terms Checkbox */
.contact-terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.contact-terms-checkbox:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.contact-terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: 2px;
    accent-color: var(--primary-blue);
}

.contact-terms-label {
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

.contact-terms-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-terms-link:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

/* Submit Button */
.contact-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-page-header {
        padding: 40px 0;
    }
    
    .contact-page-header h1 {
        font-size: 32px;
    }
    
    .contact-page-header p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-method-icon {
        margin-bottom: 10px;
    }
    
    .contact-section-title h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .contact-page-header h1 {
        font-size: 28px;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }
    
    .contact-method {
        padding: 15px;
    }
    
    .contact-method-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .contact-method-details h3 {
        font-size: 16px;
    }
    
    .contact-submit-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}
/* Add these missing styles for contact page on mobile */
@media (max-width: 768px) {
    /* Fix container width */
    .contact-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 auto !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    /* Fix grid layout */
    .contact-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* Fix cards */
    .contact-info-card,
    .contact-form-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 25px 20px !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    /* Fix form groups */
    .contact-form-group {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Fix inputs */
    .contact-form-control {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Fix checkbox */
    .contact-terms-checkbox {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Fix reCAPTCHA */
    .contact-recaptcha-container {
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: auto !important;
    }
    
    /* Fix g-recaptcha scaling */
    .g-recaptcha {
        transform: scale(0.95);
        transform-origin: center;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .contact-container {
        padding: 0 12px !important;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 20px 15px !important;
    }
    
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}
/* ============================================================================
   TERMS & PRIVACY POLICY PAGE - CLEAN & CONSISTENT DESIGN
   ============================================================================ */

/* Container */
.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Header */
.policy-page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.policy-page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.policy-page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Navigation Tabs */
.policy-nav {
    background: var(--white);
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 30px;
    border: 1px solid var(--gray-200);
    display: inline-block;
    width: auto;
}

.policy-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.policy-tab {
    padding: 12px 28px;
    background: var(--gray-100);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--gray-700);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
}

.policy-tab i {
    font-size: 16px;
}

.policy-tab:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.policy-tab.active {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Content Sections */
.policy-content-section {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    display: none;
}

.policy-content-section.active {
    display: block;
    animation: policyFadeIn 0.4s ease;
}

@keyframes policyFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Titles */
.policy-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

/* Policy Text Content */
.policy-text {
    line-height: 1.8;
    font-size: 16px;
    color: var(--gray-700);
}

.policy-text p {
    margin-bottom: 20px;
}

.policy-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-800);
    margin: 35px 0 20px;
}

.policy-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 25px 0 15px;
}

.policy-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 20px 0 12px;
}

.policy-text ul,
.policy-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-text li {
    margin-bottom: 10px;
}

.policy-text a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.policy-text a:hover {
    text-decoration: underline;
}

.policy-text strong {
    color: var(--gray-900);
    font-weight: 700;
}

.policy-text blockquote {
    border-left: 4px solid var(--primary-blue);
    padding: 15px 25px;
    margin: 25px 0;
    background: var(--gray-50);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--gray-700);
}

/* Last Updated */
.policy-last-updated {
    background: var(--light-blue);
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.policy-last-updated i {
    color: var(--primary-blue);
    font-size: 20px;
}

.policy-last-updated strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-page-header {
        padding: 40px 0;
    }
    
    .policy-page-header h1 {
        font-size: 32px;
    }
    
    .policy-page-header p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .policy-nav {
        width: 100%;
        padding: 6px;
    }
    
    .policy-tabs {
        flex-direction: column;
    }
    
    .policy-tab {
        justify-content: center;
        padding: 12px 20px;
    }
    
    .policy-content-section {
        padding: 30px 25px;
    }
    
    .policy-section-title {
        font-size: 24px;
    }
    
    .policy-text {
        font-size: 15px;
    }
    
    .policy-text h2 {
        font-size: 22px;
    }
    
    .policy-text h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .policy-page-header h1 {
        font-size: 28px;
    }
    
    .policy-content-section {
        padding: 25px 20px;
    }
    
    .policy-section-title {
        font-size: 22px;
    }
    
    .policy-text {
        font-size: 14px;
    }
    
    .policy-text h2 {
        font-size: 20px;
    }
    
    .policy-text h3 {
        font-size: 17px;
    }
    
    .policy-last-updated {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
/* ============================================================================
   COOKIE CONSENT BANNER - BOTTOM LEFT STYLE
   ============================================================================ */

/* Cookie Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 0;
    transform: translateX(-120%);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.cookie-consent-banner.show {
    transform: translateX(0);
}

.cookie-banner-content {
    padding: 20px;
}

.cookie-banner-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cookie-banner-icon {
    width: 40px;
    height: 40px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-banner-icon i {
    font-size: 20px;
    color: var(--primary-blue);
}

.cookie-banner-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.cookie-banner-text {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 16px;
}

.cookie-banner-text a {
    color: var(--primary-blue);
    text-decoration: none;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-primary {
    background: var(--primary-blue);
    color: white;
}

.cookie-btn-primary:hover {
    background: var(--primary-blue-dark);
}

.cookie-btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.cookie-btn-secondary:hover {
    background: var(--gray-200);
}

.cookie-btn-text {
    background: transparent;
    color: var(--gray-500);
}

.cookie-btn-text:hover {
    color: var(--primary-blue);
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 10px;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        text-align: center;
    }
}

/* ============================================================================
   COOKIE MANAGEMENT PANEL - FOR COOKIES POLICY PAGE
   ============================================================================ */

.cookie-manage-panel {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 28px;
    margin: 40px 0 30px;
    border: 1px solid var(--gray-200);
}

.cookie-manage-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-manage-title i {
    color: var(--primary-blue);
}

.cookie-manage-panel > p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cookie-pref-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 25px;
}

.cookie-pref-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}

.cookie-pref-item:hover {
    border-color: var(--primary-blue);
}

.cookie-pref-info {
    flex: 1;
}

.cookie-pref-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.cookie-pref-info p {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.4;
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.25s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.25s;
    border-radius: 50%;
}

input:checked + .cookie-toggle-slider {
    background-color: var(--primary-blue);
}

input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-badge-active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.cookie-manage-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cookie-manage-btn {
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.cookie-manage-btn-save {
    background: var(--primary-blue);
    color: white;
}

.cookie-manage-btn-save:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-1px);
}

.cookie-manage-btn-accept {
    background: #10b981;
    color: white;
}

.cookie-manage-btn-accept:hover {
    background: #0d9488;
    transform: translateY(-1px);
}

.cookie-manage-btn-decline {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.cookie-manage-btn-decline:hover {
    background: var(--gray-200);
}

.cookie-status-msg {
    margin-top: 18px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    text-align: center;
}

.cookie-status-msg.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.cookie-status-msg.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

@media (max-width: 768px) {
    .cookie-pref-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .cookie-manage-actions {
        justify-content: center;
    }
    
    .cookie-manage-panel {
        padding: 20px;
    }
}
/* ============================================================================
   FLOATING COOKIE SETTINGS BUTTON & MODAL
   ============================================================================ */

/* Floating Button - Left Side */
.cookie-settings-float {
    position: fixed;
    left: 20px;
    bottom: 100px;
    z-index: 9998;
    background: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    background: white;
}

.cookie-settings-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
    border-color: var(--primary-blue);
}

.cookie-settings-float i {
    font-size: 22px;
    color: var(--primary-blue);
}

/* Modal Overlay */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.cookie-modal-overlay.active {
    display: flex;
}

/* Modal Container */
.cookie-modal {
    background: white;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: cookieModalIn 0.3s ease;
}

@keyframes cookieModalIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cookie-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gray-50);
}

.cookie-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.cookie-modal-header h3 i {
    color: var(--primary-blue);
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-500);
    transition: color 0.2s;
}

.cookie-modal-close:hover {
    color: var(--gray-800);
}

.cookie-modal-body {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
}

.cookie-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    background: var(--gray-50);
}

/* Cookie Preferences List in Modal */
.cookie-modal-pref-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.cookie-modal-pref-item:last-child {
    border-bottom: none;
}

.cookie-modal-pref-info {
    flex: 1;
    padding-right: 20px;
}

.cookie-modal-pref-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.cookie-modal-pref-info p {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.4;
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.25s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.25s;
    border-radius: 50%;
}

input:checked + .cookie-toggle-slider {
    background-color: var(--primary-blue);
}

input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-badge-active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Modal Buttons */
.cookie-modal-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.cookie-modal-btn-primary {
    background: var(--primary-blue);
    color: white;
}

.cookie-modal-btn-primary:hover {
    background: var(--primary-blue-dark);
}

.cookie-modal-btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.cookie-modal-btn-secondary:hover {
    background: var(--gray-200);
}

.cookie-modal-btn-success {
    background: #10b981;
    color: white;
}

.cookie-modal-btn-success:hover {
    background: #0d9488;
}

/* Modal Status Message */
.cookie-modal-status {
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    text-align: center;
    display: none;
}

.cookie-modal-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

@media (max-width: 768px) {
    .cookie-settings-float {
        left: 15px;
        bottom: 80px;
        width: 42px;
        height: 42px;
    }
    
    .cookie-settings-float i {
        font-size: 18px;
    }
    
    .cookie-modal {
        width: 95%;
    }
    
    .cookie-modal-pref-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .cookie-modal-pref-info {
        padding-right: 0;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-btn {
        text-align: center;
    }
}
/* ============================================================================
   COOKIES POLICY PAGE 
   ============================================================================ */

/* Container */
.cookie-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Header */
.cookie-page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.cookie-page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cookie-page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Content Card */
.cookie-content-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
}

/* Section Titles */
.cookie-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

.cookie-text {
    line-height: 1.8;
    font-size: 16px;
    color: var(--gray-700);
}

.cookie-text p {
    margin-bottom: 20px;
}

.cookie-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-800);
    margin: 35px 0 15px;
}

.cookie-text ul,
.cookie-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.cookie-text li {
    margin-bottom: 10px;
}

.cookie-text strong {
    color: var(--gray-900);
}

/* Cookie Types Grid */
.cookie-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .cookie-types-grid {
        grid-template-columns: 1fr;
    }
}

.cookie-type-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.cookie-type-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.cookie-type-icon {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-blue);
    font-size: 24px;
}

.cookie-type-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.cookie-type-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Cookie Table */
.cookie-table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.cookie-table th {
    background: var(--primary-blue);
    color: white;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.cookie-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 14px;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:hover {
    background: var(--gray-50);
}

.cookie-table code {
    background: var(--gray-100);
    padding: 3px 8px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 13px;
}

/* Cookie Badges */
.cookie-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.cookie-badge-essential {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.cookie-badge-analytics {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.cookie-badge-preference {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

/* Cookie Management Box */
.cookie-management-box {
    background: var(--light-blue);
    border-radius: 20px;
    padding: 30px;
    margin: 35px 0;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.cookie-management-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-management-title i {
    color: var(--primary-blue);
}

.cookie-management-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 25px 0;
}

@media (max-width: 768px) {
    .cookie-management-steps {
        grid-template-columns: 1fr;
    }
}

.cookie-step {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.cookie-step-number {
    width: 36px;
    height: 36px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.cookie-step-content {
    flex: 1;
}

.cookie-step-title {
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
    font-size: 15px;
}

.cookie-step-content p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

.cookie-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray-600);
    padding: 12px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

/* Cookie Consent Box */
.cookie-consent-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    color: white;
    margin: 35px 0;
}

.cookie-consent-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.cookie-consent-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cookie-consent-box p {
    font-size: 14px;
    opacity: 0.95;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Last Updated */
.cookie-last-updated {
    background: var(--gray-50);
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    border: 1px solid var(--gray-200);
}

.cookie-last-updated i {
    color: var(--primary-blue);
    font-size: 20px;
}

.cookie-last-updated strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-page-header {
        padding: 40px 0;
    }
    
    .cookie-page-header h1 {
        font-size: 32px;
    }
    
    .cookie-page-header p {
        font-size: 16px;
    }
    
    .cookie-content-card {
        padding: 30px 25px;
    }
    
    .cookie-section-title {
        font-size: 24px;
    }
    
    .cookie-text h3 {
        font-size: 20px;
    }
    
    .cookie-management-box {
        padding: 25px;
    }
    
    .cookie-step {
        padding: 15px;
    }
    
    .cookie-consent-box {
        padding: 30px 25px;
    }
    
    .cookie-consent-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .cookie-page-header h1 {
        font-size: 28px;
    }
    
    .cookie-content-card {
        padding: 25px 20px;
    }
    
    .cookie-section-title {
        font-size: 22px;
    }
    
    .cookie-text h3 {
        font-size: 18px;
    }
    
    .cookie-type-card {
        padding: 20px;
    }
    
    .cookie-step {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-step-number {
        margin: 0 auto;
    }
    
    .cookie-consent-title {
        font-size: 18px;
    }
    
    .cookie-last-updated {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
/* ============================================================================
   RESET PASSWORD PAGE STYLES
   ============================================================================ */

.reset-body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f2f5 100%);
    min-height: 100vh;
}

.reset-main {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.reset-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.reset-container {
    background: var(--white);
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.reset-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.reset-header-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reset-header-icon i {
    font-size: 32px;
}

.reset-header h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.reset-header p {
    font-size: 14px;
    opacity: 0.9;
}

.reset-content {
    padding: 35px 30px;
}

/* Alert Messages */
.reset-alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: resetSlideIn 0.3s ease;
    font-size: 14px;
}

@keyframes resetSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reset-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--error);
}

.reset-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success);
}

/* Steps Indicator */
.reset-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.reset-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.reset-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.reset-step.active .reset-step-number {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.reset-step.completed .reset-step-number {
    background: var(--success);
    color: white;
}

.reset-step-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
}

.reset-step.active .reset-step-label {
    color: var(--primary-blue);
}

.reset-step.completed .reset-step-label {
    color: var(--success);
}

.reset-step-line {
    width: 60px;
    height: 2px;
    background: var(--gray-200);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.reset-step-line.completed {
    background: var(--success);
}

/* Back Link */
.reset-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.reset-back-link:hover {
    color: var(--primary-blue);
    transform: translateX(-3px);
}

/* Form Styles */
.reset-form {
    width: 100%;
}

.reset-form-group {
    margin-bottom: 20px;
}

.reset-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 13px;
}

.reset-input-wrapper {
    position: relative;
}

.reset-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 16px;
}

.reset-form-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.reset-form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.reset-form-input::placeholder {
    color: var(--gray-400);
}

.reset-hint {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 5px;
}

/* reCAPTCHA Container */
.reset-recaptcha-container {
    margin: 20px 0;
    padding: 10px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    display: flex;
    justify-content: center;
    overflow-x: auto;
}

/* Code Input Styles */
.reset-code-container {
    text-align: center;
}

.reset-code-label {
    display: block;
    text-align: center;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 15px;
    font-size: 16px;
}

.reset-auto-notice {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 13px;
}

.reset-auto-notice i {
    margin-right: 8px;
}

.reset-code-inputs {
    margin: 20px 0;
}

.reset-code-digit {
    width: 100%;
    height: 70px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-800);
    background: var(--white);
    outline: none;
    transition: all 0.3s ease;
    letter-spacing: 10px;
}

.reset-code-digit:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.reset-code-digit.filled {
    border-color: var(--primary-blue);
    background: var(--light-blue);
}

.reset-expiry-notice {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    margin: 15px 0;
    color: var(--warning);
    font-weight: 500;
    font-size: 13px;
}

.reset-expiry-notice i {
    margin-right: 8px;
}

.reset-code-instructions {
    text-align: center;
    color: var(--gray-500);
    font-size: 13px;
    margin-top: 15px;
}

.reset-code-instructions strong {
    color: var(--gray-700);
}

/* Buttons */
.reset-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.reset-btn-primary {
    background: var(--primary-blue);
    color: white;
}

.reset-btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.reset-btn-primary:active {
    transform: translateY(0);
}

.reset-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.reset-success {
    text-align: center;
    padding: 20px 0;
}

.reset-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reset-success-icon i {
    font-size: 48px;
    color: var(--success);
}

.reset-success h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.reset-success p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 600px) {
    .reset-main {
        padding: 20px 15px;
    }
    
    .reset-header {
        padding: 30px 20px;
    }
    
    .reset-header h1 {
        font-size: 24px;
    }
    
    .reset-content {
        padding: 25px 20px;
    }
    
    .reset-step-line {
        width: 40px;
    }
    
    .reset-code-digit {
        height: 60px;
        font-size: 24px;
        letter-spacing: 8px;
    }
    
    .reset-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .reset-success h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .reset-steps {
        margin-bottom: 25px;
    }
    
    .reset-step-number {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .reset-step-label {
        font-size: 10px;
    }
    
    .reset-step-line {
        width: 30px;
    }
    
    .reset-code-digit {
        height: 50px;
        font-size: 20px;
        letter-spacing: 5px;
    }
    
    .reset-form-input {
        padding: 12px 12px 12px 44px;
        font-size: 14px;
    }
    
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
    
    .reset-recaptcha-container {
        padding: 5px;
        justify-content: center;
    }
}
/* ============================================================================
   VERIFY EMAIL PAGE STYLES 
   ============================================================================ */

.verify-body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f2f5 100%);
    min-height: 100vh;
}

.verify-main {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.verify-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.verify-container {
    background: var(--white);
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.verify-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.verify-header-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.verify-header-icon i {
    font-size: 32px;
}

.verify-header h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.verify-header p {
    font-size: 14px;
    opacity: 0.9;
}

.verify-content {
    padding: 35px 30px;
}

/* Alert Messages */
.verify-alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: verifySlideIn 0.3s ease;
    font-size: 14px;
}

@keyframes verifySlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verify-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--error);
}

.verify-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success);
}

/* Steps Indicator */
.verify-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.verify-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.verify-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.verify-step.active .verify-step-number {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.verify-step.completed .verify-step-number {
    background: var(--success);
    color: white;
}

.verify-step-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
}

.verify-step.active .verify-step-label {
    color: var(--primary-blue);
}

.verify-step.completed .verify-step-label {
    color: var(--success);
}

.verify-step-line {
    width: 60px;
    height: 2px;
    background: var(--gray-200);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.verify-step-line.completed {
    background: var(--success);
}

/* Email Display */
.verify-email-display {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 25px;
    border: 1px solid var(--gray-200);
}

.verify-email-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.verify-email-address {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
    word-break: break-all;
}

/* Info Text */
.verify-info-text {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 14px;
}

/* Form Styles */
.verify-form {
    width: 100%;
}

/* reCAPTCHA Container */
.verify-recaptcha-container {
    margin: 20px 0;
    padding: 10px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    display: flex;
    justify-content: center;
    overflow-x: auto;
}

/* Code Input Styles */
.verify-code-container {
    text-align: center;
}

.verify-code-label {
    display: block;
    text-align: center;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 15px;
    font-size: 16px;
}

.verify-auto-notice {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 13px;
}

.verify-auto-notice i {
    margin-right: 8px;
}

.verify-code-inputs {
    margin: 20px 0;
}

.verify-code-digit {
    width: 100%;
    height: 70px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-800);
    background: var(--white);
    outline: none;
    transition: all 0.3s ease;
    letter-spacing: 10px;
}

.verify-code-digit:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.verify-code-digit.filled {
    border-color: var(--primary-blue);
    background: var(--light-blue);
}

.verify-expiry-notice {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    margin: 15px 0;
    color: var(--warning);
    font-weight: 500;
    font-size: 13px;
}

.verify-expiry-notice i {
    margin-right: 8px;
}

/* Buttons */
.verify-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.verify-btn-primary {
    background: var(--primary-blue);
    color: white;
}

.verify-btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.verify-btn-primary:active {
    transform: translateY(0);
}

.verify-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Resend Section */
.verify-resend-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.verify-resend-btn {
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.verify-resend-btn:hover:not(:disabled) {
    color: var(--primary-blue-dark);
    transform: translateY(-2px);
}

.verify-resend-btn:disabled {
    color: var(--gray-400);
    cursor: not-allowed;
}

.verify-resend-count {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.verify-countdown {
    color: var(--warning);
    font-weight: 600;
}

/* Success Message */
.verify-success {
    text-align: center;
    padding: 20px 0;
}

.verify-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.verify-success-icon i {
    font-size: 48px;
    color: var(--success);
}

.verify-success h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.verify-success p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Loading Spinner */
.verify-loading {
    margin-top: 25px;
}

.verify-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: verifySpin 1s linear infinite;
    margin: 0 auto 15px;
}

.verify-loading p {
    color: var(--gray-500);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 600px) {
    .verify-main {
        padding: 20px 15px;
    }
    
    .verify-header {
        padding: 30px 20px;
    }
    
    .verify-header h1 {
        font-size: 24px;
    }
    
    .verify-content {
        padding: 25px 20px;
    }
    
    .verify-step-line {
        width: 40px;
    }
    
    .verify-code-digit {
        height: 60px;
        font-size: 24px;
        letter-spacing: 8px;
    }
    
    .verify-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .verify-success h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .verify-steps {
        margin-bottom: 25px;
    }
    
    .verify-step-number {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .verify-step-label {
        font-size: 10px;
    }
    
    .verify-step-line {
        width: 30px;
    }
    
    .verify-email-address {
        font-size: 16px;
    }
    
    .verify-code-digit {
        height: 50px;
        font-size: 20px;
        letter-spacing: 5px;
    }
    
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
    
    .verify-recaptcha-container {
        padding: 5px;
        justify-content: center;
    }
    
    .verify-resend-count {
        flex-direction: column;
        gap: 5px;
    }
}
/* ============================================================================
   ABOUT US PAGE - CLEAN & CONSISTENT DESIGN
   ============================================================================ */

/* Container */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Header */
.about-page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.about-page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Content Cards */
.about-content-card,
.about-stats-card,
.about-team-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
}

/* Section Titles */
.about-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

/* Text Content */
.about-text {
    line-height: 1.8;
    font-size: 16px;
    color: var(--gray-700);
}

.about-text p {
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-800);
    margin: 30px 0 15px;
}

.about-highlight {
    color: var(--primary-blue);
    font-weight: 600;
}

/* MVP Grid */
.about-mvp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .about-mvp-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.about-mvp-item {
    background: var(--gray-50);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.about-mvp-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
}

.about-mvp-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.about-mvp-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.about-mvp-item p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 15px;
}

/* Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}

@media (max-width: 768px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
}

.about-stat-item {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
}

.about-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.about-stat-label {
    font-size: 14px;
    color: white;
    opacity: 0.9;
}

/* Team Grid */
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-team-grid {
        grid-template-columns: 1fr;
    }
}

.about-team-member {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.about-team-member:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
}

.about-team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 40px;
}

.about-team-member h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.about-team-role {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.about-team-member p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.5;
}

/* Quote Card */
.about-quote-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 40px;
}

.about-quote-icon {
    font-size: 48px;
    color: white;
    opacity: 0.3;
    margin-bottom: 20px;
}

.about-quote-text {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto 20px;
    color: white;
}

.about-quote-author {
    font-size: 16px;
    color: white;
    opacity: 0.9;
}

/* CTA Card */
.about-cta-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 60px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-cta-card h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.about-cta-card p {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-primary,
.about-cta-secondary {
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta-primary {
    background: var(--primary-blue);
    color: white;
}

.about-cta-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.about-cta-secondary {
    background: var(--gray-100);
    color: var(--gray-800);
    border: 2px solid var(--gray-200);
}

.about-cta-secondary:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .about-page-header {
        padding: 40px 0;
    }
    
    .about-page-header h1 {
        font-size: 32px;
    }
    
    .about-page-header p {
        font-size: 16px;
    }
    
    .about-content-card,
    .about-stats-card,
    .about-team-card {
        padding: 30px 25px;
    }
    
    .about-section-title {
        font-size: 24px;
    }
    
    .about-quote-text {
        font-size: 20px;
    }
    
    .about-cta-card h2 {
        font-size: 28px;
    }
    
    .about-cta-card {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .about-page-header h1 {
        font-size: 28px;
    }
    
    .about-content-card,
    .about-stats-card,
    .about-team-card {
        padding: 25px 20px;
    }
    
    .about-section-title {
        font-size: 22px;
    }
    
    .about-mvp-item {
        padding: 25px 20px;
    }
    
    .about-mvp-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .about-mvp-item h3 {
        font-size: 20px;
    }
    
    .about-stat-number {
        font-size: 28px;
    }
    
    .about-quote-text {
        font-size: 18px;
    }
    
    .about-cta-card h2 {
        font-size: 24px;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta-primary,
    .about-cta-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* ============================================================================
   CHECKOUT PAGE - FIXED CONSISTENT HEIGHT
   ============================================================================ */

/* Body */
.checkout-body {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f2f5 100%);
    min-height: 100vh;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
}

/* Main Container */
.checkout-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .checkout-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 25px;
        align-items: start;
    }
}

/* ========== LEFT COLUMN - CHECKOUT FORM ========== */
.checkout-form {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.checkout-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.checkout-back-link:hover {
    color: #2563eb;
    transform: translateX(-3px);
}

.checkout-header {
    margin-bottom: 28px;
}

.checkout-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.checkout-subtitle {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

/* Error & Success Messages */
.checkout-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Form Elements */
.checkout-form-element {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.checkout-form-group {
    margin-bottom: 24px;
}

.checkout-form-group:last-of-type {
    flex: 1;
}

.checkout-label {
    display: block;
    font-weight: 600;
    color: #374151;
    font-size: 13px;
    margin-bottom: 8px;
}

.checkout-input-wrapper {
    position: relative;
}

.checkout-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 16px;
}

.checkout-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: #f9fafb;
    color: #6b7280;
    cursor: not-allowed;
}

.checkout-hint {
    color: #9ca3af;
    font-size: 11px;
    margin-top: 6px;
    display: block;
}

/* Payment Methods Grid */
.checkout-payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .checkout-payment-methods {
        grid-template-columns: 1fr;
    }
}

.checkout-payment-method {
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.2s ease;
    background: white;
    cursor: pointer;
    position: relative;
}

.checkout-payment-method.available:hover {
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.checkout-payment-method.selected {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.checkout-payment-method.selected::after {
    content: '✓';
    position: absolute;
    top: -8px;
    right: -8px;
    background: #2563eb;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.checkout-payment-method.not-configured,
.checkout-payment-method.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.checkout-payment-method i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.checkout-payment-method.available i {
    color: #2563eb;
}

.checkout-payment-method.not-configured i,
.checkout-payment-method.disabled i {
    color: #9ca3af;
}

.checkout-payment-name {
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    margin-bottom: 6px;
}

.checkout-payment-status {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
}

.checkout-status-available {
    background: #dbeafe;
    color: #2563eb;
}

.checkout-status-not_configured {
    background: #fef3c7;
    color: #d97706;
}

.checkout-status-disabled {
    background: #f3f4f6;
    color: #6b7280;
}

/* Gateway Status Info */
.checkout-gateway-info {
    background: #f9fafb;
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 12px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

.checkout-status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 11px;
    color: #6b7280;
}

.checkout-status-item:last-child {
    margin-bottom: 0;
}

.checkout-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.checkout-status-dot.available {
    background: #10b981;
}

.checkout-status-dot.not-configured {
    background: #f59e0b;
}

.checkout-status-dot.disabled {
    background: #9ca3af;
}

/* Submit Button */
.checkout-submit-btn {
    width: 100%;
    padding: 16px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.checkout-submit-btn:hover:not(:disabled) {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.checkout-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Security Badge */
.checkout-security {
    text-align: center;
    margin-top: 24px;
    color: #9ca3af;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-security i {
    color: #10b981;
}

/* ========== RIGHT COLUMN - ORDER SUMMARY (FIXED HEIGHT) ========== */
.checkout-summary {
    background: linear-gradient(145deg, #1a1f2e, #0f1119);
    color: white;
    border-radius: 28px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 992px) {
    .checkout-summary {
        height: auto;
    }
}

.checkout-summary-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.checkout-summary-header h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.checkout-summary-item {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.checkout-plan-name {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

.checkout-plan-desc {
    opacity: 0.6;
    font-size: 13px;
    line-height: 1.4;
}

/* Scrollable Content Area - FIXES HEIGHT ISSUES */
.checkout-scrollable {
    flex: 1;
    overflow-y: auto;
    margin: 0 -4px;
    padding: 0 4px;
}

.checkout-scrollable::-webkit-scrollbar {
    width: 4px;
}

.checkout-scrollable::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.checkout-scrollable::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 14px;
    opacity: 0.75;
}

/* Credits Box */
.checkout-credits-box {
    background: rgba(59, 130, 246, 0.12);
    border-radius: 16px;
    padding: 16px;
    margin: 16px 0;
    border-left: 4px solid #3b82f6;
}

.checkout-credits-box h4 {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.checkout-credits-amount {
    font-size: 28px;
    font-weight: 800;
    color: #60a5fa;
    letter-spacing: -0.5px;
}

.checkout-credits-note {
    font-size: 11px;
    opacity: 0.5;
    margin-top: 6px;
}

/* Subscription Box */
.checkout-subscription-box {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 16px;
    margin: 16px 0;
}

.checkout-subscription-box h4 {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-date-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
}

.checkout-date-label {
    opacity: 0.5;
}

.checkout-date-value {
    color: #fbbf24;
    font-weight: 500;
}

/* Total - FIXED AT BOTTOM */
.checkout-total {
    text-align: center;
    margin: 20px 0 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.checkout-total-amount {
    font-size: 34px;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.checkout-total-period {
    font-size: 12px;
    opacity: 0.5;
    margin-top: 4px;
}

/* Features List - FIXED AT BOTTOM */
.checkout-features {
    margin-top: 16px;
    flex-shrink: 0;
}

.checkout-features p {
    margin-bottom: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
}

.checkout-features p:last-child {
    margin-bottom: 0;
}

.checkout-features i {
    color: #10b981;
    font-size: 12px;
    width: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-body {
        padding: 20px 15px;
    }
    
    .checkout-form {
        padding: 24px;
    }
    
    .checkout-header h1 {
        font-size: 24px;
    }
    
    .checkout-summary {
        padding: 24px;
    }
    
    .checkout-summary-header h2 {
        font-size: 20px;
    }
    
    .checkout-credits-amount {
        font-size: 24px;
    }
    
    .checkout-total-amount {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .checkout-form {
        padding: 20px;
    }
    
    .checkout-header h1 {
        font-size: 22px;
    }
    
    .checkout-summary {
        padding: 20px;
    }
    
    .checkout-summary-header h2 {
        font-size: 18px;
    }
    
    .checkout-credits-amount {
        font-size: 22px;
    }
    
    .checkout-total-amount {
        font-size: 24px;
    }
    
    .checkout-payment-method {
        padding: 12px;
    }
    
    .checkout-payment-method i {
        font-size: 24px;
    }
}
/* ============================================================================
   FOOTER STYLES - COMPLETE FIXED VERSION
   ============================================================================ */

footer {
    background: var(--gray-900);
    color: white;
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-icon {
    height: 40px;
    width: auto;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.footer-tagline {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-blue);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

/* Newsletter Text */
.footer-newsletter-text {
    color: var(--gray-400);
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.footer-newsletter-note {
    color: var(--gray-500);
    font-size: 12px;
    margin-top: 10px;
}

/* Newsletter Form - ORIGINAL STYLES RESTORED */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--gray-700);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.newsletter-input::placeholder {
    color: var(--gray-500);
}

.newsletter-btn {
    padding: 12px 24px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

.newsletter-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Subscribe button (alternative class) */
.subscribe-btn {
    padding: 12px 24px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

.subscribe-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Subscription message styles */
.subscription-message {
    margin-top: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.subscription-message.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.subscription-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.subscription-message.info {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--gray-400);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 50px 0 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
}
/* ============================================================================
   RESPONSIVE DESIGN (Global Media Queries)
   ============================================================================ */
@media (max-width: 1200px) {
    .hero-container {
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content h1 .main-title {
        font-size: 48px;
    }
}

@media (max-width: 1024px) {
    /* Navigation */
    .nav-center,
    .nav-right {
        display: none !important;
    }

    .mobile-toggle-btn {
        display: flex;
    }

    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content h1 .main-title {
        font-size: 44px;
    }

    .hero-stats {
        justify-content: center;
    }

    .upload-area {
        max-width: 600px;
        margin: 0 auto;
    }

    /* Import Grid */
    .import-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    /* Steps Grid */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Demo Section */
    .demo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .demo-content h2 {
        font-size: 36px;
    }

    /* Integrations */
    .integrations-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Trust Badges */
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Featured Article */
    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 300px;
    }

    .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    /* Article Layout */
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-title {
        font-size: 2.2rem;
    }

    /* Login/Register */
    .login-container,
    .auth-container {
        flex-direction: column;
        max-width: 600px;
        margin: 0 auto;
        min-height: auto;
    }

    .login-left-side,
    .login-right-side,
    .auth-left,
    .auth-right {
        flex: 1;
        padding: 40px 30px;
        min-height: auto;
        width: 100%;
    }

    .login-left-side,
    .auth-left {
        padding-bottom: 30px;
    }

    .login-right-side,
    .auth-right {
        padding-top: 30px;
    }

    /* Checkout */
    .checkout-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .order-summary {
        order: -1;
    }

    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* General */
    .section-title {
        font-size: 28px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Hero */
    .hero-section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h1 .main-title {
        font-size: 36px;
    }

    .hero-content .subtitle {
        font-size: 18px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        flex: none;
        min-width: 120px;
    }

    .upload-area {
        padding: 40px 30px;
        min-height: 280px;
    }

    .upload-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .upload-text h3 {
        font-size: 20px;
    }

    .upload-text p {
        font-size: 15px;
    }

    .upload-btn {
        padding: 12px 28px;
        font-size: 15px;
    }

    .cta-btn {
        padding: 14px 32px;
        font-size: 16px;
    }

    .image-preview {
        max-height: 150px;
    }

    .options-row {
        margin-top: 15px;
        flex-direction: column;
        align-items: stretch;
    }

    .language-group,
    .keywords-group {
        min-width: 100%;
    }

    .fixed-upload-wrapper {
        min-height: 280px;
    }

    /* Import Grid */
    .import-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Steps Grid */
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Integrations */
    .integrations-section .section-title {
        font-size: 28px;
        margin-bottom: 50px;
        padding: 0 15px;
    }

    .integrations-subtitle {
        font-size: 16px;
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .integrations-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .integration-card {
        padding: 35px 30px;
    }

    /* Pricing */
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 12px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 200px;
    }

    /* Credit Packs */
    .credit-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .credit-purchase {
        justify-content: center;
    }

    .purchase-controls {
        flex-direction: column;
        gap: 10px;
    }

    /* FAQ */
    .faq-section {
        padding: 60px 0;
    }

    .faq-header h2 {
        font-size: 32px;
    }

    .faq-header p {
        font-size: 16px;
        padding: 0 15px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .question-text {
        font-size: 16px;
    }

    .answer-content {
        padding: 0 20px 20px;
        font-size: 15px;
    }

    /* Final CTA */
    .final-cta h2 {
        font-size: 32px;
    }

    /* Blog */
    .page-header {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .section-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .featured-content {
        padding: 2rem;
    }

    .featured-content h2 {
        font-size: 1.6rem;
    }

    .newsletter-section {
        padding: 3rem 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .category-filters {
        justify-content: center;
    }

    /* Article Page */
    .article-header {
        padding: 3rem 0;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .article-excerpt {
        font-size: 1.1rem;
    }

    .article-content-card {
        padding: 2rem;
    }

    .content-header {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin: 0 auto;
    }

    .article-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* Login/Register */
    .login-main,
    .auth-main {
        padding: 90px 15px 40px;
    }

    .login-wrapper,
    .auth-wrapper {
        padding: 0 15px;
    }

    .login-container,
    .auth-container {
        border-radius: 16px;
    }

    .login-left-side,
    .login-right-side,
    .auth-left,
    .auth-right {
        padding: 30px 25px;
    }

    .login-brand-content h1,
    .brand-content h1 {
        font-size: 26px;
    }

    .login-form-header h2,
    .form-header h2 {
        font-size: 24px;
    }

    .login-social-buttons,
    .social-login {
        flex-direction: column;
    }

    .login-auth-form,
    .auth-form {
        max-width: 100%;
    }

    /* Contact */
    .page-header {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }

    /* Policy Pages */
    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .cookie-types {
        grid-template-columns: 1fr;
    }

    .cookie-table {
        display: block;
        overflow-x: auto;
    }

    .management-steps {
        grid-template-columns: 1fr;
    }

    .nav-tabs {
        flex-direction: column;
    }

    .nav-tab {
        justify-content: center;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 768px) {
    /* Login Page */
    .login-main,
    .auth-main {
        padding: 20px 15px !important;
    }
    
    .login-wrapper,
    .auth-wrapper {
        padding: 0 !important;
        width: 100% !important;
    }
    
    .login-container,
    .auth-container {
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 20px !important;
        margin: 0 !important;
    }
    
    .login-right-side,
    .auth-right {
        padding: 30px 25px !important;
        width: 100% !important;
    }
    
    .login-left-side,
    .auth-left {
        padding: 30px 25px !important;
        width: 100% !important;
    }
    
    .login-form-content,
    .auth-right-content {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Register Page specific */
    .register-container {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .register-wrapper {
        padding: 0 !important;
    }
    
    .register-main {
        padding: 20px 15px !important;
    }
}

@media (max-width: 480px) {
    .login-right-side,
    .auth-right,
    .register-right {
        padding: 25px 20px !important;
    }
    
    .login-left-side,
    .auth-left,
    .register-left {
        padding: 25px 20px !important;
    }
}

@media (max-width: 640px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .plan-card {
        max-width: 100%;
    }

    .import-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .import-card {
        padding: 30px 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .checkout-form,
    .order-summary {
        padding: 30px;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .order-total {
        font-size: 28px;
    }

    .subscription-dates,
    .credits-info {
        padding: 12px;
    }
}
@media (max-width: 768px) {
    .ai-visibility [style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .ai-visibility .feature-card {
        padding: 25px !important;
    }
    
    .ai-visibility [style*="font-family: monospace"] {
        font-size: 12px !important;
        padding: 12px !important;
        word-break: break-word !important;
        overflow-x: auto !important;
    }
    
    .ai-visibility p[style*="font-size: 15px"] {
        font-size: 14px !important;
    }
    
    .ai-visibility .features-header h2 {
        font-size: 28px !important;
    }
    
    .ai-visibility .section-subtitle-small {
        font-size: 16px !important;
    }
}
@media (max-width: 480px) {
    /* General */
    .section-title {
        font-size: 24px;
    }

    .container {
        padding: 0 15px;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h1 .main-title {
        font-size: 32px;
    }

    .hero-content .badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .hero-content .subtitle {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .stat-item {
        width: 100%;
        text-align: center;
    }

    .upload-area {
        padding: 30px 20px;
        min-height: 260px;
    }

    .upload-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .upload-btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .file-types {
        gap: 8px;
    }

    .file-type {
        padding: 5px 10px;
        font-size: 12px;
    }

    .cta-btn {
        padding: 12px 28px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }

    .image-preview {
        max-height: 140px;
    }

    .preview-actions {
        margin-top: 15px;
    }

    .fixed-upload-wrapper {
        min-height: 260px;
    }

    /* AI Visibility Section */
    .ai-visibility {
        padding: 50px 0 !important;
    }

    .ai-visibility h2 {
        font-size: 24px !important;
    }

    .ai-visibility [style*="font-size: 18px"] {
        font-size: 15px !important;
    }

    .ai-visibility [style*="max-width: 700px"] {
        font-size: 15px !important;
    }

    .ai-visibility .feature-card {
        padding: 20px !important;
    }

    .ai-visibility [style*="font-family: monospace"] {
        font-size: 12px !important;
        padding: 10px !important;
    }

    /* Integrations */
    .integrations-section .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .integrations-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .integration-metrics {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        gap: 5px;
    }

    .integration-metric {
        flex: 1;
        padding: 0 5px;
    }

    .integration-metric-value {
        font-size: 16px;
    }

    .integration-metric-label {
        font-size: 10px;
        white-space: nowrap;
    }

    /* FAQ */
    .faq-section {
        padding: 50px 0;
    }

    .faq-header h2 {
        font-size: 28px;
    }

    .faq-question {
        padding: 15px 18px;
    }

    .question-text {
        font-size: 15px;
    }

    .faq-icon {
        font-size: 22px;
        margin-left: 15px;
    }

    /* Final CTA */
    .final-cta h2 {
        font-size: 28px;
    }

    .final-cta p {
        font-size: 16px;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 16px;
    }

    /* Blog */
    .article-meta {
        flex-direction: column;
        gap: 12px;
    }

    .featured-content h2 {
        font-size: 1.4rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Article Page */
    .article-title {
        font-size: 1.6rem;
    }

    .article-excerpt {
        font-size: 1rem;
    }

    .sidebar-widget {
        padding: 1.5rem;
    }

    .related-article {
        flex-direction: column;
    }

    .related-image {
        width: 100%;
        height: 120px;
    }

    /* Login/Register */
    .login-left-side,
    .login-right-side,
    .auth-left,
    .auth-right {
        padding: 25px 20px;
    }

    .login-brand-content h1,
    .brand-content h1 {
        font-size: 24px;
    }

    .login-brand-content p,
    .brand-content p {
        font-size: 15px;
    }

    .login-features-list li,
    .features-list li {
        font-size: 14px;
    }

    .login-feature-icon,
    .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .login-form-header h2,
    .form-header h2 {
        font-size: 22px;
    }

    .login-form-header p,
    .form-header p {
        font-size: 14px;
    }

    .login-form-input,
    .form-input {
        padding: 12px 12px 12px 44px;
        font-size: 14px;
    }

    .login-input-icon,
    .input-icon {
        left: 14px;
        font-size: 16px;
    }

    .login-submit-btn,
    .submit-btn {
        padding: 14px;
        font-size: 15px;
    }

    /* Contact */
    .contact-method {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-icon {
        margin-bottom: 10px;
    }

    /* Policy Pages */
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .policy-content h2 {
        font-size: 1.2rem;
    }

    .policy-content h3 {
        font-size: 1.1rem;
    }

    .cookie-management {
        padding: 1.5rem;
    }

    /* Credit Packs */
    .credit-purchase {
        flex-direction: column;
        gap: 15px;
    }

    .purchase-summary {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .upload-area {
        padding: 25px 15px;
        min-height: 240px;
    }

    .upload-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .image-preview {
        max-height: 120px;
    }

    .fixed-upload-wrapper {
        min-height: 240px;
    }

    .integration-card {
        padding: 25px 20px;
    }

    .integration-metric-value {
        font-size: 15px;
    }

    .integration-metric-label {
        font-size: 9px;
    }

    .ai-visibility .feature-card {
        padding: 18px !important;
    }

    .ai-visibility h2 {
        font-size: 22px !important;
    }

    .ai-visibility [style*="font-family: monospace"] {
        font-size: 11px !important;
    }
}

/* ============================================================================
   UTILITY CLASSES & ANIMATIONS
   ============================================================================ */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.badge-yellow {
    background: var(--warning) !important;
    color: white !important;
    animation: pulse 2s infinite !important;
}

.badge-blue {
    background: var(--primary-blue) !important;
    color: white !important;
}

.dropdown-badge {
    flex-shrink: 0 !important;
    margin-left: auto !important;
}

.result-stats {
    display: none;
}

.result-actions {
    display: none !important;
}

.mobile-nav-header .mobile-auth-section {
    display: none !important;
}