/* ============================================================
   DELET LANDING PAGE – style.css
   Base styles, desktop-first
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --primary:        #5373fd;
  --primary-light:  #5373fd1f;
  --primary-border: #5373fd33;
  --dark:           #0e1020;
  --dark-80:        rgba(14,16,32,0.80);
  --dark-70:        rgba(14,16,32,0.70);
  --text-body:      #4a4e6a;
  --text-muted:     rgba(74,78,106,0.80);
  --green:          #16a85a;
  --green-light:    #16a85a24;
  --green-border:   #16a85a33;
  --red:            #e03e3e;
  --orange:         #f5a623;
  --bg-page:        #f7f6fb;
  --bg-white:       #ffffff;
  --border:         #e2e4f0;
  --shadow-card:    0 8px 24px -8px rgba(14,16,32,0.12), 0 1px 3px rgba(14,16,32,0.06);
  --radius-card:    24px;
  --radius-sm:      10px;
  --font:           'Urbanist', sans-serif;
}

/* ---- RESET / BASE ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: #fff;
  background-image: url(../images/body-bg.png);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, select { font-family: var(--font); }
address { font-style: normal; }

/* ---- HELPERS ---- */
.text-primary-blue { color: var(--primary) !important; }
.text-dark          { color: var(--dark) !important; }
.fw-black           { font-weight: 900; }

/* ---- SECTION LABELS ---- */
.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.15px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-heading {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--primary-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: background 0.3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding-left: 40px;
  padding-right: 40px;
}
.header-logo svg { display: block; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  font-size: 14px;
  font-weight: 500;
  color: #464555;
  line-height: 1.6;
  transition: color 0.2s;
}
.header-phone:hover { color: var(--primary); }
.btn-demo {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff !important;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.14px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(79,94,245,0.35);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn-demo:hover {
  background: #4260e8;
  box-shadow: 0 6px 18px rgba(79,94,245,0.45);
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 88px; /* header height */
}
.hero-section .container {
  position: relative;
  z-index: 2;
  padding-top: 64px;
  padding-bottom: 80px;
}
.hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: start;
}

/* Left column */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.hero-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.15px;
  color: var(--primary);
  width: fit-content;
}
.hero-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.hero-headline-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-headline {
  font-size: 58px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--dark);
  margin: 0;
}
.hero-headline-accent  { font-weight: 800; color: var(--primary); position: relative;}
.hero-headline-accent::after{content: url(../images/Rectangle-bg.png);position: absolute;left: -40px;}
.hero-headline-faded   { font-weight: 800; color: rgba(83,115,253,0.42); }
.hero-headline-dot     { font-weight: 900; color: var(--dark); }
.hero-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0;
}

/* Stats */
.hero-bottom { display: flex; flex-direction: column; gap: 16px; }
.hero-stats  { display: flex; flex-wrap: wrap; gap: 32px; }
.hero-stat   { display: flex; flex-direction: column; min-width: 90px; }
.stat-value  {
  font-size: 26px;
  font-weight: 600;
  color: var(--dark-80);
  line-height: 1.6;
}
.stat-accent { color: var(--primary); }
.stat-label  {
  font-size: 13px;
  font-weight: 500;
  color: rgba(14,16,32,0.70);
  white-space: nowrap;
}

/* Highlights */
.hero-highlights { display: flex; flex-wrap: wrap; gap: 10px; }
.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-light);
  border: 1px solid var(--green-border);
  border-radius: 24px;
  padding: 6px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green);
}

/* Form card */
.hero-form-wrap { position: relative; }
.form-card {
  background: #fff;
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
}
.form-card-stripe {
  position: absolute;
  top: 0; left: 1px; right: 1px;
  height: 26px;
  background: linear-gradient(90deg, #4f5ef5 0%, #6b79f7 100%);
  border-radius: 23px 23px 0 0;
}
.form-card-body {
  padding: 56px 28px 36px;
}
.form-card-header {
  text-align: center;
  margin-bottom: 24px;
}
.form-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 6px;
}
.form-card-subtitle {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 360px;
  margin: 0 auto;
}

/* Form fields */
.demo-form { display: flex; flex-direction: column; gap: 10px; }
.form-group-stack { display: flex; flex-direction: column; gap: 5px; }
.form-label-sm {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--dark-80);
  text-transform: uppercase;
}
.form-input {
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  padding: 0 13px;
  font-size: 14.5px;
  font-weight: 500;
  color: #9295ae;
  font-family: var(--font);
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(83,115,253,0.12);
}
.form-input::placeholder { color: #9295ae; }

/* Select */
.select-wrap { position: relative; }
.form-select-custom {
  cursor: pointer;
  padding-right: 36px;
}
.select-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* Submit */
.form-submit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.btn-book-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 340px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0.16px;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 20px rgba(79,94,245,0.35);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn-book-demo:hover {
  background: #4260e8;
  box-shadow: 0 8px 24px rgba(79,94,245,0.45);
  transform: translateY(-1px);
}
.form-note {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin: 8px 0 0;
  text-align: center;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-section {
  padding: 90px 0;
}
.features-heading {
  margin-bottom: 56px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card {
  background: #fff;
  border: 1px solid rgba(83,115,253,0.09);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(83,115,253,0.05);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(83,115,253,0.12);
  transform: translateY(-2px);
}
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon--blue {
  background: linear-gradient(135deg, #5373fd 0%, #6b79f7 100%);
  box-shadow: 0 4px 14px rgba(83,115,253,0.35);
}
.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: #41424d;
  margin: 0;
  padding-top: 6px;
}
.feature-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(74,78,106,0.70);
  margin: 0;
  flex: 1;
}
.feature-badge {
  display: inline-block;
  border-radius: 6px;
  padding: 3px 10px 4px;
  font-size: 12px;
  font-weight: 700;
  width: fit-content;
}
.feature-badge--green {
  background: #e8f8ef;
  color: var(--green);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.how-section .section-heading { margin-bottom: 64px; }
.how-deco {
  position: absolute;
  top: -120px;
  right: -80px;
  pointer-events: none;
  z-index: 0;
}
.how-section .container { position: relative; z-index: 2; }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 28px;
}
.step-connector {
  position: absolute;
  top: 52px;
  left: calc(16.66% + 26px);
  right: calc(16.66% + 26px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}
.step-number {
  width: 46px;
  height: 46px;
  border-radius: 23px;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.step-number--active {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border: 3px solid rgba(83,115,253,0.29);
  color: #fff;
  box-shadow: 0 4px 16px rgba(83,115,253,0.35);
}
.step-content { display: flex; flex-direction: column; gap: 10px; }
.step-title {
  font-size: 19px;
  font-weight: 800;
  color: #40414c;
  margin: 0;
}
.step-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(74,78,106,0.70);
  margin: 0;
}

/* ============================================================
   COMPARISON
   ============================================================ */
.comparison-section {
  padding: 90px 0 100px;
}
.comparison-section .section-heading { margin-bottom: 60px; }

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 26px;
  box-shadow: 0 2px 18px rgba(16,33,105,0.09);
}
.comparison-table {
  min-width: 720px;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
}

/* Table Header */
.ct-header {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr;
}
.ct-cell {
  padding: 17px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.97px;
  display: flex;
  align-items: center;
}
.ct-cell--cap {
  background: #f5f6fa;
  color: #9295ae;
  border-radius: 26px 0 0 0;
}
.ct-cell--delet {
  background: var(--primary);
  color: #fff;
  justify-content: center;
  border-radius: 18px 18px 0 0;
}
.ct-cell--other {
  background: #f5f6fa;
  color: #9295ae;
  justify-content: center;
}
.ct-cell--last { border-radius: 0 26px 0 0; }

/* Table Body */
.ct-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr;
  border-bottom: 1px solid rgba(65,66,77,0.09);
}
.ct-row--last { border-bottom: none; }
.ct-row .ct-cell--cap {
  background: #fff;
  border-radius: 0;
  color: #41424d;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0;
  border-right: 1px solid rgba(65,66,77,0.07);
  min-height: 66px;
  padding: 17px 24px;
  align-items: center;
}
.ct-row--last .ct-cell--cap { border-radius: 0 0 0 26px; }
.ct-cell--delet-col {
  background: rgba(83,115,253,0.06);
  border-left: 1px solid var(--primary-border);
  border-right: 1px solid var(--primary-border);
  justify-content: center;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  min-height: 66px;
}
.ct-row--last .ct-cell--delet-col { border-radius: 0 0 18px 18px; }
.ct-cell--other-col {
  background: #fff;
  justify-content: center;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid rgba(65,66,77,0.07);
}
.ct-row--last .ct-cell--other-col:last-child { border-radius: 0 0 26px 0; }

.ct-val {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
}
.ct-val--green  { color: var(--green); }
.ct-val--red    { color: var(--red); }
.ct-val--orange { color: var(--orange); font-size: 15px; font-weight: 600; }
.ct-val--muted  { color: #818497; font-size: 14px; font-weight: 500; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 90px 0 120px;
  overflow: hidden;
}
.testimonials-section .section-heading { margin-bottom: 56px; }

/* Slider wrapper */
.testimonials-slider-wrap {
  position: relative;
  padding: 0 8px;
}

/* Slick core overrides */
.testimonials-slider .slick-list  { overflow: visible; }
.testimonials-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}
.testimonials-slider .slick-slide         { height: auto; float: none; }
.testimonials-slider .slick-slide > div   { height: 100%; }

/* Each slide wrapper */
.testi-slide { padding: 0 13px; outline: none; }

/* ─── BASE card (inactive / side) ─────────────────────────── */
.testi-card {
  position: relative;
  border-radius: 24px;
  padding: 36px 32px;
  display: flex !important;
  flex-direction: column;
  gap: 22px;
  height: 100%;
  /* inactive look */
  background: #f9f9fb;
  border: 1px solid var(--border);
  box-shadow: none;
  opacity: 0.68;
  transform: scale(0.95);
  transition: background 0.4s ease, border-color 0.4s ease,
              box-shadow 0.4s ease, opacity 0.4s ease,
              transform 0.4s ease, color 0.4s ease;
  overflow: hidden;
}

/* ─── ACTIVE card (.slick-current) ────────────────────────── */
.slick-current .testi-card {
  background: var(--primary);
  border: 4px solid var(--primary);
  box-shadow: 0 24px 48px rgba(83,115,253,0.38);
  opacity: 1;
  transform: scale(1.0);
  overflow: visible;
}

/* Quote icon – only shown on active */
.testi-quote-icon {
  position: absolute;
  top: -50px;
  left: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.slick-current .testi-quote-icon { opacity: 1; }

/* ─── Stars ─────────────────────────────────────────────────── */
.testi-stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--primary);
  transition: color 0.4s ease;
  line-height: 1;
}
.slick-current .testi-stars { color: #4ef2bf; }

/* ─── Quote text ─────────────────────────────────────────────── */
.testi-quote {
  font-size: 15.5px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.72;
  color: #464555;
  margin: 0;
  flex: 1;
  transition: color 0.4s ease, font-size 0.4s ease;
}
.slick-current .testi-quote {
  font-size: 18.5px;
  font-weight: 500;
  color: #fff;
}

/* ─── Author ─────────────────────────────────────────────────── */
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(199,196,216,0.30);
  border: 2px solid transparent;
  transition: border-color 0.4s ease, width 0.4s ease, height 0.4s ease;
}
.slick-current .testi-avatar {
  width: 54px;
  height: 54px;
  border-color: rgba(255,255,255,0.35);
}
.testi-author-info { display: flex; flex-direction: column; }
.testi-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1c1d;
  line-height: 1.5;
  transition: color 0.4s ease;
}
.slick-current .testi-name { color: #fff; font-size: 16.5px; }
.testi-role {
  font-size: 12.5px;
  font-weight: 400;
  color: #464555;
  letter-spacing: 0.26px;
  transition: color 0.4s ease;
}
.slick-current .testi-role { color: rgba(255,255,255,0.72); font-size: 13.5px; }

/* ── Slick arrows ── */
.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 14px rgba(0,0,0,0.13);
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.15s;
}
.testimonials-slider .slick-prev { left: -22px; }
.testimonials-slider .slick-next { right: -22px; }
.testimonials-slider .slick-prev:hover,
.testimonials-slider .slick-next:hover {
  box-shadow: 0 4px 20px rgba(83,115,253,0.20);
  transform: translateY(-52%);
}
.testimonials-slider .slick-prev::before,
.testimonials-slider .slick-next::before {
  color: var(--primary);
  font-size: 18px;
  opacity: 1;
}

/* ── Slick dots ── */
.testimonials-slider .slick-dots {
  bottom: -44px;
}
.testimonials-slider .slick-dots li button::before {
  color: var(--primary);
  font-size: 8px;
  opacity: 0.35;
  transition: opacity 0.2s;
}
.testimonials-slider .slick-dots li.slick-active button::before {
  color: var(--primary);
  opacity: 1;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  padding: 40px 0 0;
  margin-bottom: -86px;
}
.cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #5373fd 0%, #4f5ef5 100%);
  border-radius: 28px;
  overflow: hidden;
  padding: 60px 0 60px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 260px;
}
.cta-card::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 40%;
  background-image: url(../images/how-it-works.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.cta-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}
.cta-heading {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -1.2px;
  color: #fff;
  line-height: 1.22;
  margin: 0;
}
.cta-heading--light { color: #e8edff; }
.cta-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
  margin: 0;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.16px;
  padding: 13px 26px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.cta-btn--primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.cta-btn--primary:hover {
  background: rgba(255,255,255,0.93);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.20);
  color: var(--primary);
}
.cta-btn--secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(205,208,232,0.70);
}
.cta-btn--secondary:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
  color: #fff;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding: 144px 0 48px;
}
.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 340px;
}
.footer-brand img{
  width: 150px;
}
.footer-tagline {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,0.60);
  margin: 0;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.footer-contact-item:hover { opacity: 0.70; color: #fff; }
.footer-contact-item svg { flex-shrink: 0; }
