/* app.css — Image Format Converter Minimal White Design System */
:root {
  --bg-main: #fcfcfd;
  --bg-card: #ffffff;
  --text-main: #111111;
  --text-muted: #666666;
  --text-light: #999999;
  --border-light: #eaeaea;
  --border-subtle: #f0f0f2;
  --accent-color: #111111;
  --accent-hover: #222222;
  --accent-light: #f4f4f7;
  --color-green: #00b074;
  --color-green-bg: #e6f7f1;
  --color-red: #ff3b30;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.07);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none !important;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  line-height: 1.5;
}

/* ─── ShiftTools Custom Cursor ─── */
#shift-cursor {
  position: fixed; pointer-events: none; z-index: 999999;
  width: 25px; height: 25px; left: -50px; top: -50px;
  transition: width .13s, height .13s;
}
#shift-cursor svg { width: 100%; height: 100%; filter: drop-shadow(0 2px 5px rgba(0,0,0,.15)); transition: transform .12s; }
#shift-cursor.hover { width: 32px; height: 32px; }
#shift-cursor.click svg { transform: scale(.8); }

#shift-trail {
  position: fixed; pointer-events: none; z-index: 999998;
  width: 16px; height: 16px; opacity: .2; left: -50px; top: -50px;
  transition: left .2s ease-out, top .2s ease-out;
}

body.is-processing, body.is-processing *, body.is-processing ::before, body.is-processing ::after {
  cursor: wait !important;
}
body.is-processing #shift-cursor, body.is-processing #shift-trail {
  display: none !important;
}

@media (hover: none), (pointer: coarse) {
  html, body, * { cursor: auto !important; }
  #shift-cursor, #shift-trail { display: none !important; }
}

/* ─── Layout Shell ─── */
.ic-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Header ─── */
.ic-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid var(--border-light);
}

.ic-header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ic-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
}

.ic-brand-sep {
  color: var(--text-light);
  font-weight: 300;
  font-size: 14px;
}

.ic-tool-badge {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: 20px;
}

.ic-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ic-privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-green);
  background: var(--color-green-bg);
  padding: 5px 12px;
  border-radius: 20px;
}

.ic-back-hub-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  transition: all 0.2s ease;
}

.ic-back-hub-btn:hover {
  background: var(--accent-light);
  border-color: #d0d0d0;
}

/* ─── Main Content ─── */
.ic-main {
  flex: 1;
  padding: 40px 0 60px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ─── Hero Block ─── */
.ic-hero {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.ic-hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.ic-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 12px;
}

.ic-hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Minimal White Cards ─── */
.ic-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

/* ─── Upload Dropzone Card ─── */
.ic-upload-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  border: 2px dashed var(--border-light);
  background: #ffffff;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ic-upload-card.drag-over {
  border-color: var(--text-main);
  background: #fafafa;
  transform: scale(1.01);
  box-shadow: var(--shadow-hover);
}

.ic-drop-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  margin-bottom: 16px;
  transition: transform 0.2s ease;
}

.ic-upload-card:hover .ic-drop-icon-wrap {
  transform: translateY(-3px);
}

.ic-drop-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.ic-drop-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.ic-supported-formats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}

.ic-fmt-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  padding: 4px 8px;
  border-radius: 6px;
}

/* ─── Buttons & Controls ─── */
.ic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  outline: none;
}

.ic-btn-black {
  background: var(--text-main);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.ic-btn-black:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.ic-btn-outline {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.ic-btn-outline:hover {
  background: var(--accent-light);
  border-color: #d0d0d0;
}

.ic-btn-text {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.ic-btn-text:hover {
  color: var(--text-main);
  text-decoration: underline;
}

/* ─── Controls Card ─── */
.ic-controls-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ic-controls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.ic-control-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.ic-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.ic-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
}

/* Format Chips */
.ic-format-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ic-chip {
  padding: 6px 12px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  transition: all 0.15s ease;
}

.ic-chip:hover {
  background: var(--accent-light);
  border-color: #cccccc;
}

.ic-chip.active {
  background: var(--text-main);
  color: #ffffff;
  border-color: var(--text-main);
}

/* Custom Select Dropdown */
.ic-select {
  height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ic-select:focus {
  border-color: var(--text-main);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

/* Modern Custom Select Dropdown Component */
.ic-custom-select {
  position: relative;
  width: 100%;
}

.ic-custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 42px;
  padding: 0 14px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.ic-custom-select-trigger:hover {
  border-color: #cccccc;
  background: var(--accent-light);
}

.ic-custom-select.open .ic-custom-select-trigger {
  border-color: var(--text-main);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.ic-select-arrow {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-muted);
}

.ic-custom-select.open .ic-select-arrow {
  transform: rotate(180deg);
  color: var(--text-main);
}

.ic-custom-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 240px;
  overflow-y: auto;
}

.ic-custom-select.open .ic-custom-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.ic-select-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
}

.ic-select-opt:hover {
  background: #f4f4f7;
}

.ic-select-opt.active {
  background: var(--text-main);
  color: #ffffff;
  font-weight: 600;
}

/* Range Slider */
.ic-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border-light);
  outline: none;
}

.ic-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--text-main);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.15s ease;
}

.ic-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.ic-help-text {
  font-size: 11px;
  color: var(--text-light);
}

/* Background Fill Chips */
.ic-bg-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ic-bg-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  transition: all 0.15s ease;
}

.ic-bg-chip.active {
  border-color: var(--text-main);
  background: var(--accent-light);
  font-weight: 600;
}

.ic-checker-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-image: repeating-linear-gradient(45deg, #ccc 25%, transparent 25%, transparent 75%, #ccc 75%, #ccc), repeating-linear-gradient(45deg, #ccc 25%, #fff 25%, #fff 75%, #ccc 75%, #ccc);
  background-size: 8px 8px;
  background-position: 0 0, 4px 4px;
}

.ic-color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.ic-controls-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

/* ─── Queue Section & List ─── */
.ic-queue-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ic-queue-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ic-queue-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}

.ic-queue-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.ic-queue-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Queue Card Item */
.ic-item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ic-item-card:hover {
  box-shadow: var(--shadow-card);
  border-color: #dedede;
}

.ic-item-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.ic-item-thumb-wrap {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f4f7;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ic-item-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ic-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ic-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}

.ic-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
}

.ic-item-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  padding: 2px 6px;
  border-radius: 4px;
}

.ic-item-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Custom Per-Item Format Dropdown */
.ic-item-dropdown {
  position: relative;
}

.ic-item-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  background: #ffffff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.ic-item-dropdown-btn:hover {
  border-color: #cccccc;
  background: var(--accent-light);
}

.ic-item-dropdown.open .ic-item-dropdown-btn {
  border-color: var(--text-main);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.ic-item-dropdown-arrow {
  transition: transform 0.2s ease;
  color: var(--text-muted);
}

.ic-item-dropdown.open .ic-item-dropdown-arrow {
  transform: rotate(180deg);
  color: var(--text-main);
}

.ic-item-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 120px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 5px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.96);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ic-item-dropdown.open .ic-item-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.ic-item-dropdown-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
  transition: background 0.15s ease, color 0.15s ease;
}

.ic-item-dropdown-opt:hover {
  background: #f4f4f7;
}

.ic-item-dropdown-opt.active {
  background: var(--text-main);
  color: #ffffff;
}

/* Individual File Format Selector */
.ic-item-fmt-select {
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: #ffffff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
  outline: none;
}

/* Status & Savings Badges */
.ic-item-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}

.ic-status-pending { color: var(--text-muted); }
.ic-status-converting { color: #007aff; }
.ic-status-done { color: var(--color-green); }
.ic-status-failed { color: var(--color-red); }

.ic-btn-item-convert {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 32px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid var(--text-main);
  background: var(--text-main);
  color: #ffffff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.ic-btn-item-convert:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.14);
}

.ic-savings-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-green);
  background: var(--color-green-bg);
  padding: 3px 8px;
  border-radius: 6px;
}

/* Action Buttons per item */
.ic-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ic-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.ic-icon-btn:hover {
  background: var(--accent-light);
  border-color: #d0d0d0;
}

.ic-icon-btn.remove:hover {
  color: var(--color-red);
  background: #fff0f0;
  border-color: #ffcccc;
}

/* ─── Features Section ─── */
.ic-features-section {
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.ic-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 24px;
  text-align: center;
}

.ic-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.ic-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ic-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}

.ic-feature-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

.ic-feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Footer ─── */
.ic-footer {
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
  margin-top: 40px;
}

.ic-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ic-footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.ic-footer-links {
  display: flex;
  gap: 16px;
}

.ic-footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
}

.ic-footer-links a:hover {
  color: var(--text-main);
  text-decoration: underline;
}

/* ─── SEO FAQ Accordion & Content Blocks (ShiftDrop Style) ─── */
.seo-block {
  margin-top: 36px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.seo-block h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.seo-block p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.seo-block strong {
  font-weight: 600;
  color: var(--text-main);
}
.seo-steps {
  padding-left: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-steps li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Collapsible FAQ Accordion (Master Copy of Image to PDF Tool) ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: 0 0 0 1px #e8e8e8, 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: 0 0 0 1px #d0d0d0, 0 4px 16px rgba(0,0,0,0.07);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  text-align: left;
  gap: 12px;
  cursor: pointer;
  background: var(--bg-card);
  border: none;
  font-family: inherit;
}
.faq-question h3 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.4;
  flex: 1;
}
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.25s;
}
.faq-item.open .faq-chevron {
  background: #111;
  transform: rotate(180deg);
}
.faq-item.open .faq-chevron svg path {
  stroke: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
  background: var(--bg-card);
}
.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-answer-inner ul {
  margin: 10px 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-answer-inner li {
  color: var(--text-muted);
}
.faq-answer-inner strong {
  color: var(--text-main);
  font-weight: 500;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .ic-shell { padding: 0 16px; }
  .ic-header {
    flex-direction: column;
    height: auto;
    padding: 16px 0;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
  }
  .ic-header-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .ic-brand-sep {
    display: none;
  }
  .ic-header-brand {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
  .ic-hero-title { font-size: 28px; }
  .ic-item-card { flex-direction: column; align-items: stretch; }
  .ic-item-right { justify-content: space-between; margin-top: 8px; }
  .ic-controls-actions { flex-direction: column; align-items: stretch; }
  .ic-controls-actions .ic-btn-text { align-self: center; }
}
