/* ===== Base & Variables ===== */
:root {
  --bg-primary: #0f0f1b;
  --bg-secondary: #161625;
  --bg-card: #1c1c2d;
  --bg-glass: rgba(30, 30, 50, 0.6);
  --text-primary: #ffffff;
  --text-muted: #a0a0c0;
  --accent: #6d7bff;
  --success: #2ec467;
  --danger: #ff6b6b;
  --border-light: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

/* ===== Glassmorphism Navbar ===== */
.glass-nav {
  background: rgba(20, 20, 35, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

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

/* ===== Hero Section ===== */
.hero-section {
  text-align: center;
  padding: 6rem 2rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, #8a9bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-section .subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-search-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-search-container::before {
  content: '⌘K';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.8rem;
  background: var(--bg-card);
  padding: 4px 8px;
  border-radius: 6px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 2;
}

.hero-search-container:focus-within::before {
  opacity: 0;
}

#search-input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  font-size: 1.1rem;
  border: 2px solid var(--border-light);
  border-radius: 50px;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  color: white;
  outline: none;
  transition: all var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(109, 123, 255, 0.3);
  transform: translateY(-2px);
}

#search-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat i {
  color: var(--accent);
}

/* ===== About Section (Glassmorphic) ===== */
.about-section {
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  margin: 4rem auto;
  max-width: 900px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.about-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.about-section p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== Main Container ===== */
.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

/* ===== Results Grid ===== */
.results-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  padding: 0 1rem;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: left;
  transition: all var(--transition);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.2),
    0 2px 6px rgba(0, 0, 0, 0.12);
  position: relative;
}

.tool-card:hover {
  transform: translateY(-8px);
  background: var(--bg-glass);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.18);
}

.tool-card h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.tool-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Pricing Badge */
.pricing-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.pricing-badge.free {
  background: rgba(46, 196, 103, 0.15);
  color: #2ec467;
}

.pricing-badge.paid {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
}

.pricing-badge.freemium {
  background: rgba(109, 123, 255, 0.15);
  color: var(--accent);
}

/* Tool Actions */
.tool-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* Visit Tool Button */
.tool-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(109, 123, 255, 0.3);
  border: 1px solid transparent;
  flex: 1;
  justify-content: center;
}

.tool-link:hover {
  background: #5a67ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(109, 123, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.1);
}

.tool-link:active {
  transform: translateY(0);
}

/* Save Button */
.save-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 0.55rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 90px;
  justify-content: center;
}

.save-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.save-btn.saved {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.save-btn.saved:hover {
  background: var(--danger);
  border-color: var(--danger);
}

/* ===== Categories ===== */
.categories {
  max-width: 1200px;
  margin: 4rem auto 3rem;
  padding: 0 2rem;
  text-align: center;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.categories h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-weight: 700;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0 -0.5rem;
}

.category-list li {
  background: var(--bg-card);
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  font-weight: 500;
  min-width: 120px;
  text-align: center;
}

.category-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.category-list li:hover::before {
  left: 100%;
}

.category-list li:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(109, 123, 255, 0.3);
  border-color: rgba(109, 123, 255, 0.5);
}

.category-list li.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* ===== Sections (How It Works, Tips) ===== */
#how,
#tips {
  max-width: 700px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

#how h2,
#tips h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

#how p,
#tips ul {
  color: var(--text-muted);
  font-size: 1.05rem;
}

#tips ul {
  list-style: none;
  text-align: left;
  margin-top: 1rem;
}

#tips li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-light);
}

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

/* ===== Footer ===== */
footer {
  max-width: 800px;
  margin: 5rem auto 2rem;
  padding: 0 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

footer nav a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color var(--transition);
}

footer nav a:hover {
  color: var(--accent);
}

/* ===== Saved Tools Styles ===== */
.saved-tools-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.clear-btn, .export-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.clear-btn:hover {
  background: var(--danger);
  border-color: var(--danger);
}

.export-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

.empty-state i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.empty-state h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* Remove saved button */
.remove-saved {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid var(--danger);
  color: var(--danger);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.remove-saved:hover {
  background: var(--danger);
  color: white;
}

/* Save confirmation animation */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Enhanced Loader */
.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(109, 123, 255, 0.3);
  border-left: 4px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Error States */
.error-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 107, 107, 0.2);
}

.error-message .retry-button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  margin-top: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.error-message .retry-button:hover {
  background: #5a67ff;
}

/* No Results State */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-muted);
}

.no-results h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.no-results .suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.no-results .suggestion {
  background: var(--bg-card);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.no-results .suggestion:hover {
  background: var(--accent);
  color: white;
}

/* Search enhancements */
.clear-search {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.5rem;
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.2s ease;
  z-index: 10;
}

.clear-search:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

/* Quick filters */
.quick-filters {
  margin: 1rem 0;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-muted);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.hint {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-section {
    padding: 4rem 1rem 2rem;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .categories {
    margin: 3rem auto 2rem;
    padding: 1.5rem;
  }

  .categories h2 {
    font-size: 1.6rem;
  }

  .category-list li {
    font-size: 0.85rem;
    padding: 0.6rem 1.1rem;
    min-width: 100px;
  }

  .tool-actions {
    flex-direction: column;
  }

  .tool-link,
  .save-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .subtitle {
    font-size: 1rem;
  }

  #search-input {
    padding: 1rem 1.2rem;
    font-size: 1rem;
  }

  .results-grid {
    gap: 1.2rem;
    padding: 0 0.8rem;
  }

  .category-list {
    gap: 0.6rem;
  }

  .saved-tools-controls {
    flex-direction: column;
    align-items: center;
  }
}


/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.dark {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.6;
  padding: 40px 20px;
}

/* Container */
.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid #2a2a2a;
}

/* Headings */
.container h1 {
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

.container h2 {
  font-size: 1.4rem;
  margin-top: 30px;
  color: #ffd700; /* Gold/yellow accent for section headings */
}

/* Paragraphs */
.container p {
  margin-bottom: 16px;
  color: #dddddd;
}

/* Links */
.container a {
  color: #4da6ff;
  text-decoration: underline;
}

.container a:hover {
  color: #82cfff;
}

/* Lists */
.container ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.container ul li {
  margin-bottom: 8px;
}

/* Strong */
.container strong {
  color: #ffffff;
}


/* ===== Save Counter Styles ===== */
.save-counter {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid;
}

.save-counter.unlimited {
  background: rgba(46, 196, 103, 0.1);
  border-color: rgba(46, 196, 103, 0.3);
  color: var(--success);
}

.save-counter.limited {
  background: rgba(109, 123, 255, 0.1);
  border-color: rgba(109, 123, 255, 0.3);
  color: var(--accent);
}

.save-counter i {
  margin-right: 0.5rem;
}


/* ===== Email Verification Styles ===== */
#email-input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(109, 123, 255, 0.1) !important;
}

#email-input.error {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1) !important;
}

.error-message {
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.error-message i {
  font-size: 0.7rem;
}
/* SEO Links Section */
.seo-links-section {
  background: var(--bg-secondary);
  padding: 3rem 0;
  margin-top: 4rem;
}

.seo-links {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.seo-links h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.internal-links a {
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  font-weight: 500;
}

.internal-links a:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(109, 123, 255, 0.3);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Enhanced tool cards with microdata */
.tool-card[itemscope] {
  position: relative;
}

/* Responsive design for SEO links */
@media (max-width: 768px) {
  .internal-links {
    gap: 0.75rem;
  }
  
  .internal-links a {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .seo-links-section {
    padding: 2rem 0;
  }
}
/* ===== FAQ Section Styling ===== */
.faq-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(15, 15, 27, 0.9) 0%, rgba(30, 30, 50, 0.8) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
  transform: translateY(-5px);
  border-color: rgba(107, 127, 251, 0.4);
  box-shadow: 0 12px 40px rgba(107, 127, 251, 0.2);
}

.faq-item h3 {
  color: #6e8efb;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== SEO Links Section ===== */
.seo-links-section {
  background: var(--bg-secondary);
  padding: 3rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-links {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.seo-links h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.internal-links a {
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.internal-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.internal-links a:hover::before {
  left: 100%;
}

.internal-links a:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(109, 123, 255, 0.3);
  border-color: var(--accent);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 0;
  }
  
  .faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .faq-list {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .faq-item {
    padding: 1.2rem;
  }
  
  .faq-item h3 {
    font-size: 1.2rem;
  }
  
  .seo-links-section {
    padding: 2rem 0;
  }
  
  .seo-links h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  
  .internal-links {
    gap: 0.75rem;
  }
  
  .internal-links a {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .faq-section h2 {
    font-size: 1.8rem;
  }
  
  .faq-item {
    padding: 1rem;
  }
  
  .internal-links {
    gap: 0.5rem;
  }
  
  .internal-links a {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}
/* Critical CSS - Add to top of style.css */
.hero-section, .glass-nav, .container { 
    opacity: 1 !important; 
}

/* Defer non-critical CSS */
@media (max-width: 768px) {
    /* Keep mobile styles here */
}