/* ============================================
   Easy Expired Domains - Main Stylesheet
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ============================================
   CSS Variables
   ============================================ */
:root {
  /* Peach Scale (Primary) */
  --peach-50: #FFF8F5;
  --peach-100: #FFF1EB;
  --peach-200: #FFE4D6;
  --peach-300: #FFD1BA;
  --peach-400: #FFB896;
  --peach-500: #FF9B6A;
  --peach-600: #FF7D3D;
  --peach-700: #E86520;
  --peach-800: #C24E10;
  --peach-900: #9C3B08;
  
  /* Cream Scale */
  --cream-50: #FFFDF9;
  --cream-100: #FFF9F0;
  --cream-200: #FFF3E0;
  
  /* Coral Scale */
  --coral-400: #FF9580;
  --coral-500: #FF7058;
  
  /* Slate Scale */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  
  /* Status Colors */
  --emerald-100: #d1fae5;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  
  --amber-100: #fef3c7;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  
  /* Fonts */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Shadows */
  --shadow-soft: 0 4px 20px -2px rgba(255, 155, 106, 0.15);
  --shadow-glow: 0 0 40px -10px rgba(255, 155, 106, 0.4);
  --shadow-card: 0 8px 32px -8px rgba(0, 0, 0, 0.1);
  --shadow-card-hover: 0 16px 48px -12px rgba(255, 125, 61, 0.25);
  
  /* Spacing */
  --header-height: 80px;
  --sidebar-width: 280px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-800);
  background-color: var(--peach-50);
  min-height: 100vh;
}

::selection {
  background-color: var(--peach-300);
  color: var(--peach-900);
}

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

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

a:hover {
  color: var(--peach-700);
}

ul, ol {
  list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--slate-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.5rem; }
}

.text-gradient {
  background: linear-gradient(to right, var(--peach-600), var(--coral-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.font-mono {
  font-family: var(--font-mono);
}

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

/* Grid System */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--peach-100);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--peach-400), var(--peach-600));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease;
}

.logo:hover .logo-icon {
  box-shadow: var(--shadow-glow);
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--slate-800);
}

.logo-text .highlight {
  color: var(--peach-600);
}

/* Navigation */
.main-nav {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .main-nav { display: flex; }
}

.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  color: var(--slate-600);
  font-weight: 500;
  transition: color 0.2s ease;
  border-radius: 8px;
}

.nav-link:hover {
  color: var(--peach-600);
}

.nav-link.active {
  color: var(--peach-600);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--peach-500);
  border-radius: 2px;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-actions { display: flex; }
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: var(--slate-700);
}

.mobile-menu-btn:hover {
  background: var(--peach-100);
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 99;
  padding: 1rem;
  flex-direction: column;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 1rem;
  color: var(--slate-700);
  font-weight: 500;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.mobile-menu a:hover {
  background: var(--peach-50);
}

.mobile-menu a.active {
  background: var(--peach-100);
  color: var(--peach-700);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: linear-gradient(to right, var(--peach-500), var(--peach-600));
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover:not(:disabled) {
  background: linear-gradient(to right, var(--peach-600), var(--peach-700));
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: var(--peach-700);
  border: 2px solid var(--peach-200);
}

.btn-secondary:hover:not(:disabled) {
  border-color: var(--peach-400);
  background: var(--peach-50);
}

.btn-ghost {
  background: transparent;
  color: var(--peach-700);
}

.btn-ghost:hover:not(:disabled) {
  background: var(--peach-100);
}

.btn-danger {
  background: var(--red-500);
  color: white;
}

.btn-danger:hover:not(:disabled) {
  background: var(--red-600);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

/* ============================================
   Cards
   ============================================ */
.card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.card-hover:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.card-body {
  padding: 1.5rem;
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--peach-100);
}

.card-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--peach-100);
}

/* ============================================
   Forms
   ============================================ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate-800);
  background: white;
  border: 2px solid var(--peach-200);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--peach-400);
  box-shadow: 0 0 0 4px var(--peach-100);
}

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

.form-input.error {
  border-color: var(--red-500);
}

.form-input.error:focus {
  box-shadow: 0 0 0 4px var(--red-100);
}

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

.form-error {
  color: var(--red-600);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-hint {
  color: var(--slate-500);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid var(--peach-300);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--peach-600);
}

/* Input with icon */
.input-icon-wrapper {
  position: relative;
}

.input-icon-wrapper .form-input {
  padding-left: 2.75rem;
}

.input-icon-wrapper svg {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--slate-400);
}

/* ============================================
   Badges
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.badge-peach {
  background: var(--peach-100);
  color: var(--peach-700);
}

.badge-success {
  background: var(--emerald-100);
  color: var(--emerald-700);
}

.badge-warning {
  background: var(--amber-100);
  color: var(--amber-700);
}

.badge-danger {
  background: var(--red-100);
  color: var(--red-700);
}

/* ============================================
   Tables
   ============================================ */
.table-container {
  overflow-x: auto;
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-card);
}

.table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.table th {
  padding: 1rem;
  background: var(--peach-50);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--peach-100);
}

.table td {
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--slate-700);
  border-bottom: 1px solid var(--peach-50);
}

.table tbody tr:hover {
  background: var(--peach-50);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================
   Metric Badges
   ============================================ */
.metric-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
}

.metric-badge.high {
  background: var(--emerald-100);
  color: var(--emerald-700);
}

.metric-badge.medium {
  background: var(--amber-100);
  color: var(--amber-700);
}

.metric-badge.low {
  background: var(--peach-100);
  color: var(--peach-700);
}

.metric-badge.none {
  background: var(--slate-100);
  color: var(--slate-600);
}

/* ============================================
   Alerts
   ============================================ */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.alert svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-info {
  background: var(--peach-50);
  border: 1px solid var(--peach-200);
  color: var(--peach-800);
}

.alert-info svg { color: var(--peach-600); }

.alert-success {
  background: var(--emerald-100);
  border: 1px solid #a7f3d0;
  color: var(--emerald-700);
}

.alert-success svg { color: var(--emerald-600); }

.alert-warning {
  background: var(--amber-100);
  border: 1px solid #fde68a;
  color: var(--amber-700);
}

.alert-warning svg { color: var(--amber-500); }

.alert-error {
  background: var(--red-50);
  border: 1px solid var(--red-100);
  color: var(--red-700);
}

.alert-error svg { color: var(--red-500); }

/* ============================================
   Modal
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: white;
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-card-hover);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--peach-100);
}

.modal-header h3 {
  font-size: 1.25rem;
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: var(--slate-400);
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--peach-100);
  color: var(--slate-600);
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1.5rem;
  border-top: 1px solid var(--peach-100);
}

/* ============================================
   Toast Notifications
   ============================================ */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-card-hover);
  min-width: 280px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.toast-success svg { color: var(--emerald-500); }
.toast-error svg { color: var(--red-500); }
.toast-info svg { color: var(--peach-500); }

.toast-message {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
}

.toast-close {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: var(--slate-400);
}

.toast-close:hover {
  background: var(--slate-100);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: white;
  border-top: 1px solid var(--peach-100);
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand p {
  color: var(--slate-600);
  max-width: 24rem;
  margin-top: 1rem;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--slate-600);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--peach-600);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--peach-100);
  font-size: 0.875rem;
  color: var(--slate-500);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============================================
   Dashboard Layout
   ============================================ */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-width);
  background: white;
  border-right: 1px solid var(--peach-100);
  padding: 1.5rem 0;
  overflow-y: auto;
  z-index: 50;
}

@media (min-width: 1024px) {
  .sidebar { display: block; }
}

.sidebar-header {
  padding: 0 1.5rem;
  margin-bottom: 2rem;
}

.sidebar-plan {
  margin: 0 1rem 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--peach-100), var(--cream-200));
  border-radius: 12px;
}

.sidebar-plan-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--peach-700);
  margin-bottom: 0.25rem;
}

.sidebar-plan-info {
  font-size: 0.875rem;
  color: var(--slate-600);
}

.sidebar-nav {
  padding: 0 0.75rem;
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--slate-600);
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.2s ease;
  margin-bottom: 0.25rem;
}

.sidebar-nav-link:hover {
  background: var(--peach-50);
  color: var(--peach-600);
}

.sidebar-nav-link.active {
  background: var(--peach-100);
  color: var(--peach-700);
}

.sidebar-nav-link svg {
  width: 20px;
  height: 20px;
}

.sidebar-nav-link .badge {
  margin-left: auto;
}

.sidebar-user {
  margin-top: auto;
  padding: 1rem 0.75rem;
  border-top: 1px solid var(--peach-100);
}

.sidebar-user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
}

.sidebar-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach-300), var(--peach-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.sidebar-user-name {
  font-weight: 600;
  color: var(--slate-800);
  font-size: 0.875rem;
}

.sidebar-user-email {
  color: var(--slate-500);
  font-size: 0.75rem;
}

.dashboard-main {
  flex: 1;
  padding: 1.5rem;
  background: var(--peach-50);
}

@media (min-width: 1024px) {
  .dashboard-main {
    margin-left: var(--sidebar-width);
    padding: 2rem;
  }
}

/* Mobile Dashboard Header */
.dashboard-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: white;
  border-bottom: 1px solid var(--peach-100);
  position: sticky;
  top: 0;
  z-index: 40;
}

@media (min-width: 1024px) {
  .dashboard-mobile-header { display: none; }
}

/* Mobile Sidebar */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 45;
}

.sidebar-overlay.open {
  display: block;
}

.sidebar.mobile-open {
  display: block;
  z-index: 50;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
  margin-bottom: 2rem;
}

.page-title {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .page-title { font-size: 2rem; }
}

.page-subtitle {
  color: var(--slate-600);
}

/* ============================================
   Stats Cards
   ============================================ */
.stat-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.stat-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.stat-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.stat-card-icon.peach { background: linear-gradient(135deg, var(--peach-400), var(--peach-600)); }
.stat-card-icon.coral { background: linear-gradient(135deg, var(--coral-400), var(--coral-500)); }
.stat-card-icon.amber { background: linear-gradient(135deg, var(--amber-400), var(--amber-600)); }
.stat-card-icon.emerald { background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600)); }

.stat-card-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.25rem;
}

.stat-card-label {
  font-size: 0.875rem;
  color: var(--slate-500);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--peach-50), var(--peach-100), var(--cream-100));
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { padding: 6rem 0; }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 155, 106, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 155, 106, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 9999px;
  box-shadow: var(--shadow-soft);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--peach-600);
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--slate-600);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero-metrics { grid-template-columns: repeat(4, 1fr); }
}

.hero-metric {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.hero-metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--peach-600);
}

.hero-metric-label {
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-top: 0.25rem;
}

/* ============================================
   Features Section
   ============================================ */
.features {
  padding: 5rem 0;
  background: white;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--slate-600);
  font-size: 1.125rem;
}

.feature-card {
  padding: 2rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--peach-100), var(--peach-200));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--peach-600);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--slate-600);
}

/* ============================================
   Stats Banner
   ============================================ */
.stats-banner {
  background: linear-gradient(135deg, var(--peach-500), var(--peach-600));
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

@media (min-width: 768px) {
  .stat-item-value { font-size: 3rem; }
}

.stat-item-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
  padding: 5rem 0;
  background: var(--peach-50);
}

.pricing-card {
  position: relative;
  padding: 2rem;
  text-align: center;
}

.pricing-card.featured {
  border: 2px solid var(--peach-400);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--peach-500);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--slate-900);
}

.pricing-price .period {
  color: var(--slate-500);
  margin-bottom: 0.5rem;
}

.pricing-searches {
  color: var(--peach-600);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--slate-600);
}

.pricing-features svg {
  width: 20px;
  height: 20px;
  color: var(--peach-500);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  padding: 5rem 0;
  background: white;
}

.testimonial-card {
  padding: 2rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: var(--amber-400);
  fill: var(--amber-400);
}

.testimonial-text {
  color: var(--slate-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach-300), var(--peach-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.testimonial-name {
  font-weight: 600;
  color: var(--slate-800);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--slate-500);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
  padding: 5rem 0;
  background: var(--peach-50);
}

.faq-list {
  max-width: 768px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--peach-100);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--peach-600);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--peach-500);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

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

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

/* ============================================
   CTA Section
   ============================================ */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--peach-500), var(--peach-600), var(--coral-500));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-content {
  position: relative;
}

.cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn {
  background: white;
  color: var(--peach-600);
}

.cta .btn:hover {
  background: var(--peach-50);
  transform: translateY(-2px);
}

/* ============================================
   Tool Cards
   ============================================ */
.tool-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tool-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: white;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-600);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.tool-tab:hover {
  background: var(--peach-50);
}

.tool-tab.active {
  background: var(--peach-500);
  color: white;
  box-shadow: var(--shadow-soft);
}

.tool-tab svg {
  width: 20px;
  height: 20px;
}

.tool-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tool-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--peach-100), var(--peach-200));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tool-icon svg {
  width: 24px;
  height: 24px;
  color: var(--peach-600);
}

.tool-title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.tool-description {
  color: var(--slate-600);
}

/* ============================================
   Filter Panel
   ============================================ */
.filter-panel {
  display: none;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--peach-100);
}

.filter-panel.open {
  display: block;
}

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

.filter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .filter-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .filter-grid { grid-template-columns: repeat(3, 1fr); }
}

.filter-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-600);
  margin-bottom: 0.5rem;
}

.tld-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tld-btn {
  padding: 0.375rem 0.75rem;
  background: var(--peach-50);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tld-btn:hover {
  background: var(--peach-100);
}

.tld-btn.active {
  background: var(--peach-500);
  color: white;
}

/* ============================================
   Login/Signup Pages
   ============================================ */
.auth-page {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-card {
  width: 100%;
  max-width: 440px;
}

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

.auth-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--peach-400), var(--peach-600));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-soft);
}

.auth-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.auth-header h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--slate-600);
}

.auth-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--peach-100);
  color: var(--slate-600);
  font-size: 0.875rem;
}

.auth-footer a {
  font-weight: 600;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--slate-400);
  transition: color 0.2s ease;
}

.password-toggle:hover {
  color: var(--slate-600);
}

/* ============================================
   Dev Mode Indicator
   ============================================ */
.dev-indicator {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background: var(--amber-400);
  color: var(--amber-900);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  z-index: 500;
  animation: pulse 2s infinite;
}

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

/* ============================================
   Spinner
   ============================================ */
.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--peach-200);
  border-top-color: var(--peach-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner-lg {
  width: 40px;
  height: 40px;
  border-width: 3px;
}

/* ============================================
   Empty States
   ============================================ */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state svg {
  width: 64px;
  height: 64px;
  color: var(--peach-200);
  margin: 0 auto 1rem;
}

.empty-state h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--slate-500);
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-0 { padding: 0; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.w-full { width: 100%; }

@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}
