/* ============================================================
   SCRAPERSCOOP — PAGES COMMON CSS
   scraperscoop-pages.css  |  v1.5 (Travel page, Sections 1–5)
   01. Reset & Base           09. Section Wrapper & Alt BG
   02. Container & Layout     10. Section Header
   03. Badges & Labels        11. Data Schema Grid
   04. Typography             12. Platform Logo Grid
   05. Buttons                13. Trust / Features Grid
   06. Page Hero              14. Process Steps Row
   07. Platform Tags (hero)   15. Responsive
   08. Trust Strip
============================================================ */

/* ── 01. Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', sans-serif;
  background-color: #060c18;
  color: #f8fafc;
  -webkit-font-smoothing: antialiased;
}

/* ── 02. Container & Layout ── */
.sc-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.sc-text-center { text-align: center; }

/* ── 03. Badges ── */
.sc-badge {
  display: inline-block;
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.22);
  color: #38bdf8;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* ── 04. Typography ── */
.sc-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #f1f5f9;
  margin-bottom: 20px;
}
.sc-text-gradient {
  background: linear-gradient(90deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sc-hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #64748b;
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto 32px;
}

/* ── 05. Buttons ── */
.sc-btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.sc-btn-group.sc-centered { justify-content: center; }
.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.sc-btn-primary {
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: #fff;
  box-shadow: 0 0 28px rgba(56,189,248,0.22);
}
.sc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 42px rgba(56,189,248,0.38);
  color: #fff;
}
.sc-btn-secondary {
  background: rgba(255,255,255,0.05);
  color: #cbd5e1;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}
.sc-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  transform: translateY(-2px);
}

/* ── 06. Page Hero ── */
.sc-landing-wrapper { position: relative; overflow: hidden; }
.sc-hero-section {
  position: relative;
  padding: 100px 24px 80px;
  text-align: center;
  background: #060c18;
  overflow: hidden;
}
.sc-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  pointer-events: none;
}
.sc-hero-section::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(56,189,248,0.09) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  filter: blur(30px);
}

/* ── 07. Platform Tags (hero inline) ── */
.sc-platform-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.sc-platform-tags span {
  display: inline-block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}
.sc-platform-tags span:hover {
  background: rgba(56,189,248,0.08);
  border-color: rgba(56,189,248,0.25);
  color: #38bdf8;
}

/* ── 08. Trust Strip ── */
.sc-trust-strip {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 24px;
}
.sc-trust-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.sc-trust-flex span {
  font-size: 0.82rem;
  font-weight: 500;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 28px;
  position: relative;
}
.sc-trust-flex span + span::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.1);
}

/* ── 09. Section Wrapper ── */
.sc-section {
  padding: 90px 24px;
  position: relative;
  overflow: hidden;
}
.sc-section-alt {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  pointer-events: none;
}

/* ── 10. Section Header ── */
.sc-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.sc-section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #f1f5f9;
  margin-bottom: 14px;
}
.sc-section-sub {
  color: #64748b;
  font-size: 1rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── 11. Data Schema Grid ── */
.sc-schema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sc-schema-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.sc-schema-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-color, #38bdf8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sc-schema-card:hover {
  border-color: rgba(56,189,248,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.05);
}
.sc-schema-card:hover::before { opacity: 1; }
.sc-schema-card:nth-child(1) { --card-color: #38bdf8; }
.sc-schema-card:nth-child(2) { --card-color: #818cf8; }
.sc-schema-card:nth-child(3) { --card-color: #34d399; }
.sc-schema-card:nth-child(4) { --card-color: #fb923c; }
.sc-schema-card:nth-child(5) { --card-color: #f472b6; }
.sc-schema-card:nth-child(6) { --card-color: #a78bfa; }

.sc-schema-header {
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.02);
}
.sc-schema-list {
  list-style: none;
  padding: 20px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sc-schema-list li {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 300;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
  transition: color 0.2s ease;
}
.sc-schema-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--card-color, #38bdf8);
  opacity: 0.6;
}
.sc-schema-card:hover .sc-schema-list li { color: #94a3b8; }

/* ── 12. Platform Logo Grid ── */
.sc-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.sc-platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 32px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.sc-platform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(56,189,248,0.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.sc-platform-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(56,189,248,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.sc-platform-card:hover::before { opacity: 1; }
.sc-platform-logo {
  width: 100%;
  max-width: 160px;
  height: 56px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.8);
  transition: filter 0.3s ease;
}
.sc-platform-card:hover .sc-platform-logo {
  filter: grayscale(0) brightness(1);
}
.sc-platform-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #475569;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}
.sc-platform-card:hover .sc-platform-name { color: #38bdf8; }
.sc-platform-footnote {
  text-align: center;
  font-size: 0.88rem;
  color: #475569;
  font-weight: 300;
  padding: 4px 0;
}
.sc-platform-footnote a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
}
.sc-platform-footnote a:hover { text-decoration: underline; }

/* ── 13. Trust / Features Grid ── */
.sc-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sc-trust-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.sc-trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-color, #38bdf8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sc-trust-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(56,189,248,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.sc-trust-card:hover::before { opacity: 1; }
.sc-trust-card:nth-child(1) { --card-color: #38bdf8; }
.sc-trust-card:nth-child(2) { --card-color: #818cf8; }
.sc-trust-card:nth-child(3) { --card-color: #34d399; }
.sc-trust-card:nth-child(4) { --card-color: #fb923c; }
.sc-trust-card:nth-child(5) { --card-color: #f472b6; }
.sc-trust-card:nth-child(6) { --card-color: #a78bfa; }
.sc-trust-icon {
  font-size: 1.6rem;
  width: 54px; height: 54px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.3s ease;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.sc-trust-card:nth-child(1) .sc-trust-icon { background: rgba(56,189,248,0.1);  border-color: rgba(56,189,248,0.15); }
.sc-trust-card:nth-child(2) .sc-trust-icon { background: rgba(129,140,248,0.1); border-color: rgba(129,140,248,0.15); }
.sc-trust-card:nth-child(3) .sc-trust-icon { background: rgba(52,211,153,0.1);  border-color: rgba(52,211,153,0.15); }
.sc-trust-card:nth-child(4) .sc-trust-icon { background: rgba(251,146,60,0.1);  border-color: rgba(251,146,60,0.15); }
.sc-trust-card:nth-child(5) .sc-trust-icon { background: rgba(244,114,182,0.1); border-color: rgba(244,114,182,0.15); }
.sc-trust-card:nth-child(6) .sc-trust-icon { background: rgba(167,139,250,0.1); border-color: rgba(167,139,250,0.15); }
.sc-trust-card:hover .sc-trust-icon { transform: scale(1.1); }
.sc-trust-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
}
.sc-trust-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
  font-weight: 300;
}

/* ── 14. Process Steps Row ── */
.sc-process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.sc-process-row::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 1px;
  background: linear-gradient(90deg, #38bdf8, #818cf8, #34d399, #a78bfa);
  opacity: 0.2;
  z-index: 0;
}
.sc-process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.sc-step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #38bdf8;
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.2);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.sc-process-step:nth-child(2) .sc-step-num { color: #818cf8; background: rgba(129,140,248,0.08); border-color: rgba(129,140,248,0.2); }
.sc-process-step:nth-child(3) .sc-step-num { color: #34d399; background: rgba(52,211,153,0.08);  border-color: rgba(52,211,153,0.2); }
.sc-process-step:nth-child(4) .sc-step-num { color: #a78bfa; background: rgba(167,139,250,0.08); border-color: rgba(167,139,250,0.2); }
.sc-process-step:hover .sc-step-num {
  transform: scale(1.12);
  box-shadow: 0 0 24px rgba(56,189,248,0.25);
}
.sc-process-step h5 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.sc-process-step p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
  font-weight: 300;
}

/* ── 15. Responsive ── */
@media (max-width: 900px) {
  .sc-schema-grid   { grid-template-columns: repeat(2, 1fr); }
  .sc-platform-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-trust-grid    { grid-template-columns: repeat(2, 1fr); }
  .sc-process-row   { grid-template-columns: repeat(2, 1fr); gap: 48px 20px; }
  .sc-process-row::before { display: none; }
}
@media (max-width: 768px) {
  .sc-hero-section { padding: 80px 20px 60px; }
  .sc-btn-group    { justify-content: center; }
  .sc-trust-flex   { gap: 16px; }
  .sc-trust-flex span + span::before { display: none; }
  .sc-trust-flex span { padding: 0; }
  .sc-section      { padding: 60px 16px; }
}
@media (max-width: 560px) {
  .sc-schema-grid   { grid-template-columns: 1fr; }
  .sc-platform-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-trust-grid    { grid-template-columns: 1fr; }
  .sc-process-row   { grid-template-columns: 1fr; gap: 40px; }
}

/* ── 16. Use Cases Table ── */
.sc-table-container {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
}

.sc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.sc-table thead tr {
  background: rgba(56,189,248,0.06);
  border-bottom: 1px solid rgba(56,189,248,0.15);
}

.sc-table thead th {
  padding: 18px 28px;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.sc-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s ease;
}

.sc-table tbody tr:last-child { border-bottom: none; }

.sc-table tbody tr:hover {
  background: rgba(56,189,248,0.04);
}

.sc-table td {
  padding: 18px 28px;
  color: #64748b;
  font-weight: 300;
  line-height: 1.5;
  vertical-align: middle;
}

.sc-table td:first-child {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #e2e8f0;
  white-space: nowrap;
  width: 30%;
}

/* ── 17. Pricing Grid ── */
.sc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.sc-pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.sc-pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sc-pricing-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(56,189,248,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.sc-pricing-card:hover::before { opacity: 1; }

/* Featured / popular card */
.sc-pricing-card.sc-popular {
  background: rgba(56,189,248,0.06);
  border-color: rgba(56,189,248,0.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.sc-pricing-card.sc-popular::before { opacity: 1; }
.sc-pricing-card.sc-popular:hover { transform: translateY(-10px); }

.sc-pricing-popular-badge {
  display: inline-block;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}

.sc-pricing-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #f1f5f9;
}

.sc-pricing-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  font-weight: 300;
}

.sc-pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.sc-pricing-features li {
  font-size: 0.88rem;
  color: #94a3b8;
  font-weight: 300;
  padding-left: 20px;
  position: relative;
}

.sc-pricing-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #38bdf8;
  opacity: 0.7;
}

.sc-pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #cbd5e1;
  margin-top: auto;
}
.sc-pricing-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.sc-pricing-btn.sc-pricing-btn-primary {
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  border: none;
  color: #fff;
  box-shadow: 0 0 28px rgba(56,189,248,0.22);
}
.sc-pricing-btn.sc-pricing-btn-primary:hover {
  box-shadow: 0 0 42px rgba(56,189,248,0.38);
}

/* Custom project note card */
.sc-note-card {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: center;
}
.sc-note-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
}
.sc-note-card p {
  font-size: 0.88rem;
  color: #38bdf8;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .sc-pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .sc-pricing-card.sc-popular { transform: translateY(0); }
}

/* --- Trust Grid --- */
.sc-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.trust-card {
  background: #1e293b;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}
.trust-card:hover {
  border-color: #38bdf8;
  transform: translateY(-5px);
}
.trust-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

/* --- FAQ Accordion --- */
.sc-accordion {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}
.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px;
  color: #fff;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.02);
}
.accordion-item.active .accordion-content {
  max-height: 200px;
  padding: 20px;
}

/* --- Process (Timeline) --- */
.sc-process-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.sc-process-step {
  flex: 1;
  min-width: 200px;
  background: #1e293b;
  padding: 25px;
  border-radius: 12px;
  position: relative;
  border-top: 1px solid #334155;
}
.step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05); /* Ghost number */
  position: absolute;
  top: 5px;
  right: 15px;
  line-height: 1;
}
.sc-process-step h3 {
  color: var(--sc-cyan);
  font-size: 1.1rem;
  margin-top: 10px;
  margin-bottom: 8px;
}
.sc-process-step p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.4;
  margin: 0;
}
/* --- Process Row --- */
.sc-process-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.process-step {
  position: relative;
}
.step-num {
  font-size: 40px;
  font-weight: 900;
  color: rgba(56, 189, 248, 0.1);
  margin-bottom: -20px;
}
/* footer css */

/* --- Footer Base --- */
.sc-footer {
  background-color: #020617; /* Very Dark Navy */
  padding: 80px 0 30px;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* --- Brand Styling --- */
.footer-logo img {
  height: 75px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1); /* Keeps logo white */
}

.footer-tagline {
  color: #38bdf8;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.footer-desc {
  line-height: 1.6;
  font-size: 14px;
}

/* --- Link Columns --- */
.footer-col h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-links li a:hover {
  color: #38bdf8;
  padding-left: 5px;
}

/* --- Contact & CTA --- */
.contact-text {
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-cta {
  display: inline-block;
  color: #38bdf8;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #38bdf8;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s;
}

.footer-cta:hover {
  background: #38bdf8;
  color: #020617;
}

/* --- Footer Bottom --- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-legal a {
  color: #475569;
  text-decoration: none;
  margin-left: 20px;
}

.footer-legal a:hover {
  color: #94a3b8;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-desc {
    margin: 0 auto 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .footer-legal a {
    margin: 0 10px;
  }
}
