/* FUQbuddy - Frequently Unasked Questions */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

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

:root {
  /* Professional support platform colors */
  --primary: #2c3e50;        /* Navy blue */
  --primary-light: #34495e;
  --primary-dark: #1a252f;
  --accent: #e74c3c;         /* Red - urgency/danger */
  --accent-light: #ec7063;
  --accent-dark: #c0392b;
  --success: #27ae60;
  --warning: #f39c12;
  --text-light: #ffffff;
  --text-dark: #2c3e50;
  --text-muted: #7f8c8d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --card-border: #e1e8ed;
  --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

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

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

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--card-border);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  height: 36px;
  width: auto;
}

.nav-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-title span {
  color: var(--accent);
}

.nav-search {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search svg {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.nav-search input {
  background: var(--bg-light);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 10px 16px 10px 40px;
  font-size: 0.9rem;
  width: 280px;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.nav-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 8px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
}

/* Hamburger Menu Button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Drawer */
.mobile-drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 36px;
  right: -300px;
  width: 300px;
  height: calc(100% - 36px);
  background: white;
  z-index: 999;
  transition: right 0.3s ease;
  flex-direction: column;
  border-left: 1px solid var(--card-border);
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--card-border);
}

.mobile-drawer-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-drawer-close svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.mobile-drawer-links a {
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--card-border);
}

.mobile-drawer-links .nav-cta {
  margin-top: 20px;
  text-align: center;
}

/* Mobile menu open state */
body.mobile-menu-open .mobile-drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.mobile-menu-open .mobile-drawer {
  right: 0;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 180px 40px 100px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(26, 37, 47, 0.9) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='30' y='35' font-family='sans-serif' font-size='24' fill='%23ffffff' fill-opacity='0.03' text-anchor='middle'%3E%3F%3C/text%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 3;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 32px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 16px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.15rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ===== PARTNER LOGOS ===== */
.partners-section {
  background: white;
  padding: 40px;
  border-bottom: 1px solid var(--card-border);
}

.partners-section h4 {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.partners-logos a {
  display: flex;
  align-items: center;
}

.partners-logos img {
  height: 32px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.2s;
}

.partners-logos a:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 80px 40px;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--card-border);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

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

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 40px;
  background: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 80px 40px;
  background: var(--bg-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid var(--card-border);
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.pricing-card.featured {
  border-color: var(--accent);
  border-width: 2px;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-tier {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '\2713';
  color: var(--success);
  font-weight: bold;
}

.pricing-btn {
  width: 100%;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--primary);
  color: white;
}

.pricing-btn:hover {
  background: var(--primary-light);
}

.pricing-card.featured .pricing-btn {
  background: var(--accent);
}

.pricing-card.featured .pricing-btn:hover {
  background: var(--accent-dark);
}

/* ===== FAQ PREVIEW SECTION ===== */
.faq-preview-section {
  padding: 80px 40px;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-widget-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--card-border);
  transition: border-color 0.2s;
}

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

.faq-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

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

.faq-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.faq-helpful {
  display: flex;
  align-items: center;
  gap: 4px;
}

.faq-helpful.positive {
  color: var(--success);
}

.faq-helpful.negative {
  color: var(--accent);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-btn:hover {
  background: var(--accent-dark);
  color: white;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary-dark);
  color: white;
  padding: 60px 40px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-brand h3 span {
  color: var(--accent);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer-links h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color 0.2s;
}

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

/* ===== COMPANY FAQ PAGE ===== */
.company-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 140px 40px 60px;
  color: white;
}

.company-hero-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.company-logo {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo img {
  max-width: 100%;
  max-height: 100%;
}

.company-info h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.company-info p {
  opacity: 0.8;
}

/* Company FAQ Search */
.company-search {
  max-width: 800px;
  margin: -30px auto 40px;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}

.company-search-box {
  background: white;
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
}

.company-search-box input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 1rem;
  border-radius: 8px;
}

.company-search-box input:focus {
  outline: none;
}

.company-search-box button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* FAQ Categories */
.faq-categories {
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.faq-category-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.faq-category-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: border-color 0.2s;
}

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

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  flex: 1;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.faq-toggle svg {
  width: 12px;
  height: 12px;
  color: var(--text-muted);
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
  background: var(--primary);
}

.faq-item.open .faq-toggle svg {
  color: white;
}

.faq-answer {
  padding: 0 24px 20px;
  display: none;
}

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

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

.faq-feedback {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
}

.faq-feedback span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.faq-feedback-btn {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  background: white;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.faq-feedback-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.faq-feedback-btn.active-yes {
  background: var(--success);
  color: white;
  border-color: var(--success);
}

.faq-feedback-btn.active-no {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* Gruntslate Integration */
.grunt-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.translate-btn {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  background: white;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.translate-btn:hover {
  border-color: #ffd030;
  background: #ffd030;
  color: #1a1a1a;
}

.translate-btn.active {
  border-color: #ffd030;
  background: #ffd030;
  color: #1a1a1a;
}

.speak-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.speak-btn svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

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

.speak-btn:hover svg {
  color: white;
}

.speak-btn.speaking {
  border-color: var(--accent);
  background: var(--accent);
  animation: speak-pulse 1s ease-in-out infinite;
}

.speak-btn.speaking svg {
  color: white;
}

.speak-btn.paused {
  border-color: #ffd030;
  background: #ffd030;
}

.speak-btn.paused svg {
  color: #1a1a1a;
}

@keyframes speak-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 12px 20px;
  }

  .nav-search {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-drawer-overlay,
  .mobile-drawer {
    display: block;
  }

  .hero {
    padding: 140px 20px 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .features-section,
  .how-it-works,
  .pricing-section,
  .faq-preview-section,
  .cta-section {
    padding: 60px 20px;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .company-hero {
    padding: 120px 20px 40px;
  }

  .company-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .company-search {
    padding: 0 20px;
    margin-top: -20px;
  }

  .faq-categories {
    padding: 20px;
  }
}
