/* Hero Section - 2 Column Layout */
.industries-hero {
  position: relative;
  padding: 9rem 0 5.5rem 0;
  background: #0b0f1a;
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}

.industries-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 20%;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* 2-column grid */
.ind-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ind-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Reuse shared classes from ai-geo-style */
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 1.25rem;
}

.hero-white-title {
  font-family: var(--font-headings);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 1.25rem 0;
  letter-spacing: -0.02em;
}

.hero-gold-divider {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #aa7c11);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
  color: #0b0f1a;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  border-color: rgba(212, 175, 55, 0.5);
  color: #d4af37;
}

/* RIGHT: Contact Form Card */
.ind-hero-right {
  display: flex;
  flex-direction: column;
}

.ind-contact-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.ind-contact-card-header {
  margin-bottom: 1.75rem;
}

.ind-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #d4af37;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
}

.ind-contact-card-header h3 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  line-height: 1.25;
}

.ind-contact-card-header p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  line-height: 1.6;
}

/* Form fields */
.ind-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Shared audit-field styles */
.audit-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.audit-field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

.audit-field input {
  width: 100%;
  background: #1a2235;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.audit-field input::placeholder {
  color: rgba(255, 255, 255, 0.18);
}

.audit-field input:focus {
  border-color: rgba(212, 175, 55, 0.4);
  background: #1e2a3a;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.07);
}

/* Select styling */
.ind-select-wrap {
  position: relative;
}

.ind-select-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  pointer-events: none;
  z-index: 1;
}

.ind-select-wrap select {
  width: 100%;
  background: #1a2235;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 0.8rem 2.5rem 0.8rem 2.5rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.ind-select-wrap select:focus {
  border-color: rgba(212, 175, 55, 0.4);
  background: #1e2a3a;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.07);
}

.ind-select-wrap select option {
  background: #1a2235;
  color: #ffffff;
}

.ind-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  pointer-events: none;
}

/* Submit button */
.btn-audit-submit {
  width: 100%;
  padding: 0.95rem 1.5rem;
  background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
  color: #0b0f1a;
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  font-family: var(--font-headings);
}

.btn-audit-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* Trust row */
.ind-form-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ind-form-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

.ind-form-trust i {
  color: #d4af37;
  font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .ind-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .ind-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .ind-hero-left {
    align-items: center;
  }

  .hero-ctas {
    justify-content: center;
  }
}



/* Industries Section Layout */
.industries-showcase-section {
  padding: 6rem 0;
  position: relative;
  background: var(--bg-primary);
}

.industry-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  position: relative;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.industry-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.industry-block:nth-child(even) {
  grid-template-columns: 1fr 1.1fr;
}

.industry-block:nth-child(even) .industry-info {
  order: 2;
}

.industry-block:nth-child(even) .industry-visual {
  order: 1;
}

/* Info Column styling */
.industry-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.industry-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.industry-num {
  font-size: 2.25rem;
  font-weight: 900;
  font-family: var(--font-headings);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.4;
}

.industry-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(212, 175, 55, 0.06);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.industry-info h3 {
  font-size: 2.2rem;
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}

.industry-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-purple);
  margin-top: -0.5rem;
}

.industry-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* Visual Column containing details & metrics */
.industry-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.details-wrapper-box {
  background: rgba(11, 13, 29, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.detail-subgroup h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.detail-subgroup h4.chal-title {
  color: #f87171;
}

.detail-subgroup h4.sol-title {
  color: #4ade80;
}

.detail-subgroup ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-subgroup ul li {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.25rem;
}

.detail-subgroup ul li i {
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 0.8rem;
}

.detail-subgroup.challenges ul li i {
  color: #ef4444;
}

.detail-subgroup.solutions ul li i {
  color: #22c55e;
}

.industry-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ind-metric-card {
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 1.25rem 0.75rem;
  text-align: center;
  transition: var(--transition-normal);
}

.ind-metric-card:hover {
  border-color: var(--glass-hover-border);
  transform: translateY(-3px);
  background: rgba(212, 175, 55, 0.03);
}

.ind-metric-card h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-cyan);
  margin-bottom: 0.15rem;
}

.ind-metric-card p {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.industry-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-cyan);
  transition: var(--transition-fast);
  margin-top: 0.5rem;
}

.industry-btn:hover {
  color: var(--accent-purple);
  transform: translateX(3px);
}

/* Horizontal Process Timeline */
.process-timeline-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem;
  margin-top: 5rem;
  position: relative;
}

.process-timeline-horizontal::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 50%, transparent 100%);
  z-index: 1;
}

.process-step-horizontal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.65) 0%, rgba(3, 7, 18, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 3rem 1.75rem 2rem 1.75rem;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--glass-shadow);
}

.process-step-horizontal::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.process-step-horizontal:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.08);
}

.process-step-horizontal:hover::after {
  opacity: 1;
}

/* Explicit overrides to prevent collision with vertical timeline styles in style.css */
.process-step-horizontal .step-number {
  position: relative !important;
  left: auto !important;
  transform: none !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: var(--gradient-primary) !important;
  color: #020617 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 900 !important;
  font-size: 1.35rem !important;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35) !important;
  margin-top: -4.5rem !important;
  margin-bottom: 1.5rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 3 !important;
  border: 3px solid #030712 !important;
}

.process-step-horizontal:hover .step-number {
  background: #ffffff !important;
  color: #030712 !important;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6) !important;
  transform: scale(1.1) !important;
}

.process-step-horizontal .phase-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: inline-block;
  margin-bottom: 0.75rem;
  background: rgba(212, 175, 55, 0.08);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.process-step-horizontal h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.4;
}

.process-step-horizontal p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Premium All-Industries Index Grid */
.industries-index-section {
  padding: 6rem 0;
  position: relative;
  background: radial-gradient(circle at bottom, rgba(212, 175, 55, 0.03) 0%, rgba(2, 6, 23, 1) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.industries-index-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.industries-index-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  transition: var(--transition-normal);
  box-shadow: var(--glass-shadow);
  text-align: left;
  height: 100%;
}

.industries-index-card:hover {
  border-color: var(--glass-hover-border);
  transform: translateY(-5px);
  background: rgba(212, 175, 55, 0.02);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
}

.index-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.index-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.15rem;
  transition: var(--transition-fast);
}

.industries-index-card:hover .index-card-icon {
  background: var(--gradient-primary);
  color: #020617;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.index-card-header h4 {
  font-size: 1.1rem;
  font-family: var(--font-headings);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.industries-index-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

.index-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition-fast);
}

.industries-index-card:hover .index-card-link {
  color: var(--accent-cyan);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .industries-index-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .industry-block {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
  }
  .industry-block:nth-child(even) .industry-info {
    order: 1;
  }
  .industry-block:nth-child(even) .industry-visual {
    order: 2;
  }
  .process-timeline-horizontal {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }
  .process-timeline-horizontal::before {
    display: none;
  }
  .process-step-horizontal {
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  }
  .industries-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .details-wrapper-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .industry-info h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .industry-metrics-grid {
    grid-template-columns: 1fr;
  }
  .process-timeline-horizontal {
    grid-template-columns: 1fr;
    gap: 4.5rem 0;
  }
  .industries-index-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium FAQ Section */
.faq-section-custom {
  padding: 8rem 0;
  background: radial-gradient(circle at bottom, rgba(212, 175, 55, 0.05) 0%, rgba(2, 6, 23, 1) 100%);
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.faq-section-custom::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.faq-accordion-wrapper-custom {
  max-width: 850px;
  margin: 4rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item-custom {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(3, 7, 18, 0.8) 100%);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.faq-item-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent 40%, rgba(212, 175, 55, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.faq-item-custom:hover {
  border-color: rgba(212, 175, 55, 0.25);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(3, 7, 18, 0.9) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.04);
}

.faq-item-custom:hover::before {
  opacity: 1;
}

.faq-item-custom.active {
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, rgba(20, 26, 48, 0.7) 0%, rgba(2, 6, 23, 0.95) 100%);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.06);
}

.faq-item-custom.active::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.5), transparent 60%, rgba(212, 175, 55, 0.1));
}

.faq-question-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.faq-question-custom h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  font-family: var(--font-headings);
  margin: 0;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

.faq-item-custom:hover .faq-question-custom h4 {
  color: #f5ebd0;
}

.faq-item-custom.active .faq-question-custom h4 {
  color: #d4af37;
  font-weight: 700;
}

.faq-toggle-custom {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.faq-item-custom:hover .faq-toggle-custom {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.faq-item-custom.active .faq-toggle-custom {
  background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
  color: #020617;
  border-color: transparent;
  transform: rotate(45deg);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.faq-answer-custom {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-custom p {
  margin-top: 1.5rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
}

/* Responsive FAQ Keywords Grid */
.faq-keywords-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.faq-kw-category {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.25rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.faq-kw-category:hover {
  background: rgba(212, 175, 55, 0.03);
  border-color: rgba(212, 175, 55, 0.15);
}

@media (max-width: 768px) {
  .faq-keywords-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .faq-item-custom {
    padding: 1.5rem 1.75rem !important;
  }
}


