/* ============================================
   VIEXOR START - Global Styles
   ============================================ */

:root {
    /* Colors - Dark Theme (Default) */
    --bg-primary: #0a0a1a;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --bg-card: rgba(26, 26, 46, 0.8);
    --bg-card-hover: rgba(26, 26, 46, 0.95);

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --accent-purple: #7c3aed;
    --accent-purple-light: #a855f7;
    --accent-cyan: #06b6d4;
    --accent-cyan-light: #22d3ee;
    --accent-blue: #3b82f6;

    --success: #10b981;
    --success-bg: rgba(16, 185, 129, 0.1);
    --warning: #f59e0b;
    --warning-bg: rgba(245, 158, 11, 0.1);
    --danger: #ef4444;
    --danger-bg: rgba(239, 68, 68, 0.1);

    --border: rgba(148, 163, 184, 0.1);
    --border-hover: rgba(124, 58, 237, 0.3);

    --gradient-primary: linear-gradient(135deg, #7c3aed, #06b6d4);
    --gradient-hero: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px 0;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.2);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-card-hover: rgba(255, 255, 255, 1);

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;

    --success-bg: rgba(16, 185, 129, 0.1);
    --warning-bg: rgba(245, 158, 11, 0.1);
    --danger-bg: rgba(239, 68, 68, 0.1);

    --border: rgba(148, 163, 184, 0.3);
    --border-hover: rgba(124, 58, 237, 0.5);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.15);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ============================================
   Labs Top Bar
   ============================================ */

.labs-topbar {
    background: rgba(124, 58, 237, 0.12);
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    padding: 6px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    backdrop-filter: blur(10px);
    text-align: center;
}

[data-theme="light"] .labs-topbar {
    background: rgba(124, 58, 237, 0.06);
}

.labs-topbar-link {
    color: var(--accent-purple-light);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.labs-topbar-link:hover {
    color: var(--text-primary);
    text-decoration: none;
}

/* ============================================
   Background Animation
   ============================================ */



/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background-color 0.3s ease;
}

[data-theme="light"] .navbar {
    background: rgba(248, 250, 252, 0.85);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 45px;
    width: auto;
}

.logo-icon {
    font-size: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Theme Toggle */
.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    border-color: var(--accent-purple);
    transform: rotate(15deg);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent-purple);
    background: rgba(124, 58, 237, 0.05);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-purple-light);
    margin-top: 24px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-purple-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Visual Card */
.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.hero-card {
    width: 100%;
    max-width: 380px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

[data-theme="light"] .card-header {
    background: rgba(0, 0, 0, 0.03);
}

.card-dots {
    display: flex;
    gap: 6px;
}

.card-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.card-dots span:nth-child(1) { background: #ef4444; opacity: 0.8; }
.card-dots span:nth-child(2) { background: #f59e0b; opacity: 0.8; }
.card-dots span:nth-child(3) { background: #10b981; opacity: 0.8; }

.card-title {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.card-body {
    padding: 20px;
    position: relative;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {
    0% { top: 0; opacity: 1; }
    50% { top: 100%; opacity: 0.5; }
    100% { top: 0; opacity: 1; }
}

.card-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.card-result:nth-child(2) { animation-delay: 0.5s; }
.card-result:nth-child(3) { animation-delay: 1s; }
.card-result:nth-child(4) { animation-delay: 1.5s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.result-success { background: var(--success-bg); }
.result-warning { background: var(--danger-bg); }

.result-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.result-success .result-icon { background: var(--success); color: white; }
.result-warning .result-icon { background: var(--danger); color: white; }

.result-badge {
    margin-left: auto;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}

.badge-available { background: var(--success-bg); color: var(--success); border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-taken { background: var(--danger-bg); color: var(--danger); border: 1px solid rgba(239, 68, 68, 0.3); }

/* ============================================
   Sections Common
   ============================================ */

.section-container {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-purple-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   Features Section
   ============================================ */

.features {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-domain {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
}

.feature-icon-trademark {
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-purple-light);
}

.feature-icon-app {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tags span {
    padding: 4px 10px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 100px;
    font-size: 12px;
    color: var(--accent-purple-light);
    font-weight: 500;
}

/* ============================================
   Search Section
   ============================================ */

.search-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
}

.search-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select {
    background: rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-hint {
    font-size: 12px;
    color: var(--text-muted);
}

/* Extensions */
.extensions-group {
    margin-top: 8px;
}

.extensions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ext-checkbox {
    cursor: pointer;
}

.ext-checkbox input {
    display: none;
}

.ext-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

[data-theme="light"] .ext-label {
    background: rgba(0, 0, 0, 0.05);
}

.ext-checkbox input:checked + .ext-label {
    background: rgba(124, 58, 237, 0.15);
    border-color: var(--accent-purple);
    color: var(--accent-purple-light);
}

.ext-label:hover {
    border-color: var(--accent-purple);
}

/* ============================================
   Scanning Section
   ============================================ */

.scanning-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
}

.scanning-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.scanning-header {
    text-align: center;
    margin-bottom: 32px;
}

.scanning-pulse {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    animation: scanPulse 1.5s ease-in-out infinite;
    position: relative;
}

.scanning-pulse::before,
.scanning-pulse::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
    animation: ripple 1.5s ease-in-out infinite;
}

.scanning-pulse::after {
    inset: -16px;
    animation-delay: 0.3s;
}

@keyframes scanPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes ripple {
    0% { opacity: 0.6; transform: scale(0.8); }
    100% { opacity: 0; transform: scale(1.5); }
}

.scanning-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.scanning-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Progress Bar */
.progress-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    overflow: hidden;
}

[data-theme="light"] .progress-bar {
    background: rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 100px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-purple-light);
    min-width: 40px;
}

/* Scan Steps */
.scanning-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scan-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

[data-theme="light"] .scan-step {
    background: rgba(0, 0, 0, 0.03);
}

.scan-step.active {
    border-color: var(--accent-purple);
    background: rgba(124, 58, 237, 0.05);
}

.scan-step.completed {
    border-color: var(--success);
    background: var(--success-bg);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-purple-light);
    flex-shrink: 0;
}

.scan-step.completed .step-icon {
    background: var(--success-bg);
    color: var(--success);
}

.step-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.step-title {
    font-size: 14px;
    font-weight: 600;
}

.step-desc {
    font-size: 12px;
    color: var(--text-muted);
}

.step-status {
    display: flex;
    align-items: center;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.5;
}

.scan-step.active .status-dot {
    background: var(--accent-purple-light);
    animation: pulse 1s ease-in-out infinite;
    opacity: 1;
}

.scan-step.completed .status-dot {
    background: var(--success);
    opacity: 1;
}

/* ============================================
   Results Section
   ============================================ */

.results-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
}

.results-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.summary-card:hover {
    border-color: var(--border-hover);
}

.summary-card .summary-value {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
}

.summary-card .summary-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.summary-card.card-success .summary-value { color: var(--success); }
.summary-card.card-warning .summary-value { color: var(--warning); }
.summary-card.card-danger .summary-value { color: var(--danger); }
.summary-card.card-info .summary-value { color: var(--accent-cyan); }

/* Tabs */
.results-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px;
    border-radius: var(--radius-md);
    overflow-x: auto;
}

[data-theme="light"] .results-tabs {
    background: rgba(0, 0, 0, 0.05);
}

.tab-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--accent-purple);
    color: #ffffff;
}

/* Results Table */
.results-table-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.result-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    gap: 12px;
}

.result-row:last-child {
    border-bottom: none;
}

.result-row:hover {
    background: rgba(124, 58, 237, 0.03);
}

.result-row-header {
    background: rgba(0, 0, 0, 0.3);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="light"] .result-row-header {
    background: rgba(0, 0, 0, 0.05);
}

.result-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.result-name .name-main {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.result-name .name-domain {
    font-size: 12px;
    color: var(--text-muted);
}

.result-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.status-available {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-taken {
    background: var(--danger-bg);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.status-warning {
    background: var(--warning-bg);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.result-score {
    display: flex;
    align-items: center;
    gap: 8px;
}

.score-bar {
    width: 60px;
    height: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    overflow: hidden;
}

[data-theme="light"] .score-bar {
    background: rgba(0, 0, 0, 0.1);
}

.score-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 0.5s ease;
}

.score-high .score-fill { background: var(--success); }
.score-medium .score-fill { background: var(--warning); }
.score-low .score-fill { background: var(--danger); }

.score-text {
    font-size: 13px;
    font-weight: 700;
}

.score-high .score-text { color: var(--success); }
.score-medium .score-text { color: var(--warning); }
.score-low .score-text { color: var(--danger); }

/* Results Actions */
.results-actions {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding-top: 60px;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.footer-brand a {
    display: inline-block;
}

.footer-logo {
    height: 36px;
    width: auto;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-purple-light);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-purple);
    color: white;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-purple-light);
}

.footer-contacts {
    list-style: none;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-contacts svg {
    flex-shrink: 0;
    color: var(--accent-purple-light);
}

.footer-powered {
    display: flex;
    flex-direction: column;
}

.footer-powered-link {
    display: inline-block;
    margin-bottom: 12px;
}

.footer-logo-bottom {
    height: 28px;
    width: auto;
}

.footer-powered-text {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-note {
    width: fit-content;
    margin: 0 auto 32px;
    padding: 10px 16px;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom:20px;
}

.footer-note p {
    font-size: 12px;
    color: var(--warning);
}

.logo-light {
    display: none;
}

[data-theme="light"] .logo-dark {
    display: none;
}

[data-theme="light"] .logo-light {
    display: block;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Global link styles */
a {
    color: var(--accent-purple-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-cyan-light);
    text-decoration: underline;
}

/* ============================================
   Navigation Logo
   ============================================ */

.nav-logo {
    height: 35px;
    width: auto;
}

/* ============================================
   Feature Stats
   ============================================ */

.feature-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(124, 58, 237, 0.08);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-purple-light);
}

.feature-stat .stat-icon {
    font-size: 16px;
}

/* ============================================
   How It Works Section
   ============================================ */

.how-it-works {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 16px auto 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-purple-light);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Trust Section
   ============================================ */

.trust-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.trust-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.trust-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Results Actions
   ============================================ */

.results-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 100px 20px 60px;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .search-form-container {
        padding: 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .scanning-container {
        padding: 24px;
    }

    .result-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .result-row-header {
        display: none;
    }

    .results-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .extensions-grid {
        gap: 6px;
    }

    .ext-label {
        padding: 6px 12px;
        font-size: 13px;
    }

    .results-summary-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Animations & Utilities
   ============================================ */

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

/* ============================================
   Pricing Page Styles
   ============================================ */

.pricing-hero {
    position: relative;
    z-index: 1;
    padding: 120px 0 60px;
}

.pricing-section {
    position: relative;
    z-index: 1;
    padding: 0 0 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.pricing-card.popular {
    border-color: var(--accent-purple);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
}

.pricing-card.best-value {
    border-color: var(--success);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.popular-badge,
.best-value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-badge {
    background: var(--gradient-primary);
    color: white;
}

.best-value-badge {
    background: var(--success);
    color: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-price {
    text-align: center;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-savings {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-savings span {
    display: inline-block;
    padding: 4px 12px;
    background: var(--success-bg);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--success);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Comparison Table */
.comparison-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
}

.comparison-table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.3);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

[data-theme="light"] .comparison-table th {
    background: rgba(0, 0, 0, 0.05);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
    font-weight: 700;
    background: rgba(124, 58, 237, 0.05);
}

.comparison-table td {
    font-size: 14px;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
}

.faq-question svg {
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
}

/* ============================================
   Bank Transfer / Havale-EFT Section
   ============================================ */

.payment-alt-section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
}

.payment-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.payment-divider::before,
.payment-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.payment-divider span {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 8px;
}

.bank-transfer-card {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    transition: var(--transition);
}

.bank-transfer-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.bank-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(6, 182, 212, 0.12));
    color: var(--success);
}

.bank-transfer-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.bank-transfer-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.bank-transfer-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--border-hover);
    background: transparent;
    color: var(--accent-purple-light);
}

.bank-transfer-card .btn:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
    transform: translateY(-2px);
}

/* ============================================
   Payment Page Styles
   ============================================ */

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    border-color: var(--accent-purple);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        flex-direction: column;
        gap: 16px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        font-size: 16px;
        padding: 12px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-links a:last-of-type {
        border-bottom: none;
    }
    
    .nav-links .theme-toggle {
        margin-top: 8px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* ============================================
   Payment Page Styles
   ============================================ */

.payment-section {
    position: relative;
    z-index: 1;
    padding: 120px 0 100px;
}

.payment-header {
    text-align: center;
    margin-bottom: 60px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.payment-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.payment-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.payment-card.recommended {
    border-color: var(--accent-purple);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
}

.payment-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.payment-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-purple-light);
}

.payment-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.payment-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.payment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.payment-features span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 100px;
    font-size: 12px;
    color: var(--accent-purple-light);
    font-weight: 500;
}

.payment-security {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.security-item svg {
    color: var(--success);
}

/* Payment Modal */
.payment-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.payment-modal-overlay.active {
    display: flex;
}

.payment-modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

.modal-body {
    padding: 24px 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.payment-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.payment-total span:first-child {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

.payment-total span:last-child {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bank-details {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

[data-theme="light"] .bank-details {
    background: rgba(0, 0, 0, 0.03);
}

.bank-details p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.bank-details strong {
    color: var(--text-primary);
}

.bank-note {
    padding: 12px 16px;
    background: var(--warning-bg);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-sm);
}

.bank-note p {
    font-size: 13px;
    color: var(--warning);
}

@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .payment-security {
        flex-direction: column;
        gap: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */

.contact-page-section {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.contact-iframe {
    width: 100%;
    min-height: 500px;
    border: none;
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.contact-info-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.contact-info-card h3 svg {
    color: var(--accent-purple-light);
    flex-shrink: 0;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-note {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-muted);
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 100px;
}

[data-theme="light"] .contact-note {
    background: rgba(0, 0, 0, 0.05);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(124, 58, 237, 0.08);
    color: var(--accent-purple-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-purple);
    color: white;
    transform: translateY(-2px);
}

/* Contact Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .contact-page-section {
        padding: 100px 0 60px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-header {
        margin-bottom: 40px;
    }
}
