/* =========================================================================
   OLZA FULFILLMENT — Landing
   Mobile-first (0–991.98px default) · Desktop @992px+
   ========================================================================= */

:root {
  /* ===== COLORS ===== */
--blue: #297f52;
    --blue-strong: #0e4d2c;
    --blue-deep: #0a4526;
    --blue-bright: #15a95c;
    --blue-100: rgb(41 127 82 / 9%);
    --blue-50: rgb(41 127 82 / 8%);

  --black: #030213;
  --ink: #0a0a0a;
  --ink-900: #101828;
  --ink-700: #364153;
  --gray-600: #4a5565;
  --gray-500: #6a7282;
  --gray-400: #99a1af;
  --gray-300: #d1d5dc;
  --line: #e5e7eb;
  --line-soft: #f3f4f6;
  --surface: #f9fafb;

  --red-bg: #ffe2e2;
  --footer-line: #1e2939;
  --white: #fff;

  /* ===== TYPE ===== */
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* ===== RADIUS ===== */
  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 16px;

  /* ===== LAYOUT ===== */
  --container: 1280px;
  --pad: 20px;

  /* ===== SHADOW ===== */
  --shadow-card: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.25);

  /* ===== TRANSITIONS ===== */
  --t-fast: .15s ease;
  --t: .25s ease;
}

/* ========================= RESET ========================= */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4, p { margin: 0; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 2px; }

/* ========================= LAYOUT ========================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* shared section heading block */
.section-head { max-width: 768px; margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--gray-600);
}

/* ========================= TYPOGRAPHY (contextual) ========================= */
.hero h1 {
  font-weight: 300;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--ink);
}
.hero h1 span {
    color: var(--blue);
    font-size: .75em;
    display: block;
    margin: 20px 0 10px;
    font-weight: 800;
}

.problems h2,
.solution h2,
.social-proof h2 {
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  color: var(--ink);
}
.problems h2 span,
.solution h2 span,
.social-proof h2 span { color: var(--blue); }

.problem-card h3,
.feature-card h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink-900);
}

.markets h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}

.cta h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  color: var(--white);
}

/* ========================= BUTTONS ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  border-radius: var(--r-sm);
  padding: 15px 28px;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t), color var(--t);
  border: 1px solid transparent;
}
.btn img { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-1px); }

.btn--dark { background: var(--blue-bright); color: var(--white); box-shadow: var(--shadow-card); }
.btn--dark:hover { background: #1a1830; }

.btn--white { background: var(--white); color: var(--blue-strong); box-shadow: var(--shadow-lg); }
.btn--white:hover { background: #f4f7ff; }

.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--outline:hover { background: rgba(255,255,255,.12); }

/* ========================= HERO ========================= */
.hero {
  background-image: linear-gradient(159deg, var(--blue-50) 0%, var(--white) 50%, var(--blue-50) 100%);
  padding-block: 56px;
}
.hero__grid { display: flex; flex-direction: column; gap: 48px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--blue-100);
  color: var(--blue-strong);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 16px;
  border-radius: 999px;
}
.hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-bright); opacity: .9; }

.hero h1 { margin-top: 24px; }

.hero__lead {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--gray-600);
  max-width: 576px;
}
@media (max-width: 992px) {
	.hero__lead {
		font-size: 15px;
	}
	.hero__stat {
		display: none;
	}
}

.hero__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.hero__features li { display: flex; gap: 12px; align-items: flex-start; }
.hero__features strong { display: block; font-weight: 600; font-size: 16px; color: var(--ink-900); }
.hero__features span span,
.hero__features li > span:last-child { font-size: 14px; color: var(--gray-600); line-height: 20px; }
.hero__features li > span:last-child strong { margin-bottom: 2px; }
.hero__check {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
}
.hero__check img { width: 14px; height: 14px; }

.hero__cta { margin-top: 32px; }
.hero__cta .btn { width: 100%; }

.hero__trust { margin-top: 24px; font-size: 14px; color: var(--gray-500); }

/* hero media */
.hero__media { position: relative; }
.hero__image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 584 / 438;
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }

.hero__stat {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
}
.hero__stat strong { display: block; font-weight: 700; font-size: 28px; line-height: 1.2; color: var(--blue); }
.hero__stat span { font-size: 14px; color: var(--gray-600); }

/* mobile: stats as a row under the image */
.hero__media { display: flex; flex-direction: column; gap: 16px; }
.hero__media .hero__stat { flex: 1; }
@media (max-width: 479px) {
  .hero__media { gap: 12px; }
}

/* ========================= CARDS SCROLLER (mobile horizontal scroll) ========================= */
.cards-scroller { position: relative; }
.cards-scroller__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;            /* custom bar used instead */
}
.cards-scroller__track::-webkit-scrollbar { display: none; }
.cards-scroller__track > * {
  flex: 0 0 78%;
  scroll-snap-align: start;
}

/* custom track + thumb */
.cards-scroller__bar {
  margin-top: 20px;
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}
.cards-scroller__thumb {
  display: block;
  height: 100%;
  width: 30%;
  border-radius: 999px;
  background: var(--blue);
  transform: translateX(0);
  transition: width var(--t-fast);
}

/* ========================= PROBLEMS ========================= */
.problems { background: var(--white); padding-block: 64px; }
.problems .cards-scroller { margin-top: 40px; }

.problem-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  height: 100%;
}
.problem-card__icon {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--blue-100);
  display: inline-flex; align-items: center; justify-content: center;
}
.problem-card h3 { margin-bottom: 8px; }
.problem-card p { font-size: 16px; line-height: 1.5; color: var(--gray-600); }

.problems__note {
  margin-top: 40px;
  text-align: center;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-700);
  margin-inline: auto;
}
.problems__note strong { color: var(--blue); font-weight: 600; }
@media (max-width: 992px) {
	.problem-card {
		padding: 15px;
	}
	.problem-card h3 {
		font-size: 15px;
	}
	.problem-card p {
		font-size: 12px;
	}
	.problems__note {
		font-size: 15px;
	}
}
/* ========================= SOLUTION ========================= */
.solution {
  background-image: linear-gradient(146deg, var(--blue-50) 0%, var(--white) 50%, var(--blue-50) 100%);
  padding-block: 64px;
}
.solution .cards-scroller { margin-top: 40px; }

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  height: 100%;
}
.feature-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--blue-100);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 16px; line-height: 1.5; color: var(--gray-600); }


@media (max-width: 992px) {
	.feature-card h3 {
		font-size: 15px;
	}
	.feature-card p {
		font-size: 13px;
	}
}
img.svg-ico {
	filter: saturate(0);
}

/* markets */
.markets {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.markets__media { aspect-ratio: 607 / 404; }
.markets__media img { width: 100%; height: 100%; object-fit: cover; }
.markets__content { padding: 32px; }
.markets__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
@media (max-width: 992px) {
	.markets__list {
		grid-template-columns: 1fr;
	}
}
.markets__list li {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500; font-size: 15px; color: var(--ink-900);
}
.markets__time { color: var(--blue); font-weight: 600; font-size: 14px; }
.markets__note { margin-top: 16px; font-size: 16px; color: var(--gray-600); }
.markets__note strong { color: var(--ink-700); font-weight: 700; }

/* ========================= SOCIAL PROOF ========================= */
.social-proof { background: var(--white); padding-block: 64px; }
.social-proof .cards-scroller { margin-top: 40px; }

.testimonial {
  background-image: linear-gradient(138deg, var(--blue-50) 0%, var(--white) 100%);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-lg);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial__quote { display: inline-flex; }
.testimonial__quote img { width: 32px; height: 32px; }
.testimonial__text {
  margin-top: 16px;
  font-size: 16px; line-height: 1.6; color: var(--ink-700);
  flex: 1;
}
.testimonial__author {
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  display: flex; gap: 12px; align-items: center;
}
.testimonial__flag { font-size: 24px; line-height: 1; }
.testimonial__author strong { display: block; font-weight: 600; font-size: 16px; color: var(--ink-900); }
.testimonial__role { display: block; font-size: 14px; color: var(--gray-600); }
.testimonial__company { display: block; font-size: 14px; color: var(--blue); }

/* brands */
.social-proof__brands {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.social-proof__brands-label { font-size: 14px; color: var(--gray-500); }
.logos {
  margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 24px 40px;
  align-items: center; justify-content: center;
}
.logos li { font-weight: 600; font-size: 20px; color: var(--gray-400); }

/* stats */
/* stats */
.stats {
  margin: 48px auto 0;
  display: flex;
  max-width: 700px;
  gap: 32px 16px;
  text-align: center;
}
.stats li {
	flex: 0 0 30%;
}
.stats strong { display: block; font-weight: 700; font-size: 36px; line-height: 1.1; color: var(--blue); }
.stats span { display: block; margin-top: 8px; font-size: 16px; color: var(--gray-600); }

/* ========================= FINAL CTA ========================= */
.cta {
  position: relative;
  background-image: linear-gradient(165deg, var(--blue) 0%, var(--blue-strong) 50%, var(--blue-deep) 100%);
  padding-block: 64px;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../img/cta-pattern.png");
  background-size: 60px 60px;
  opacity: .1;
  pointer-events: none;
}
.cta__inner { position: relative; max-width: 896px; margin-inline: auto; text-align: center; }
.cta__lead {
  margin-top: 22px;
  font-size: 17px; line-height: 1.55; color: var(--white);
  max-width: 672px; margin-inline: auto;
  opacity: .5;
}
.cta__points {
  margin-top: 32px;
  display: block; flex-direction: column; gap: 12px;
  align-items: center;
}
.cta__points li { display: inline-block; align-items: center; gap: 8px; color: var(--white); font-size: 16px; padding: 5px; }
.cta__check {
  flex: 0 0 auto;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: 10px;
}
.cta__check img { width: 12px; height: 12px; }

.cta__actions {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: stretch;
}
.cta__footnote { margin-top: 32px; font-size: 14px; color: var(--blue-100); }

/* ========================= FOOTER ========================= */
.footer { background: var(--ink-900); padding-block: 48px; color: var(--gray-300); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.footer h3 { font-weight: 600; font-size: 20px; color: var(--white); }
.footer h4 { font-weight: 600; font-size: 16px; color: var(--white); margin-bottom: 16px; }
.footer__about p { margin-top: 16px; font-size: 16px; line-height: 1.5; color: var(--gray-400); }
.footer__location {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 14px; line-height: 20px; color: var(--gray-300);
}
.footer__location img { margin-top: 2px; }

.footer__col ul li { font-size: 14px; line-height: 20px; padding: 4px 0; color: var(--gray-300); }
.footer__contact ul li a { display: inline-flex; align-items: center; gap: 8px; }
.footer__contact ul li a:hover { color: var(--white); }
.footer__col ul li:hover { color: var(--white); }
.footer__hours { margin-top: 16px; font-size: 12px; color: var(--gray-500); }

.footer__bottom {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--footer-line);
  display: flex; flex-direction: column; gap: 16px;
}
.footer__bottom p { font-size: 14px; color: var(--gray-500); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 24px; }
.footer__legal a { font-size: 14px; color: var(--gray-500); }
.footer__legal a:hover { color: var(--white); }

/* =========================================================================
   DESKTOP — 992px+
   ========================================================================= */
@media (min-width: 992px) {
  :root { --pad: 32px; }

  .section-head h2 { margin-bottom: 16px; letter-spacing: -3px; }
  .section-head p { font-size: 18px; }

  /* type up to design */
  .hero h1 { font-size: 52px; letter-spacing: -1.5px; line-height: 1; }
  .problems h2, .solution h2, .social-proof h2 { font-size: 48px; }
  .markets h3 { font-size: 30px; }
  .cta h2 { font-size: 48px; line-height: 1; }

  /* HERO two columns */
  .hero { padding-block: 80px; }
  .hero__grid { flex-direction: row; align-items: center; gap: 48px; }
  .hero__content { flex: 0 0 584px; max-width: 584px; }
  .hero__media { flex: 1 1 auto; }
  .hero__features { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 14px 20px; }
  .hero__cta .btn { width: auto; }

  /* hero floating stat cards */
  .hero__media { display: block; position: relative; padding: 24px; }
  .hero__image { aspect-ratio: 584 / 438; }
  .hero__stat { position: absolute; }
  .hero__stat--delivery { left: 0; bottom: 0; width: 200px; text-align: center; }
  .hero__stat--markets { right: 0; top: 0; width: 153px; text-align: center; line-height: 16px; }

  /* sections padding */
  .problems, .solution, .social-proof { padding-block: 96px; }

  /* disable scroller — become grids */
  .cards-scroller__track {
    overflow: visible;
    scroll-snap-type: none;
  }
  .cards-scroller__track > * { flex: none; }
  .cards-scroller__bar { display: none; }

  .problems .cards-scroller__track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .solution__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .testimonials__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .problems .cards-scroller, .solution .cards-scroller, .social-proof .cards-scroller { margin-top: 64px; }

  /* markets split */
  .markets { display: grid; grid-template-columns: 1fr 1fr; margin-top: 64px; }
  .markets__media { aspect-ratio: auto; height: 100%; }
  .markets__content { padding: 48px; align-self: center; }

  /* social proof spacing */
  .social-proof__brands { margin-top: 64px; padding-top: 49px; }
  .logos { gap: 28px 40px; }
  .stats { grid-template-columns: repeat(4, 1fr); margin-top: 64px; gap: 0 32px; }

  /* CTA */
  .cta { padding-block: 96px; }
  .cta__points { flex-direction: row; justify-content: center; gap: 32px; }
  .cta__actions { flex-direction: row; justify-content: center; align-items: center; gap: 16px; }
  .cta__actions .btn { width: auto; }

  /* footer */
  .footer { padding-block: 64px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
