/* ===== Base / Theme ===== */
:root {
  --grad-start: #0C1937;
  --grad-mid: #4B1B38;
  --grad-end: #9d1237;

  --text: #f8fafc;
  --muted: #b7c2d1;
  --brand: #ff4d5a;
  --border: rgba(255, 255, 255, .12);
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  --radius-lg: 22px;
  --maxw: 1180px;
}

* {
  box-sizing: border-box
}

:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}


.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 15px;
}


@media (prefers-reduced-motion:reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Footer ===== */
.flc-footer {
  color: var(--text);
  border-top: 1px solid var(--border);
  background:
    radial-gradient(1100px 600px at 16% 12%, rgba(255, 77, 90, .18), transparent 58%),
    radial-gradient(900px 600px at 78% 22%, rgba(72, 133, 237, .12), transparent 62%),
    linear-gradient(100deg, var(--grad-start) 20%, var(--grad-mid) 42%, var(--grad-end) 90%);
  padding: clamp(26px, 5vw, 56px) 15px;
}

.flc-footer__container {
  max-width: var(--maxw);
  margin: 0 auto;
}

.flc-footer__main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(22px, 4.5vw, 56px);
  align-items: start;
  margin-bottom: clamp(22px, 5vw, 56px);
}

.flc-brand {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  margin-bottom: 10px;
}

.flc-brand__strong {
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: .2px;
}

.flc-brand__accent {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--brand);
  letter-spacing: .2px;
}

.flc-desc {
  margin: 8px 0 0;
  color: #e5e9f2;
  line-height: 1.65;
}

.flc-news__title {
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -.2px;
}

.flc-news__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 8px;
}

.flc-input {
  background: #fff;
  color: #0f172a;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: .9rem 1rem;
  width: 100%;
}

.flc-input:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 2px rgba(96, 165, 250, .25);
}

.flc-btn {
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: .9rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(255, 77, 90, .35);
}

.flc-btn:hover {
  opacity: .95;
}

.flc-news__pp {
  margin: 6px 0 0;
  color: #cbd5e1;
  font-size: .95rem;
}

.flc-news__success {
  margin-top: 8px;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
}

.flc-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 3.5vw, 36px);
  margin-bottom: clamp(18px, 4vw, 40px);
}

.flc-col__title {
  margin: 0 0 10px;
  font-weight: 700;
}

.flc-link {
  display: block;
  color: #e5e9f2;
  text-decoration: none;
  padding: 6px 0;
}

.flc-link:hover {
  color: #fff;
}

.flc-bottom {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 14px;
}

.flc-social {
  display: flex;
  gap: 12px;
}

.flc-social__link {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  text-decoration: none;
}

.flc-social__link:hover {
  background: rgba(255, 255, 255, .06);
}

.flc-copy {
  color: #cbd5e1;
  font-size: .95rem;
}

.flc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Footer responsive */
@media (max-width:920px) {
  .flc-footer__main {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .flc-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:560px) {
  .flc-news__form {
    grid-template-columns: 1fr;
  }

  .flc-links {
    grid-template-columns: 1fr;
  }

  .flc-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}