/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  padding: 104px 6% 64px;
  gap: 56px;
  background: linear-gradient(180deg, var(--blue-bg) 0%, #DCEFFC 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
  opacity: .45;
  z-index: 0;
  animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-1 {
  width: 260px;
  height: 260px;
  background: var(--pop);
  top: -8%;
  right: 6%;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--sky);
  bottom: -10%;
  left: 0%;
  animation-delay: -4s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(15px, -20px) scale(1.08);
  }
}

.hero-left {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  background: var(--paper);
  color: var(--ocean);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 7px 16px;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-family: var(--f-ar);
  font-size: clamp(2.5rem, 4.2vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -.5px;
}

.hero h1 .hl {
  color: var(--pop);
  position: relative;
}

.hero h1 .hl::after {
  content: '|';
  color: var(--pop);
  animation: blink 1s step-end infinite;
  font-weight: 400;
  margin-left: 2px;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

.hero-desc {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-mid);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 14px 28px;
  border-radius: 11px;
  background: var(--pop);
  border: none;
  font-size: .96rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(255, 35, 115, 0.28);
  transition: all .2s;
}

.btn-hero:hover {
  background: #E01D63;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 35, 115, 0.35);
}

.btn-hero-ghost {
  padding: 13px 24px;
  border-radius: 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all .2s;
}

.btn-hero-ghost:hover {
  border-color: var(--ocean);
  color: var(--ocean);
  transform: translateY(-2px);
}

.hero-numbers {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-num {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 20px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}

.hero-num:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hn-val {
  font-family: var(--f-ar);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ocean);
  line-height: 1;
}

.hn-lbl {
  font-size: .74rem;
  font-weight: 500;
  color: var(--ink-mid);
  margin-top: 3px;
}

/* Hero card */
.hero-right {
  position: relative;
  z-index: 1;
}

.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 20px 50px rgba(13, 31, 53, 0.12);
}

.hc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.hc-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
}

.hc-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .73rem;
  font-weight: 600;
  color: #16A34A;
  background: #DCFCE7;
  border-radius: 50px;
  padding: 3px 9px;
}

.hc-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #16A34A;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.hc-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.hc-metric {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.hcm-val {
  font-family: var(--f-ar);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
}

.hcm-lbl {
  font-size: .7rem;
  font-weight: 500;
  color: var(--ink-mid);
  margin-top: 1px;
}

.hcm-up {
  font-size: .68rem;
  color: #16A34A;
  font-weight: 600;
  margin-top: 3px;
}

.hc-chart {
  height: 58px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-bottom: 16px;
}

.hcc-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--mist);
  position: relative;
  overflow: hidden;
}

.hcc-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ocean);
  border-radius: 3px 3px 0 0;
  animation: barUp 1.2s ease forwards;
}

.hcc-bar:nth-child(1) {
  height: 48%
}

.hcc-bar:nth-child(1)::after {
  animation-delay: .05s
}

.hcc-bar:nth-child(2) {
  height: 75%
}

.hcc-bar:nth-child(2)::after {
  animation-delay: .10s
}

.hcc-bar:nth-child(3) {
  height: 58%
}

.hcc-bar:nth-child(3)::after {
  animation-delay: .15s
}

.hcc-bar:nth-child(4) {
  height: 90%
}

.hcc-bar:nth-child(4)::after {
  animation-delay: .20s
}

.hcc-bar:nth-child(5) {
  height: 68%
}

.hcc-bar:nth-child(5)::after {
  animation-delay: .25s
}

.hcc-bar:nth-child(6) {
  height: 100%
}

.hcc-bar:nth-child(6)::after {
  animation-delay: .30s
}

.hcc-bar:nth-child(7) {
  height: 78%
}

.hcc-bar:nth-child(7)::after {
  animation-delay: .35s
}

@keyframes barUp {
  from {
    height: 0
  }

  to {
    height: 55%
  }
}

.hc-orders {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hco {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border-radius: 8px;
  background: var(--paper-2);
}

.hco-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hco-name {
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
}

.hco-city {
  font-size: .72rem;
  color: var(--ink-soft);
}

.hco-badge {
  font-size: .68rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 50px;
}

.b-ok {
  background: #DCFCE7;
  color: #16A34A;
}

.b-go {
  background: var(--mist);
  color: var(--ocean);
}

.b-wt {
  background: #FEF3C7;
  color: #CA8A04;
}

.hero-fc {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
}

.hfc-t {
  top: -34px;
  right: 159px;
}

.hfc-b {
  bottom: -14px;
  left: 18px;
}

.hfc-val {
  font-family: var(--f-ar);
  font-weight: 700;
  font-size: 1rem;
  color: #ff2373;;
}

.hfc-lbl {
  font-size: .68rem;
  font-weight: 500;
  color: var(--ink-mid);
  margin-top: 1px;
}

/* ── LOGOS BAND ── */
.lb {
  border-bottom: 1px solid var(--line);
  padding: 24px 6%;
  background: var(--paper);
}

.lb-in {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.lb-lbl {
  font-size: .77rem;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
  margin-right: 4px;
}

.lb-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.lb-tag {
  font-size: .77rem;
  font-weight: 600;
  color: var(--ink-mid);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 5px 14px;
  background: var(--paper-2);
}

/* ── FEATURES ── */
.feats {
  background: var(--paper);
}

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

.feat-cell {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: border-color .2s, box-shadow .2s;
}

.feat-cell:hover {
  border-color: #ff2373;
  box-shadow: var(--shadow-md);
}

.fc-icon {
  width: 42px;
  height: 42px;
  background: var(--mist);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.fc-title {
  font-family: var(--f-ar);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.fc-desc {
  font-size: .85rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ── AVANTAGES ── */
.av {
  background: var(--blue-bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.av-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.av-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.av-card-hd {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.av-rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.av-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--paper-2);
}

.av-row-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.av-row-name {
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
}

.av-row-sub {
  font-size: .7rem;
  color: var(--ink-soft);
}

.av-badge {
  font-size: .68rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 50px;
}

.av-fc {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 13px;
  box-shadow: var(--shadow-md);
}

.av-fc-1 {
  top: -14px;
  right: -14px;
}

.av-fc-2 {
  bottom: -14px;
  left: -14px;
}

.af-val {
  font-family: var(--f-ar);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.af-lbl {
  font-size: .68rem;
  color: var(--ink-soft);
}

.av-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.av-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.av-item:first-child {
  padding-top: 0;
}

.av-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.av-item-num {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-ar);
  font-weight: 700;
  font-size: .76rem;
  color: var(--ocean);
}

.av-item h4 {
  font-family: var(--f-ar);
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}

.av-item p {
  font-size: .82rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ── TRANSPORTEURS ── */
.trans {
  background: var(--paper);
}

.carriers-strip {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  margin-top: 40px;
}

.carriers-row {
  display: flex;
  gap: 0;
  width: max-content;
  padding: 6px 0;
}

.carriers-row.row-ltr {
  animation: scrollLtr 30s linear infinite;
}

.carriers-row.row-rtl {
  animation: scrollRtl 35s linear infinite;
}

@keyframes scrollLtr {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes scrollRtl {
  from {
    transform: translateX(-50%)
  }

  to {
    transform: translateX(0)
  }
}

.carrier-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  margin: 0 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 110px;
  transition: border-color .2s;
  cursor: default;
}

.carrier-card:hover {
  border-color: var(--ocean);
}

.carrier-card img {
  width: 100px;
  height: 36px;
  object-fit: contain;
  object-position: center;
}

.carrier-name {
  font-size: .7rem;
  font-weight: 600;
  color: var(--ink-mid);
  text-align: center;
  white-space: nowrap;
}

/* ── PRICING ── */
.pricing {
  background: var(--blue-bg);
}

.ptog-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 4px;
  margin: 0 auto 46px;
  width: fit-content;
  background: var(--paper);
}

.ptog-btn {
  padding: 8px 22px;
  border-radius: 7px;
  border: none;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-mid);
  background: transparent;
  cursor: pointer;
  transition: all .2s;
}

.ptog-btn.on {
  background: var(--pop);
  color: white;
}

.ptog-save {
  font-size: .68rem;
  color: white;
  background: #16A34A;
  border-radius: 50px;
  padding: 1px 7px;
  margin-left: 4px;
  font-weight: 700;
}

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

.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}

.price-card:hover {
  border-color: var(--ocean);
  box-shadow: var(--shadow-md);
}

.price-card.hot {
  border: 2px solid var(--pop);
  box-shadow: 0 8px 24px rgba(255, 35, 115, 0.12);
  position: relative;
}

.price-card.hot::before {
  content: '⭐ Le plus populaire';
  position: absolute;
  top: -13px;
  left: 22px;
  background: var(--pop);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
}

.pc-plan {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.price-card.hot .pc-plan {
  color: var(--pop);
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 4px;
}

.pc-amt {
  font-family: var(--f-ar);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.pc-curr {
  font-size: .82rem;
  color: var(--ink-soft);
}

.pc-period {
  font-size: .73rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.pc-tag {
  font-size: .84rem;
  font-weight: 400;
  color: var(--ink-mid);
  margin-bottom: 20px;
  line-height: 1.6;
}

.pc-div {
  height: 1px;
  background: var(--line);
  margin-bottom: 20px;
}

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

.pc-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: .84rem;
  font-weight: 400;
  color: var(--ink-mid);
}

.pc-list li i {
  color: var(--ocean);
  margin-top: 3px;
  font-size: .78rem;
  flex-shrink: 0;
}

.pc-list li.off {
  opacity: .35;
  text-decoration: line-through;
}

.pc-btn {
  margin-top: 24px;
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all .2s;
}

.pc-btn-line {
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--line);
}

.pc-btn-line:hover {
  border-color: var(--ocean);
  color: var(--ocean);
}

.pc-btn-fill {
  background: var(--pop);
  color: white;
}

.pc-btn-fill:hover {
  background: #E01D63;
}

.p-annual {
  display: none;
}

/* ── FAQ ── */
.faq {
  background: var(--paper);
}

.faq-inner {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  gap: 16px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-q i {
  color: var(--ink-soft);
  font-size: .8rem;
  transition: transform .3s, color .2s;
  flex-shrink: 0;
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
  color: var(--pop);
}

.faq-a {
  font-size: .85rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height .35s ease, padding .2s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 18px;
}

/* ── CTA ── */
.cta-footer-wrap {
  background: var(--ink);
}

.cta-section {
  padding: 80px 6% 70px;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-kicker {
  display: inline-block;
  font-size: .76rem;
  font-weight: 600;
  color: var(--sky);
  background: rgba(103, 205, 245, 0.12);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.cta-inner h2 {
  font-family: var(--f-ar);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: .94rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-cta-white {
  padding: 13px 28px;
  border-radius: 10px;
  background: var(--pop);
  color: white;
  font-size: .9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}

.btn-cta-white:hover {
  background: #E01D63;
}

.btn-cta-ghost {
  padding: 12px 24px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: none;
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}

.btn-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ── FOOTER ── */
footer {
  padding: 3% 6% 2%;
  color: rgba(255, 255, 255, 0.5);
}

.f-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  gap: 52px;
  padding-bottom: 48px;
}

.f-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}

.f-brand-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.f-tagline {
  font-size: .8rem;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 230px;
}

.f-socials {
  display: flex;
  gap: 8px;
}

.f-soc {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgb(101 205 244);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255 255 255);
    font-size: 15px;
    text-decoration: none;
    transition: all .2s;
}

.f-soc:hover {
  background: var(--pop);
  color: white;
}

.f-col h4 {
  font-size: .78rem;
  font-weight: 700;
  color: white;
  letter-spacing: .02em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.f-links a {
  font-size: .79rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: color .2s;
}

.f-links a:hover {
  color: var(--sky);
}

.f-citem {
  display: flex;
  gap: 9px;
  font-size: .79rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 9px;
}

.f-citem i {
  color: var(--sky);
  font-size: .75rem;
  margin-top: 2px;
}

.f-bot {
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.f-bot p {
  font-size: .75rem;
  font-weight: 400;
}

.f-bot-links {
  display: flex;
  gap: 16px;
}

.f-bot-links a {
  font-size: .75rem;
  color: rgba(255, 255, 255, .35);
  text-decoration: none;
  transition: color .2s;
}

.f-bot-links a:hover {
  color: white;
}