/* ============================================================
   JEWEBCO → FINDXPERT  |  Transition Landing Page
   Design System & Stylesheet
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  /* Palette */
  --navy:        #0D1B3E;
  --navy-deep:   #070F24;
  --navy-mid:    #162554;
  --gold:        #C9972A;
  --gold-light:  #E8B84B;
  --gold-subtle: rgba(201,151,42,0.12);
  --green:       #3CB54A;
  --green-mid:   #2D8C39;
  --cream:       #F7F4EE;
  --white:       #FFFFFF;
  --text-muted:  rgba(255,255,255,0.55);
  --text-body:   #1A1A2E;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.75rem;
  --text-4xl:  3.75rem;
  --text-5xl:  5rem;

  /* Spacing */
  --gap-xs:  0.5rem;
  --gap-sm:  1rem;
  --gap-md:  2rem;
  --gap-lg:  4rem;
  --gap-xl:  6rem;
  --gap-2xl: 10rem;

  /* Radius */
  --r-sm:   4px;
  --r-md:   12px;
  --r-lg:   24px;
  --r-full: 9999px;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-expo:  cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Page Loader ── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  gap: 1.5rem;
}

#page-loader .loader-logo {
  width: 64px;
  height: 64px;
  opacity: 0;
}

#page-loader .loader-bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  overflow: hidden;
}

#page-loader .loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: var(--r-full);
}

/* ── Nav ── */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

#main-nav.scrolled {
  background: rgba(7, 15, 36, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 5vw;
  border-bottom: 1px solid rgba(201,151,42,0.15);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-brand svg {
  width: 36px;
  height: 36px;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-full);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,151,42,0.35);
}

/* ── Hero ── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 5vw 6rem;
}

/* Gradient background layers */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%,
    rgba(60,181,74,0.18) 0%,
    rgba(13,27,62,0.0) 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%,
    rgba(201,151,42,0.12) 0%,
    transparent 60%),
    linear-gradient(170deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
  z-index: 0;
}

/* Particle canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

/* Transition badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201,151,42,0.4);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,151,42,0.08);
  margin-bottom: 2.5rem;
  opacity: 0;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Logo morph area */
.hero-logo-morph {
  width: 120px;
  height: 120px;
  margin: 0 auto 2.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.morph-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,151,42,0.25);
  animation: ring-spin 12s linear infinite;
}

.morph-ring::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.morph-clover {
  width: 80px;
  height: 80px;
  opacity: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-headline .line-green {
  color: var(--green);
}

.hero-subline {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  opacity: 0;
}

.hero-subline strong {
  color: var(--white);
  font-weight: 500;
}

/* Arrow divider */
.hero-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: var(--text-sm);
}

.brand-pill.old {
  background: rgba(60,181,74,0.15);
  border: 1px solid rgba(60,181,74,0.3);
  color: var(--green);
}

.brand-pill.new {
  background: rgba(201,151,42,0.15);
  border: 1px solid rgba(201,151,42,0.3);
  color: var(--gold);
}

.arrow-connector {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255,255,255,0.3);
}

.arrow-connector span {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  display: block;
}

.arrow-connector span:nth-child(2) { opacity: 0.6; }
.arrow-connector span:nth-child(3) { opacity: 0.3; }

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-full);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,151,42,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-full);
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
}

.hero-scroll span {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {
  0%   { top: -100%; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ── Section: Transition Story ── */
#transition {
  padding: var(--gap-xl) 5vw;
  position: relative;
}

#transition::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,151,42,0.3), transparent);
}

.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.section-lead {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

.transition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
  margin-top: var(--gap-lg);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.transition-card {
  position: relative;
  padding: 2.5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

.transition-card.card-before {
  background: linear-gradient(135deg, rgba(60,181,74,0.08) 0%, rgba(13,27,62,0.3) 100%);
  border: 1px solid rgba(60,181,74,0.2);
}

.transition-card.card-after {
  background: linear-gradient(135deg, rgba(201,151,42,0.08) 0%, rgba(13,27,62,0.3) 100%);
  border: 1px solid rgba(201,151,42,0.2);
}

.card-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-before .card-label { color: var(--green); }
.card-after  .card-label { color: var(--gold); }

.card-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
}

.card-name {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.card-before .card-name { color: var(--green); }
.card-after  .card-name { color: var(--gold); }

.card-desc {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.card-features li .fi {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.card-before .fi { background: rgba(60,181,74,0.2); color: var(--green); }
.card-after  .fi { background: rgba(201,151,42,0.2); color: var(--gold); }

/* ── Section: Wat Blijft ── */
#continuity {
  padding: var(--gap-xl) 5vw;
  background: linear-gradient(180deg, transparent 0%, rgba(201,151,42,0.04) 50%, transparent 100%);
  position: relative;
}

.continuity-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--gap-lg);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
  max-width: 960px;
  margin: 0 auto;
}

.pillar {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: border-color 0.3s, background 0.3s;
}

.pillar:hover {
  border-color: rgba(201,151,42,0.3);
  background: rgba(201,151,42,0.04);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.pillar p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Section: Cijfers ── */
#stats {
  padding: var(--gap-lg) 5vw;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(201,151,42,0.2);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(201,151,42,0.04);
}

.stat-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(201,151,42,0.15);
  opacity: 0;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Section: Timeline ── */
#timeline {
  padding: var(--gap-xl) 5vw;
  position: relative;
}

.timeline-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--gap-lg);
}

.timeline-track {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--green), var(--gold));
  opacity: 0.3;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  opacity: 0;
  transform: translateX(-20px);
}

.timeline-dot {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
}

.timeline-item.past  .timeline-dot { background: rgba(60,181,74,0.15);  border: 1.5px solid rgba(60,181,74,0.4); }
.timeline-item.now   .timeline-dot { background: rgba(201,151,42,0.2); border: 1.5px solid var(--gold); box-shadow: 0 0 20px rgba(201,151,42,0.3); }
.timeline-item.future .timeline-dot { background: rgba(255,255,255,0.05); border: 1.5px dashed rgba(255,255,255,0.2); }

.timeline-content h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.timeline-item.now .timeline-content h4 { color: var(--gold); }

.timeline-content .t-date {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CTA Section ── */
#cta {
  padding: var(--gap-xl) 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201,151,42,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(60,181,74,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.cta-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 2rem;
  opacity: 0;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  opacity: 0;
}

.cta-text {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
  opacity: 0;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
}

.cta-disclaimer {
  margin-top: 1.5rem;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  opacity: 0;
}

/* ── Footer ── */
#footer {
  padding: 2rem 5vw;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.footer-brand svg {
  width: 28px;
  height: 28px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  opacity: 0.7;
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ── Utility ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
}

.text-center { text-align: center; }

.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;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .transition-grid {
    grid-template-columns: 1fr;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid rgba(201,151,42,0.15);
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(201,151,42,0.15);
    border-right: none;
  }

  #footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {

  #hero {
  padding-bottom: 8rem;  
}

.hero-scroll {
  bottom: 1rem;
}

  .hero-arrow {
    flex-direction: column;
    gap: 0.75rem;
  }

  .arrow-connector {
    transform: rotate(90deg);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }

  .stats-inner {
    grid-template-columns: 1fr;
    border-right: none;
  }

  .stat-item {
    border-right: none;
    border-top: 1px solid rgba(201,151,42,0.15);
  }

  .stat-item:first-child {
    border-top: none;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.pill-logo {
  height: 16px;
  width: auto;
  display: block;
}

.card-fx-logo {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 1.25rem;
}

.cta-logo-wrap {
  margin: 0 auto 2rem;
  opacity: 0;
  display: flex;
  justify-content: center;
}

.cta-logo-img {
  height: 44px;
  width: auto;
}

.footer-logo-img {
  height: 22px;
  width: auto;
  opacity: 0.7;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,151,42,0.3), transparent);
  margin: 0 10%;
}
