/* ==========================================================
   SERVICES SECTION — Card Accordion Slider
   ========================================================== */
.svc-section {
  background: #000;
  padding: var(--section-space-y) 0;
  text-align: center;
}

/* Header */
.svc-section__header {
  margin-bottom: 60px;
}

.svc-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: var(--fw-black);
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.svc-section__title em {
  color: var(--color-accent);
  font-style: normal;
}

/* =========================
   SLIDER CONTAINER
   ========================= */
.svc-slider {
  display: flex;
  align-items: stretch;
  gap: 12px;
  min-height: 380px;
}

/* =========================
   CARD BASE (collapsed)
   ========================= */
.svc-card {
  flex: 0 0 118px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at top, rgba(14, 165, 233, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(14, 20, 33, 0.96) 0%, rgba(8, 10, 16, 0.98) 100%);
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s ease,
              background 0.4s ease,
              box-shadow 0.4s ease;
  overflow: hidden;
  position: relative;
  padding: 26px 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 26%);
  opacity: 0.6;
  pointer-events: none;
}

.svc-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12), transparent 68%);
  opacity: 0.45;
  pointer-events: none;
}

/* Collapsed: number at top, vertical name in center */
.svc-card .svc-card__body {
  display: none;
}

.svc-card .svc-card__vert {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  overflow: hidden;
}

/* =========================
   ACTIVE CARD (expanded)
   ========================= */
.svc-card--active {
  flex: 1 1 0;
  cursor: default;
  border: 1px solid rgba(30, 140, 255, 0.55);
  box-shadow:
    0 0 0 1px rgba(30, 140, 255, 0.12),
    0 0 50px rgba(30, 140, 255, 0.1),
    inset 0 0 60px rgba(30, 140, 255, 0.03);
  background:
    radial-gradient(circle at top, rgba(14, 165, 233, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(8, 20, 38, 0.98) 0%, rgba(6, 13, 24, 0.99) 100%);
}

.svc-card--active .svc-card__vert {
  display: none;
}

.svc-card--active .svc-card__body {
  display: block;
}

.svc-card--active::after {
  background: radial-gradient(circle, rgba(245, 197, 24, 0.12), transparent 68%);
  opacity: 0.55;
}

/* =========================
   NUMBER (both states)
   ========================= */
.svc-card__num {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: var(--fw-semi);
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
  margin-bottom: 0;
  line-height: 1;
}

.svc-card--active .svc-card__num {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

/* =========================
   VERTICAL TEXT (collapsed)
   ========================= */
.svc-card__vname {
  font-size: 0.82rem;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.svc-card:not(.svc-card--active):hover .svc-card__vname {
  color: rgba(255, 255, 255, 0.65);
}

/* =========================
   BODY CONTENT (active only)
   ========================= */
.svc-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.svc-card__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Hover state for collapsed cards */
.svc-card:not(.svc-card--active):hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: #0e0e0e;
}

/* =========================
   DOT NAVIGATION
   ========================= */
.svc-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.svc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  flex-shrink: 0;
}

.svc-dot--active {
  width: 30px;
  border-radius: 4px;
  background: var(--color-accent);
}

.svc-dot:hover:not(.svc-dot--active) {
  background: rgba(255, 255, 255, 0.45);
}



/* ==========================================================
   DIFFERENTIATORS SECTION (Where Others Stop)
   ========================================================== */
.differentiators {
  background: #050505; /* Use a very dark bg, perhaps base has it */
  padding: var(--section-space-y) 0;
  text-align: center;
}

.differentiators__header {
  margin-bottom: 60px;
}

.diff-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--fw-black);
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.diff-accent-text {
  color: var(--color-blue-accent);
}

/* Table / Comparison grid */
.differentiators__table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08); /* subtle border */
  background: transparent;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.diff-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}

.diff-table thead th {
  padding: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.05); /* Column divider */
}

.diff-table thead th:last-child {
  border-right: none;
}

.diff-table thead th.highlight {
  color: var(--color-blue-accent);
  background: rgba(14, 165, 233, 0.08);
}

.diff-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-blue-accent);
  margin-right: 8px;
  vertical-align: middle;
}

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

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

.diff-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.diff-table td {
  padding: 20px 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  border-right: 1px solid rgba(255, 255, 255, 0.05); /* Column divider */
  vertical-align: middle;
}

.diff-table td:last-child {
  border-right: none;
}

.diff-table td:first-child {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.diff-table td.highlight {
  background: rgba(14, 165, 233, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

/* Icons */
.diff-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 12px;
  vertical-align: middle;
}

.diff-icon svg {
  width: 100%;
  height: 100%;
}

.diff-icon--warn {
  color: #eab308;
}

.diff-icon--cross {
  color: #ef4444;
}

.diff-icon--check {
  color: var(--color-blue-accent);
}

.diff-icon--check-gray {
  color: rgba(255, 255, 255, 0.4);
}

/* Footer elements */
.diff-footer {
  text-align: center;
}

.diff-footer-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.diff-btn {
  background: var(--color-brand-primary);
  color: #fff;
  border: 1px solid var(--color-brand-primary);
  border-radius: var(--btn-radius);
  min-height: var(--btn-height);
  padding: 0 var(--btn-px);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.diff-btn:hover {
  background: var(--color-brand-primary-hover);
  border-color: var(--color-brand-primary-hover);
}

@media (max-width: 768px) {
  .diff-main-title {
    font-size: 2rem;
  }
}

/* ==========================================================
   TEAM SECTION
   ========================================================== */
.team {
  background: #050505; /* Consistent dark background */
  padding: var(--section-space-y) 0;
}

.team__header {
  text-align: left;
  margin-bottom: 60px;
  max-width: 600px;
}

.team__eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.team__eyebrow-line {
  display: block;
  width: 40px;
  height: 2px;
  background-color: #fbbf24; /* yellow */
}

.team__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.team__main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.team__subtitle {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team__card {
  background: #070a0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.team__card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.team__card-img-wrap {
  background: #d1d5db; /* Light gray for transparent images */
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 220px;
  position: relative;
  overflow: hidden;
}

.team__card-img-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(2, 8, 23, 0) 0%, rgba(2, 8, 23, 0.86) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.team__card:hover .team__card-img-wrap::after,
.team__card:focus-within .team__card-img-wrap::after {
  opacity: 1;
}

.team__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.team__card:hover .team__card-img {
  transform: scale(1.04);
}

.team__card-body {
  padding: 24px;
  flex-grow: 1;
}

.team__card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
}

.team__card-role {
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
  font-weight: 600;
}

.team__card-desc {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.team__card-socials {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.team__card:hover .team__card-socials,
.team__card:focus-within .team__card-socials {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.team__social-link {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(45, 191, 255, 0.55);
  background: rgba(6, 20, 38, 0.84);
  color: #d7ecff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
}

.team__social-link svg {
  width: 16px;
  height: 16px;
}

.team__social-link:hover,
.team__social-link:focus-visible {
  color: #ffffff;
  border-color: rgba(46, 198, 255, 0.95);
  background: rgba(14, 165, 233, 0.38);
  box-shadow: 0 0 0 1px rgba(46, 198, 255, 0.35), 0 0 18px rgba(46, 198, 255, 0.4);
  transform: translateY(-1px);
}

/* ==========================================================
   BLOG / INDUSTRY PERSPECTIVES
   ========================================================== */
.blog {
  background: var(--color-bg-section);
}

.blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
  gap: var(--space-6);
}

.blog__header-left { max-width: 480px; }

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.blog__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.blog__card:hover {
  border-color: rgba(245, 197, 24, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.blog__card-thumb {
  width: 100%;
  aspect-ratio: 14/9;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.blog__card:hover .blog__card-thumb {
  transform: scale(1.04);
}

.blog__card-thumb-wrap {
  overflow: hidden;
}

.blog__card-body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog__card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.blog__card-category {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog__card-date {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.blog__card-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--color-text-primary);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-3);
  transition: color var(--transition-fast);
}

.blog__card:hover .blog__card-title {
  color: var(--color-accent);
}

.blog__card-excerpt {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  flex: 1;
  margin-bottom: var(--space-4);
}

.blog__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.blog__card-author {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
}

.blog__card-author-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.blog__card-author-name {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
  line-height: 1.15;
}

.blog__card-author-role {
  font-size: 0.68rem;
  line-height: 1.15;
  color: var(--color-text-muted);
}

.blog__card-author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-accent-light);
  border: 1px solid var(--color-accent-border);
  overflow: hidden;
  flex-shrink: 0;
}

.blog__card-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================
   CONTACT SECTION (Get Started)
   ========================================================== */
.contact {
  background: #050505;
  padding: var(--section-space-y) 0;
  color: #fff;
}

.contact__container {
  width: 100%;
  margin: 0 auto;
}

.contact__header {
  margin-bottom: var(--space-10);
}

.contact__eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.contact__eyebrow-line {
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--color-blue-accent);
}

.contact__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.contact__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact__desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* Cards */
.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: var(--space-10);
}

.contact__card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.contact__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.08) 50%, transparent 80%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.contact__card:hover,
.contact__card:focus-visible {
  transform: translateY(-4px);
}

.contact__card:hover::before,
.contact__card:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.contact__card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
}

.contact__card-icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.28s ease, color 0.28s ease;
}

.contact__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
}

.contact__card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 32px 0;
  flex-grow: 1;
}

.contact__card-link {
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: transform 0.28s ease, color 0.28s ease;
}

/* Primary Card (Left) */
.contact__card--primary {
  background: var(--color-brand-primary);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}

.contact__card--primary .contact__card-icon {
  color: #fff;
}

.contact__card--primary .contact__card-text {
  color: rgba(255, 255, 255, 0.9);
}

.contact__card--primary .contact__card-link {
  color: #fff;
}

/* Secondary Card (Right) */
.contact__card--secondary {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact__card--secondary .contact__card-icon {
  color: #fbbf24;
}

.contact__card--secondary .contact__card-text {
  color: #94a3b8;
}

.contact__card--secondary .contact__card-link {
  color: #fbbf24;
}

.contact__card--primary:hover,
.contact__card--primary:focus-visible {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(14, 165, 233, 0.45), 0 0 24px rgba(14, 165, 233, 0.28);
  border-color: rgba(255, 255, 255, 0.22);
}

.contact__card--secondary:hover,
.contact__card--secondary:focus-visible {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(245, 197, 24, 0.25), 0 0 20px rgba(245, 197, 24, 0.12);
  border-color: rgba(245, 197, 24, 0.38);
}

.contact__card:hover .contact__card-icon svg,
.contact__card:focus-visible .contact__card-icon svg {
  transform: translateY(-1px) scale(1.04);
}

.contact__card:hover .contact__card-link,
.contact__card:focus-visible .contact__card-link {
  transform: translateX(4px);
}

/* Divider */
.contact__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: var(--space-10);
}

/* Stats */
.contact__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact__stat-val {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}

.contact__stat-lbl {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-16) 0 0;
  color: #fff;
  font-family: var(--font-body);
}

.footer__container {
  max-width: var(--container-max);
  padding: 0 var(--container-chrome-pad);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer__brand {
  display: flex;
  flex-direction: column;
}

.footer__brand-logo {
  display: block;
  margin-bottom: 24px;
}

.footer__brand-logo img {
  width: auto;
  height: 38px;
}

.footer__brand-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 320px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  color: #cbd5e1;
  transition: color 0.3s ease;
}

.footer__social-link:hover svg {
  color: #fff;
}

.footer__col-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__links a {
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Contact Links specifically */
.footer__links--contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer__links--contact .align-top {
  align-items: flex-start;
}

.footer__links--contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer__links--contact .icon-map {
  margin-top: 2px;
}

/* Newsletter Area */
.footer__newsletter {
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__newsletter-header {
  margin-bottom: 20px;
}

.footer__newsletter-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.footer__newsletter-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0;
}

.footer__form {
  display: flex;
  gap: var(--space-3);
  max-width: 400px;
}

.footer__input {
  flex-grow: 1;
  background: #0f1115; /* Dark gray */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--btn-radius);
  min-height: var(--btn-height);
  padding: 0 var(--btn-px);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.footer__input:focus {
  border-color: var(--color-blue-accent);
}

.footer__input::placeholder {
  color: #475569;
}

.footer__submit {
  background: var(--color-brand-primary);
  border: none;
  border-radius: var(--btn-radius);
  width: var(--btn-height);
  height: var(--btn-height);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer__submit:hover {
  background: var(--color-brand-primary-hover);
}

.footer__submit svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

/* Footer Bottom */
.footer__bottom {
  padding: var(--space-8) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__copyright {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__bottom-links a:hover {
  color: #fff;
}
