/* ==========================================================================
   XSOL CLOUD STYLESHEET
   Accurately matches XSOL Cloud UI designs and brand aesthetics
   ========================================================================== */

.xsol-cloud-page {
  font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1e293b;
  overflow-x: hidden;
}

/* ==========================================================================
   1. HERO SECTION (Screenshot 1)
   ========================================================================== */
.xc-hero-section {
  position: relative;
  width: 100%;
  min-height: 620px;
  background-color: #030d22;
  background-image: url('/static/img/xsol_cloud_bg.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 100px 0 85px 0;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .xc-hero-section {
    background-size: 100% 100%;
    background-position: center top;
    min-height: 640px;
  }
}

/* Responsive backdrop overlay to guarantee text contrast on tablets/phones */
.xc-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(3, 13, 34, 0.92) 0%,
    rgba(3, 13, 34, 0.78) 42%,
    rgba(3, 13, 34, 0.28) 70%,
    rgba(3, 13, 34, 0) 100%
  );
  z-index: 1;
}

@media (max-width: 991px) {
  .xc-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(3, 13, 34, 0.95) 0%,
      rgba(3, 13, 34, 0.88) 100%
    );
  }
  .xc-hero-section {
    background-position: top center;
    padding: 60px 0 45px 0;
  }
}

.xc-hero-container {
  position: relative;
  z-index: 2;
}

.xc-hero-content {
  max-width: 720px;
}

/* Eyebrow tag: — HYBRID. SECURE. SCALABLE. */
.xc-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #00d29d;
  margin-bottom: 16px;
}

.xc-eyebrow-dash {
  width: 22px;
  height: 3px;
  background: #00d29d;
  border-radius: 2px;
  display: inline-block;
}

.xc-eyebrow-text {
  color: #00e5ff;
}

/* Headline */
.xc-hero-title {
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.xc-hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 400;
  color: #e2e8f0;
  line-height: 1.45;
  margin-bottom: 28px;
}

/* CTA Row with Book Button & Microsoft Badge */
.xc-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 38px;
}

.xc-btn-consultation {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1b6ff8 0%, #00b4d8 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.35);
  transition: all 0.25s ease;
  border: none;
}

.xc-btn-consultation:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 180, 216, 0.5);
  color: #ffffff;
}

.xc-btn-icon {
  font-size: 1.1rem;
}

.xc-btn-arrow {
  font-size: 1.05rem;
  transition: transform 0.2s ease;
}

.xc-btn-consultation:hover .xc-btn-arrow {
  transform: translateX(4px);
}

/* Microsoft Solutions Partner Badge */
.xc-ms-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  padding: 4px 8px;
  border-radius: 8px;
}

.xc-ms-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 11px);
  grid-template-rows: repeat(2, 11px);
  gap: 2px;
}

.xc-ms-sq {
  width: 11px;
  height: 11px;
}

.xc-ms-red { background-color: #f25022; }
.xc-ms-green { background-color: #7fba00; }
.xc-ms-blue { background-color: #00a4ef; }
.xc-ms-yellow { background-color: #ffb900; }

.xc-ms-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.xc-ms-name {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.xc-ms-sub {
  color: #e2e8f0;
  font-size: 0.84rem;
  font-weight: 500;
}

/* Hero Bottom Trust Bar */
.xc-hero-trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 22px;
  gap: 16px;
  max-width: 820px;
}

@media (max-width: 991px) {
  .xc-hero-trust-bar {
    flex-wrap: wrap;
    gap: 16px;
  }
}

.xc-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
}

.xc-trust-item:not(:last-child) {
  padding-right: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .xc-trust-item:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }
}

.xc-trust-icon {
  width: 24px;
  height: 24px;
  color: #00e5a3;
  flex-shrink: 0;
}

.xc-trust-label {
  color: #f1f5f9;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
}

/* ==========================================================================
   2. STATS BAR (Screenshot 2)
   ========================================================================== */
.xc-stats-section {
  position: relative;
  z-index: 5;
  margin-top: 40px;
  margin-bottom: 50px;
}

.xc-stats-container {
  background: linear-gradient(180deg, #06132d 0%, #020919 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 16px 40px rgba(3, 13, 34, 0.5);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

@media (max-width: 991px) {
  .xc-stats-section {
    margin-top: 0;
    margin-bottom: 30px;
    padding-top: 20px;
  }
  .xc-stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .xc-stats-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.xc-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
}

.xc-stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 991px) {
  .xc-stat-item:not(:last-child) {
    border-right: none;
  }
}

.xc-stat-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.xc-stat-icon-orange {
  color: #ff6b00;
}

.xc-stat-icon-blue {
  color: #38bdf8;
}

.xc-stat-content {
  display: flex;
  flex-direction: column;
}

.xc-stat-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: #ff6b00;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.xc-stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}

/* ==========================================================================
   3. OUR CLOUD SERVICES (Screenshot 3 - Top)
   ========================================================================== */
.xc-services-section {
  padding: 60px 0 50px 0;
  background: #f8fafc;
}

.xc-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.xc-section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0a1d37;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.xc-orange-pill-center {
  width: 44px;
  height: 3.5px;
  background: #ff6a00;
  border-radius: 4px;
  margin: 0 auto;
}

.xc-orange-pill-left {
  width: 38px;
  height: 3.5px;
  background: #ff6a00;
  border-radius: 4px;
  margin: 8px 0 24px 0;
}

.xc-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media (max-width: 1200px) {
  .xc-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .xc-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .xc-services-grid {
    grid-template-columns: 1fr;
  }
}

.xc-service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 26px 18px 24px 18px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.xc-service-card:hover {
  transform: translateY(-6px);
  border-color: #ff6a00;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.xc-service-icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.xc-service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1d37;
  margin-bottom: 10px;
  line-height: 1.3;
}

.xc-service-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ==========================================================================
   4. TWO-COLUMN: WHY CHOOSE & CLOUD PLATFORMS (Screenshot 3 - Bottom)
   ========================================================================== */
.xc-split-section {
  padding: 10px 0 60px 0;
  background: #f8fafc;
}

.xc-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 991px) {
  .xc-split-grid {
    grid-template-columns: 1fr;
  }
}

/* Left: Dark Navy "Why Choose XSOL Cloud?" Card */
.xc-why-card {
  background: #041126;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 38px 34px;
  color: #ffffff;
  box-shadow: 0 12px 36px rgba(4, 17, 38, 0.35);
}

.xc-card-title-light {
  font-size: 1.65rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.xc-why-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}

@media (max-width: 576px) {
  .xc-why-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.xc-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.xc-pillar-icon-wrap {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.xc-pillar-content {
  display: flex;
  flex-direction: column;
}

.xc-pillar-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.xc-pillar-desc {
  font-size: 0.83rem;
  color: #94a3b8;
  line-height: 1.45;
  margin-bottom: 0;
}

/* Right: Light "Our Cloud Platforms" Card */
.xc-platforms-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 38px 34px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.xc-card-title-dark {
  font-size: 1.65rem;
  font-weight: 700;
  color: #0a1d37;
  margin-bottom: 4px;
}

.xc-platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 576px) {
  .xc-platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.xc-platform-badge {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
  transition: all 0.25s ease;
}

.xc-platform-badge:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.xc-platform-logo,
.xc-platform-img {
  width: auto;
  max-width: 86%;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.xc-img-azure { height: 38px; }
.xc-img-aws { height: 36px; }
.xc-img-gcp { height: 33px; max-width: 92%; }
.xc-img-vmware { height: 38px; }
.xc-img-hp, .xc-img-hpe { height: 44px; width: 44px; }
.xc-img-openstack { height: 31px; max-width: 92%; }

.xc-platform-badge:hover .xc-platform-img,
.xc-platform-badge:hover .xc-platform-logo {
  transform: scale(1.05);
}

/* ==========================================================================
   5. CTA BANNER (Screenshot 4)
   ========================================================================== */
.xc-cta-section {
  padding: 20px 0 80px 0;
  background: #f8fafc;
}

.xc-cta-banner-wrapper {
  position: relative;
  background: #020b18;
  background: linear-gradient(135deg, #020918 0%, #03122c 50%, #020b18 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(2, 11, 28, 0.45);
}

/* Ambient glow overlay */
.xc-cta-ambient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, rgba(14, 115, 246, 0.1) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.xc-cta-top-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  padding: 38px 40px 24px 44px;
  gap: 20px;
}

@media (max-width: 991px) {
  .xc-cta-top-row {
    grid-template-columns: 1fr;
    padding: 36px 24px 28px 24px;
  }
}

.xc-cta-headline {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 14px;
}

.xc-cta-headline-orange {
  color: #ff6b00;
}

.xc-cta-subtext {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 520px;
}

.xc-cta-btn-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.xc-btn-expert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff6b00 0%, #ff4500 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
  transition: all 0.25s ease;
  border: none;
}

.xc-btn-expert:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 107, 0, 0.5);
  color: #ffffff;
}

.xc-btn-expert-circle {
  width: 22px;
  height: 22px;
  background: #ffffff;
  color: #ff4500;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.xc-btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.xc-btn-contact:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Illustration on the right of CTA banner */
.xc-cta-illustration-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.xc-cta-cloud-art {
  width: 100%;
  max-width: 530px;
  height: auto;
  border-radius: 12px;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 100%);
  filter: drop-shadow(0 0 35px rgba(255, 107, 0, 0.3));
}

/* Integrated Stats Strip inside CTA banner (Screenshot 4 bottom) */
.xc-cta-bottom-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 9, 25, 0.65);
  backdrop-filter: blur(10px);
  padding: 18px 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

@media (max-width: 991px) {
  .xc-cta-bottom-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .xc-cta-bottom-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.xc-cta-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.xc-cta-stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 14px;
}

@media (max-width: 991px) {
  .xc-cta-stat-item:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }
}

/* ==========================================================================
   6. 4-STEP CLOUD TRANSFORMATION ROADMAP
   ========================================================================== */
.xc-roadmap-section {
  padding: 60px 0 55px 0;
  background: #ffffff;
  border-top: 1px solid #edf2f7;
}

.xc-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}

@media (max-width: 1024px) {
  .xc-roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .xc-roadmap-grid {
    grid-template-columns: 1fr;
  }
}

.xc-roadmap-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
}

.xc-roadmap-card:hover {
  transform: translateY(-5px);
  border-color: #ff6a00;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.xc-roadmap-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.xc-roadmap-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ff6a00;
  line-height: 1;
  letter-spacing: -0.5px;
}

.xc-roadmap-badge {
  background: rgba(255, 107, 0, 0.1);
  color: #ff6a00;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.xc-roadmap-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a1d37;
  margin-bottom: 10px;
  line-height: 1.35;
}

.xc-roadmap-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 0;
}

/* ==========================================================================
   7. ENTERPRISE SECURITY & COMPLIANCE SECTION
   ========================================================================== */
.xc-security-section {
  padding: 65px 0 60px 0;
  background: #030d22;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.xc-sec-ambient {
  position: absolute;
  top: -20%;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 115, 246, 0.12) 0%, rgba(0, 210, 255, 0.05) 40%, transparent 70%);
  pointer-events: none;
}

.xc-sec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 1024px) {
  .xc-sec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .xc-sec-grid {
    grid-template-columns: 1fr;
  }
}

.xc-sec-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 22px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.xc-sec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.xc-sec-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(0, 210, 255, 0.1);
  color: #00e5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.xc-sec-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.xc-sec-card-desc {
  font-size: 0.86rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ==========================================================================
   8. FREQUENTLY ASKED QUESTIONS (FAQ) ACCORDION
   ========================================================================== */
.xc-faq-section {
  padding: 65px 0 60px 0;
  background: #f8fafc;
}

.xc-faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.xc-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.xc-faq-item.active {
  border-color: #ff6a00;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.08);
}

.xc-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1d37;
  cursor: pointer;
  transition: color 0.2s ease;
}

.xc-faq-item.active .xc-faq-btn {
  color: #ff6a00;
}

.xc-faq-chevron {
  font-size: 0.95rem;
  color: #94a3b8;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.xc-faq-item.active .xc-faq-chevron {
  transform: rotate(180deg);
  color: #ff6a00;
}

.xc-faq-answer {
  padding: 0 24px 22px 24px;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6;
}

