/* ============================================
   PropFirmLookup - Main Stylesheet
   ============================================ */

/* ============================================
   1. CSS VARIABLES
   ============================================ */
:root {
  /* Brand Colors */
  --primary: #ff6600;
  --primary-hover: #e85d00;
  --primary-light: rgba(255, 102, 0, 0.1);
  
  /* Dark Theme Colors */
  --bg-page: #0a0a0f;
  --bg-section: #12121a;
  --bg-card: #16161f;
  --bg-card-hover: #1e1e2a;
  --bg-input: #1a1a24;
  --bg-glass: rgba(22, 22, 31, 0.85);
  
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #6b6b7b;
  
  --border: #2a2a35;
  
  /* Status Colors */
  --success: #22c55e;
  --warning: #eab308;
  
  /* 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(255, 102, 0, 0.2);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #ff6600 0%, #ff8533 50%, #ffad66 100%);
  --gradient-card: linear-gradient(180deg, rgba(255, 102, 0, 0.05) 0%, transparent 100%);
  --gradient-bg: radial-gradient(ellipse at top, #1a1520 0%, #0a0a0f 50%);
  --gradient-border: linear-gradient(90deg, var(--primary) 0%, var(--primary-hover) 100%);
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  
  /* Transitions */
  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Override */
[data-theme="light"] {
  --bg-page: #f5f5f7;
  --bg-section: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f9f9fb;
  --bg-input: #fafafa;
  --bg-glass: rgba(255, 255, 255, 0.9);
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #888888;
  --border: #e5e5e5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 30px rgba(255, 102, 0, 0.15);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
  --gradient-bg: radial-gradient(ellipse at top, #fff5eb 0%, #f5f5f7 50%);
}

/* ============================================
   2. RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg-page);
  background-image: var(--gradient-bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Animated gradient orbs background */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 102, 0, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(255, 102, 0, 0.1) 0%, transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(255, 102, 0, 0.08) 0%, transparent 30%);
  pointer-events: none;
  animation: rotate-orbs 30s linear infinite;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ============================================
   3. LAYOUT
   ============================================ */
.header, .main, .footer {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ============================================
   4. HEADER
   ============================================ */
.header {
  background: var(--bg-glass);
  border-bottom: 1px solid var(--border);
  padding: var(--space-lg) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: transform var(--transition-fast);
}

.logo-link:hover {
  transform: translateY(-2px);
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 102, 0, 0.3));
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-tagline {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  line-height: 1;
}

.header-actions {
  display: flex;
  gap: var(--space-sm);
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 20px;
}

.btn-icon:hover {
  background: var(--bg-card-hover);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   5. MAIN CONTENT
   ============================================ */
.main {
  padding: var(--space-3xl) 0;
  min-height: calc(100vh - 200px);
}

/* ============================================
   6. HOMEPAGE - HERO SECTION
   ============================================ */
.hero-section {
  text-align: center;
  padding: var(--space-2xl) 0;
  margin-bottom: 0;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.hero-highlight {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ============================================
   7. HOMEPAGE - SEARCH
   ============================================ */
.search-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.search-box {
  position: relative;
  width: 100%;
  transition: all var(--transition);
}

.search-box:hover {
  transform: translateY(-2px);
}

.search-input {
  width: 100%;
  padding: 18px 24px 18px 56px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: 16px;
  transition: all var(--transition);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-input:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  pointer-events: none;
}

.search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: var(--bg-input);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.search-clear:hover {
  background: var(--primary);
  color: white;
}

/* Search Suggestions */
.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: 400px;
  overflow-y: auto;
  z-index: 100;
}

.suggestion-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  cursor: pointer;
  transition: background var(--transition);
  border-bottom: 1px solid var(--border);
}

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

.suggestion-item:hover,
.suggestion-item.active {
  background: var(--bg-card-hover);
}

.suggestion-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: contain;
  flex-shrink: 0;
}

.suggestion-info {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.suggestion-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestion-empty {
  padding: var(--space-xl);
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* ============================================
   8. HOMEPAGE - STATES
   ============================================ */
.empty-state, .loading-state {
  text-align: center;
  padding: 0;
  margin-bottom: var(--space-md);
}

.empty-icon {
  font-size: 64px;
  margin-bottom: var(--space-lg);
  opacity: 0.5;
}

.empty-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.empty-text {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto var(--space-md);
}

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

.loading-text {
  font-size: 16px;
  color: var(--text-muted);
}

#resultsSection {
  margin-top: var(--space-xl);
}

/* ============================================
   9. DEAL PAGE - FIRM HEADER
   ============================================ */
.firm-header {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-2xl);
  text-align: center;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.firm-header::before {
  display: none;
}

.firm-logo-wrapper {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
}

.firm-logo {
  max-height: 160px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  transition: transform var(--transition);
}

.firm-logo:hover {
  transform: scale(1.05);
}

.firm-headline {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  letter-spacing: -1px;
}

.brand-emphasis {
  color: var(--primary);
}

.firm-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   10. DEAL PAGE - DEALS SECTION
   ============================================ */
.deals-section {
  margin-bottom: var(--space-2xl);
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.section-title::before {
  content: '';
  width: 4px;
  height: 32px;
  background: var(--gradient-border);
  border-radius: var(--radius-full);
}

.section-title-center {
  justify-content: center;
  text-align: center;
}

.section-title-center::before {
  display: none;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

/* ============================================
   11. DEAL CARDS
   ============================================ */
.deal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.deal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-border);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.deal-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-4px);
}

.deal-card:hover::before {
  transform: scaleX(1);
}

.deal-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  flex: 1;
}

.deal-logo {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-md);
  object-fit: contain;
  padding: var(--space-sm);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.deal-info {
  flex: 1;
  min-width: 0;
}

.deal-brand {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-xs);
  display: inline-block;
}

.deal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.deal-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.deal-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.deal-date {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.deal-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.deal-badge.new {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.deal-badge.old {
  background: rgba(234, 179, 8, 0.15);
  color: var(--warning);
  border: 1px solid rgba(234, 179, 8, 0.3);
}

.deal-actions {
  display: flex;
  gap: var(--space-sm);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* ============================================
   12. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width var(--transition), height var(--transition);
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-hero);
  color: white;
  flex: 1;
  box-shadow: var(--shadow-sm);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  color: white;
}

.btn-secondary {
  background: var(--bg-input);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  color: var(--primary);
  border-color: var(--primary);
}

/* ============================================
   13. PROMO BLOCKS
   ============================================ */
/* Promo Blocks Grid */
.promo-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Promo Card in Deals Grid */
.promo-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 280px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.promo-card-compact {
  padding: var(--space-lg);
  min-height: auto;
  text-align: left;
  align-items: flex-start;
}

.promo-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  width: 100%;
}

.promo-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.promo-icon-telegram {
  background: rgba(0, 136, 204, 0.2);
}

.promo-card:hover .promo-icon-telegram {
  background: #0088cc;
}

.promo-card:hover .promo-icon-telegram .promo-icon-svg {
  color: white;
}

.promo-icon-svg {
  color: var(--primary);
  transition: all var(--transition);
}

.promo-icon-telegram .promo-icon-svg {
  color: #0088cc;
}

.promo-card-compact .promo-title {
  font-size: 16px;
  margin-bottom: 2px;
  line-height: 1.3;
  color: var(--text-primary);
}

.promo-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
}

.promo-card-compact .promo-text {
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.6;
}

.promo-card-compact .btn {
  padding: 10px 20px;
  font-size: 14px;
  width: 100%;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-border);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.promo-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-4px);
}

.promo-card:hover::before {
  transform: scaleX(1);
}

.promo-icon {
  font-size: 48px;
  margin-bottom: var(--space-md);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.promo-content {
  width: 100%;
}

.promo-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  align-items: center;
}

.promo-feature {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* Promo Block on Homepage */
.promo-block {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: 0 auto var(--space-2xl);
  margin-top: 0;
  max-width: 600px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: all var(--transition);
}

.promo-block:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-2px);
}

.promo-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.promo-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.promo-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.promo-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================
   14. FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-card);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.faq-item {
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.faq-item:hover {
  padding-left: var(--space-md);
}

.faq-question {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  line-height: 1.5;
}

.faq-question::before {
  content: 'Q:';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-answer {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: calc(var(--space-sm) + 1.2em);
}

/* ============================================
   15. FOOTER
   ============================================ */
.footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: var(--space-2xl) 0;
  margin-top: var(--space-3xl);
}

.footer-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.footer-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-verified {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: var(--space-md);
}

.footer-link {
  color: var(--primary);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.footer-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================
   16. UTILITY CLASSES
   ============================================ */
.hidden {
  display: none !important;
}

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

/* ============================================
   17. RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .deals-grid {
    grid-template-columns: 1fr;
  }
  
  .promo-blocks {
    grid-template-columns: 1fr;
  }
  
  .main {
    padding: var(--space-2xl) 0;
  }
  
  .firm-header {
    padding: var(--space-2xl) var(--space-lg);
  }
  
  .firm-logo {
    max-height: 120px;
  }
  
  .firm-headline {
    font-size: 32px;
  }
  
  .firm-description {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .deal-card {
    padding: var(--space-lg);
  }
  
  .deal-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .deal-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .deal-meta {
    justify-content: center;
  }
  
  .deal-actions {
    flex-direction: column;
  }
  
  .btn-primary {
    width: 100%;
  }
  
  .faq-section {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .footer {
    padding: var(--space-xl) 0;
  }
  
  .footer-disclaimer {
    font-size: 11px;
    padding: var(--space-sm);
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .search-input {
    padding: 16px 20px 16px 52px;
    font-size: 15px;
  }
  
  .search-icon {
    left: 18px;
    font-size: 18px;
  }
}

/* ============================================
   18. RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 480px) {
  .header {
    padding: var(--space-md) 0;
  }
  
  .logo-img {
    width: 36px;
    height: 36px;
  }
  
  .logo-text {
    font-size: 18px;
  }
  
  .logo-tagline {
    display: none;
  }
  
  .btn-icon {
    width: 40px;
    height: 40px;
  }
  
  .main {
    padding: var(--space-xl) 0;
  }
  
  .firm-header {
    padding: var(--space-xl) var(--space-md);
  }
  
  .firm-logo {
    max-height: 100px;
  }
  
  .firm-headline {
    font-size: 28px;
  }
  
  .firm-description {
    font-size: 15px;
  }
  
  .deal-card {
    padding: var(--space-md);
  }
  
  .deal-logo {
    width: 80px;
    height: 80px;
  }
  
  .deal-header {
    gap: var(--space-md);
  }
  
  .deal-title {
    font-size: 18px;
  }
  
  .faq-section {
    padding: var(--space-lg) var(--space-md);
  }
  
  .faq-question {
    font-size: 15px;
  }
  
  .faq-answer {
    font-size: 13px;
  }
  
  .hero-section {
    padding: var(--space-xl) 0;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .search-input {
    padding: 14px 18px 14px 48px;
    font-size: 14px;
  }
  
  .search-icon {
    left: 16px;
    font-size: 16px;
  }
  
  .suggestion-item {
    padding: var(--space-sm);
  }
  
  .suggestion-logo {
    width: 36px;
    height: 36px;
  }
  
  .empty-icon {
    font-size: 48px;
  }
  
  .empty-title {
    font-size: 24px;
  }
}
