/* ==========================================================================
   VdZip.com — Production CSS Stylesheet
   Ultra-lightweight, high-performance, modern responsive design
   ========================================================================== */

:root {
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-primary-light: #eef2ff;
  --color-success: #10b981;
  --color-success-light: #ecfdf5;
  --color-danger: #ef4444;
  --color-danger-light: #fef2f2;
  --color-slate-50: #f8fafc;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-500: #64748b;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-800: #1e293b;
  --color-slate-900: #0f172a;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

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

html {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-slate-700);
  background-color: var(--color-slate-50);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 860px;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-slate-200);
  height: 72px;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-slate-900);
  letter-spacing: -0.03em;
}

.brand-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-primary), #3730a3);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.25);
}

.logo-zip {
  color: var(--color-primary);
  font-weight: 900;
}

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

.nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-slate-600);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
  background-color: var(--color-primary-light);
}

.dropdown-container {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 280px;
  background: #fff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 0.5rem;
  z-index: 110;
  max-height: 420px;
  overflow-y: auto;
}

.dropdown-container:hover .dropdown-menu,
.dropdown-container.open .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--color-slate-700);
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
}

.dropdown-item:hover {
  background: var(--color-slate-100);
  color: var(--color-primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--color-slate-700);
  cursor: pointer;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 1.25rem 0 2.5rem;
  background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 50%, #f1f5f9 100%);
  border-bottom: 1px solid var(--color-slate-200);
  text-align: center;
}

.hero-theme-facebook {
  background: linear-gradient(180deg, rgba(219, 234, 254, 0.85) 0%, rgba(239, 246, 255, 0.6) 50%, rgba(248, 250, 252, 0.7) 100%);
}
.hero-theme-snapchat {
  background: linear-gradient(180deg, rgba(254, 243, 199, 0.85) 0%, rgba(254, 252, 232, 0.6) 50%, rgba(248, 250, 252, 0.7) 100%);
}
.hero-theme-instagram {
  background: linear-gradient(180deg, rgba(255, 228, 230, 0.75) 0%, rgba(253, 242, 248, 0.5) 50%, rgba(248, 250, 252, 0.7) 100%);
}
.hero-theme-tiktok {
  background: linear-gradient(180deg, rgba(204, 251, 241, 0.75) 0%, rgba(236, 254, 255, 0.5) 50%, rgba(248, 250, 252, 0.7) 100%);
}
.hero-theme-twitter {
  background: linear-gradient(180deg, rgba(226, 232, 240, 0.85) 0%, rgba(241, 245, 249, 0.6) 50%, rgba(248, 250, 252, 0.7) 100%);
}
.hero-theme-pinterest {
  background: linear-gradient(180deg, rgba(254, 226, 226, 0.75) 0%, rgba(255, 241, 242, 0.5) 50%, rgba(248, 250, 252, 0.7) 100%);
}
.hero-theme-reddit {
  background: linear-gradient(180deg, rgba(255, 237, 213, 0.75) 0%, rgba(254, 243, 199, 0.5) 50%, rgba(248, 250, 252, 0.7) 100%);
}
.hero-theme-linkedin {
  background: linear-gradient(180deg, rgba(224, 242, 254, 0.75) 0%, rgba(239, 246, 255, 0.5) 50%, rgba(248, 250, 252, 0.7) 100%);
}
.hero-theme-moj {
  background: linear-gradient(180deg, rgba(243, 232, 255, 0.75) 0%, rgba(245, 243, 255, 0.5) 50%, rgba(248, 250, 252, 0.7) 100%);
}
.hero-theme-josh {
  background: linear-gradient(180deg, rgba(255, 228, 230, 0.75) 0%, rgba(254, 226, 226, 0.5) 50%, rgba(248, 250, 252, 0.7) 100%);
}
.hero-theme-dailymotion {
  background: linear-gradient(180deg, rgba(219, 234, 254, 0.75) 0%, rgba(238, 242, 255, 0.5) 50%, rgba(248, 250, 252, 0.7) 100%);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: #ffffff;
  border: 1px solid var(--color-slate-200);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-slate-800);
  margin-bottom: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-slate-900);
  letter-spacing: -0.03em;
  line-height: 1.18;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 0.975rem;
  color: var(--color-slate-600);
  max-width: 650px;
  margin: 1.5rem auto 0;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Downloader Card Component
   -------------------------------------------------------------------------- */
.downloader-box {
  background: #ffffff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 1.75rem;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}

.input-row {
  display: flex;
  gap: 0.625rem;
}

.input-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.search-icon-left {
  position: absolute;
  left: 0.875rem;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.url-input {
  width: 100%;
  padding: 0.95rem 5rem 0.95rem 2.75rem;
  font-size: 0.9375rem;
  color: var(--color-slate-900);
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-slate-300);
  border-radius: var(--radius-md);
  outline: none;
  transition: all 0.2s ease;
}

.url-input:focus {
  background-color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-light);
}

.input-actions {
  position: absolute;
  right: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-paste, .btn-clear {
  background: var(--color-slate-200);
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-slate-700);
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: background 0.15s ease;
}

.btn-paste:hover, .btn-clear:hover {
  background: var(--color-slate-300);
}

.btn-download {
  background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
  color: #ffffff;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-download:hover {
  background: linear-gradient(135deg, #4338ca 0%, #1d4ed8 100%);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45);
  transform: translateY(-1px);
}

.btn-download:active {
  transform: scale(0.98);
}

/* Platform-Specific Download Button Colors */
[data-platform="pinterest"] .btn-download, .btn-download-pinterest {
  background: linear-gradient(135deg, #E60023 0%, #b3001b 100%) !important;
  box-shadow: 0 4px 14px rgba(230, 0, 35, 0.38) !important;
}
[data-platform="pinterest"] .btn-download:hover, .btn-download-pinterest:hover {
  background: linear-gradient(135deg, #cc001f 0%, #990017 100%) !important;
  box-shadow: 0 6px 20px rgba(230, 0, 35, 0.48) !important;
}

[data-platform="facebook"] .btn-download, .btn-download-facebook {
  background: linear-gradient(135deg, #1877F2 0%, #0d65d9 100%) !important;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.38) !important;
}
[data-platform="facebook"] .btn-download:hover, .btn-download-facebook:hover {
  background: linear-gradient(135deg, #1466d1 0%, #0a4fad 100%) !important;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.48) !important;
}

[data-platform="instagram"] .btn-download, .btn-download-instagram {
  background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%) !important;
  box-shadow: 0 4px 14px rgba(225, 48, 108, 0.38) !important;
}
[data-platform="instagram"] .btn-download:hover, .btn-download-instagram:hover {
  background: linear-gradient(135deg, #c7265b 0%, #a82770 50%, #6f2d99 100%) !important;
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.48) !important;
}

[data-platform="tiktok"] .btn-download, .btn-download-tiktok {
  background: linear-gradient(135deg, #111827 0%, #000000 100%) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4) !important;
}

[data-platform="twitter"] .btn-download, .btn-download-twitter {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.4) !important;
}

[data-platform="snapchat"] .btn-download, .btn-download-snapchat {
  background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%) !important;
  color: #0f172a !important;
  box-shadow: 0 4px 14px rgba(234, 179, 8, 0.4) !important;
}

[data-platform="reddit"] .btn-download, .btn-download-reddit {
  background: linear-gradient(135deg, #FF4500 0%, #dc2626 100%) !important;
  box-shadow: 0 4px 14px rgba(255, 69, 0, 0.38) !important;
}

[data-platform="linkedin"] .btn-download, .btn-download-linkedin {
  background: linear-gradient(135deg, #0A66C2 0%, #0284c7 100%) !important;
  box-shadow: 0 4px 14px rgba(10, 102, 194, 0.38) !important;
}

[data-platform="moj"] .btn-download, .btn-download-moj {
  background: linear-gradient(135deg, #FF6D00 0%, #ea580c 100%) !important;
  box-shadow: 0 4px 14px rgba(255, 109, 0, 0.38) !important;
}

[data-platform="josh"] .btn-download, .btn-download-josh {
  background: linear-gradient(135deg, #FF3366 0%, #e11d48 100%) !important;
  box-shadow: 0 4px 14px rgba(255, 51, 102, 0.38) !important;
}

[data-platform="dailymotion"] .btn-download, .btn-download-dailymotion {
  background: linear-gradient(135deg, #0066DC 0%, #1d4ed8 100%) !important;
  box-shadow: 0 4px 14px rgba(0, 102, 220, 0.38) !important;
}

.btn-download:disabled {
  background: var(--color-slate-300);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.downloader-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--color-slate-400);
}

/* Loading, Error, and Result States */
.state-box {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.loading-state {
  background-color: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.03);
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--color-slate-200);
  border-top-color: var(--color-primary);
  border-right-color: var(--color-primary-light);
  border-radius: 50%;
  animation: spin 0.85s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  margin: 0 auto 1rem;
}

.loading-wait-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-slate-900);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.loading-sub-text {
  font-size: 0.875rem;
  color: var(--color-slate-600);
  font-weight: 500;
  max-width: 380px;
  margin: 0 auto;
}

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

.error-state {
  background-color: var(--color-danger-light);
  border: 1px solid #fecaca;
  color: #991b1b;
}

.result-state {
  background-color: #fafbfc;
  border: 1px solid var(--color-slate-200);
  padding: 1.25rem;
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-slate-200);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-success);
}

.result-body {
  display: flex;
  gap: 1.25rem;
}

.result-thumb {
  width: 140px;
  height: 100px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background-color: var(--color-slate-200);
  border: 1px solid var(--color-slate-300);
  flex-shrink: 0;
}

.result-video-wrapper {
  width: 160px;
  max-width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #000;
  border: 1px solid var(--color-slate-300);
}

.result-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
  display: block;
}

.btn-stream-option-1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  max-width: 100%;
  padding: 0.95rem 1.25rem;
  background: linear-gradient(135deg, #10b981, #0d9488);
  color: #ffffff !important;
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4);
  transition: all 0.2s ease;
  text-align: center;
  box-sizing: border-box;
}

.btn-stream-option-1:hover {
  background: linear-gradient(135deg, #059669, #0f766e);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.5);
}

@media (max-width: 640px) {
  .result-body {
    flex-direction: column;
    align-items: center;
  }
  .result-video-wrapper {
    width: 190px;
    max-width: 100%;
    aspect-ratio: 3 / 4;
  }
  .btn-stream-option-1 {
    width: 260px;
    padding: 1rem 1.25rem;
  }
}

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

.result-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.formats-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.btn-format {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-slate-700);
  background: #fff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.15s ease;
}

.btn-format:hover, .btn-format.selected {
  border-color: var(--color-primary);
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.btn-download-file {
  width: 100%;
  padding: 0.95rem 1.25rem;
  background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
  color: #fff;
  border: none;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-download-file:hover {
  background: linear-gradient(135deg, #059669 0%, #0f766e 100%);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
  transform: translateY(-1px);
}

.btn-download-file:active {
  transform: scale(0.99);
}

/* --------------------------------------------------------------------------
   Platform Grid (Home Page)
   -------------------------------------------------------------------------- */
.platforms-section {
  padding: 4rem 0;
  background-color: #fff;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-slate-900);
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 0.9375rem;
  color: var(--color-slate-500);
  margin-top: 0.25rem;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.platform-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.platform-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

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

.platform-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.platform-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 0.35rem;
}

.platform-tagline {
  font-size: 0.8125rem;
  color: var(--color-slate-500);
  line-height: 1.45;
}

.platform-card-footer {
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-slate-100);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tag-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  background: var(--color-slate-100);
  color: var(--color-slate-600);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   SEO Content Section
   -------------------------------------------------------------------------- */
.seo-section {
  padding: 4rem 0;
  background-color: #fff;
}

.seo-article {
  max-width: 820px;
  margin: 0 auto;
}

.seo-block {
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-slate-100);
}

.seo-block:last-child {
  border-bottom: none;
}

.seo-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-slate-900);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.seo-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-slate-600);
  margin-bottom: 0.85rem;
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 4rem 0;
  background-color: var(--color-slate-50);
  border-top: 1px solid var(--color-slate-200);
}

.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-card {
  background: #ffffff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 1rem 1.25rem;
  text-align: left;
  background: none;
  border: none;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-slate-800);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-trigger:hover {
  color: var(--color-primary);
}

.faq-icon {
  transition: transform 0.2s ease;
  color: var(--color-slate-400);
}

.faq-card.open .faq-icon {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  display: none;
  padding: 0.85rem 1.25rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-slate-600);
  border-top: 1px solid var(--color-slate-100);
  background: var(--color-slate-50);
}

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

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-slate-900);
  color: var(--color-slate-400);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--color-slate-800);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand-logo {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.footer-text {
  font-size: 0.8125rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer-links-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 1rem;
}

.footer-link {
  font-size: 0.75rem;
  color: var(--color-slate-400);
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-slate-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-slate-500);
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .input-row {
    flex-direction: column;
  }

  .btn-download {
    width: 100%;
  }

  .result-body {
    flex-direction: column;
  }

  .result-thumb {
    width: 100%;
    height: 160px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}
