/* ============================================================
   style.css — Poultry Grading
   ============================================================ */

/* ─────────────────────────────────────────
   1. DESIGN TOKENS
   ───────────────────────────────────────── */
:root {
  /* Colors */
  --white: #ffffff;
  --dark: #181818;
  --dark-80: rgba(24, 24, 24, 0.8);
  --dark-08: rgba(24, 24, 24, 0.08);
  --blue: #2763ab;
  --blue-light: #3a7fd6;
  --blue-dark: #17488a;
  --light-bg: #f5f5f5;

  /* Fonts */
  --font-display: "Instrument Sans", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Shadows */
  --card-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.05);
  --btn-shadow: 0 1px 2px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.12);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;

  /* Layout */
  --max-w: 1200px;
  --gutter: 32px;
}

/* ─────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-display);
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img,
video {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

/* ─────────────────────────────────────────
   3. LAYOUT UTILITIES
   ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─────────────────────────────────────────
   4. TYPOGRAPHY CLASSES
   ───────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-80);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─────────────────────────────────────────
   5. BUTTONS
   ───────────────────────────────────────── */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #222;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--btn-shadow);
  transition:
    background 0.2s,
    transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-1px);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 100px;
  transition:
    opacity 0.2s,
    transform 0.15s;
}
.btn-white:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────
   6. NAV
   ───────────────────────────────────────── */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
}
.nav-logo img {
  height: 45px;
  width: auto;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ─────────────────────────────────────────
   7. HERO
   ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: #212933;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65.6% 16.1%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62) 45%,
    rgba(0, 104, 222, 0)
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px var(--gutter) 80px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-text {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeUp 0.9s 1s both cubic-bezier(0.25, 0.02, 0, 0.97);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: #fff;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
   ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.02, 0, 0.97),
    transform 0.7s cubic-bezier(0.25, 0.02, 0, 0.97);
}
.reveal.reveal--left {
  transform: translateX(-32px);
}
.reveal.reveal--right {
  transform: translateX(32px);
}
.reveal.reveal--scale {
  transform: scale(0.95) translateY(16px);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Staggered delay for grid children */
.reveal-group .reveal:nth-child(1) {
  transition-delay: 0s;
}
.reveal-group .reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal-group .reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.reveal-group .reveal:nth-child(4) {
  transition-delay: 0.3s;
}
.reveal-group .reveal:nth-child(5) {
  transition-delay: 0.4s;
}
.reveal-group .reveal:nth-child(6) {
  transition-delay: 0.5s;
}

/* ─────────────────────────────────────────
   8. LOGO TICKER
   ───────────────────────────────────────── */
.logos-section {
  background: #fff;
  height: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.logos-inner {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.logos-track img {
  height: 65px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: none;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─────────────────────────────────────────
   9. WHO SECTION
   ───────────────────────────────────────── */
.who-section {
  padding: 80px 0 60px;
}
.who-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.who-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 650px;
}
.who-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.who-p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--dark-80);
  letter-spacing: -0.02em;
}
.who-img {
  flex: 0 0 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Carousel */
.carousel {
  position: relative;
  width: 100%;
  height: 282px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background-color: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}
.dot.active {
  background-color: var(--blue);
  transform: scale(1.35);
}

/* ─────────────────────────────────────────
   10. GRID FEATURES
   ───────────────────────────────────────── */
.grid-features {
  padding: 10px 0 70px 0;
  background: #fff;
}
.grid-features .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feat-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat-text {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.03px;
  color: #888;
}

/* ─────────────────────────────────────────
   11. TWO-COLUMN TEXT + VIDEO
   ───────────────────────────────────────── */
.two-col {
  padding: 30px 0;
  background: #fff;
}
.two-col-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.two-col-inner.reverse {
  flex-direction: row-reverse;
}
.two-col-content {
  flex: 0 0 46%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.two-col-h1 {
  font-family: var(--font-body);
  font-size: clamp(28px, 3vw, 50px);
  font-weight: 700;
  letter-spacing: -2px;
  color: #333;
}
.two-col-h2 {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #888;
}
.two-col-media {
  flex: 0 0 48%;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.two-col-media video {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
  display: block;
  object-fit: fill;
}

/* Portrait (vertical) video layout */
.two-col-inner--portrait .two-col-media {
  flex: 0 0 auto;
  width: 300px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
}
.two-col-inner--portrait .two-col-media video {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: var(--radius-md);
}
.two-col-inner--portrait .two-col-content {
  flex: 1;
}
@media (max-width: 1024px) {
  .two-col-inner--portrait .two-col-media {
    width: 240px;
  }
}
@media (max-width: 640px) {
  .two-col-inner--portrait .two-col-media {
    width: 180px;
  }
}

/* ─────────────────────────────────────────
   12. FULL IMAGE HEADER
   ───────────────────────────────────────── */
.full-img-header {
  position: relative;
  height: 951px;
  overflow: hidden;
  margin-top: 50px;
}
.full-img-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65.6% 16.1%;
}
.full-img-header .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* ─────────────────────────────────────────
   13. TRUST CARDS
   ───────────────────────────────────────── */
.trust-section {
  padding: 80px 0;
  background: #fff;
}
.trust-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.trust-h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: #181818;
  text-align: center;
  max-width: 750px;
}
.trust-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  width: 300px;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.trust-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.trust-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.trust-card-logo {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  object-fit: cover;
  flex-shrink: 0;
}
.trust-card-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: #666;
}

/* ─────────────────────────────────────────
   14. FEATURES LARGE
   ───────────────────────────────────────── */
.features-large {
  padding: 80px 0;
}
.features-large .container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.fl-row {
  display: flex;
  align-items: center;
  gap: 60px;
}
.fl-row.reverse {
  flex-direction: row-reverse;
}
.fl-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fl-img {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.fl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ─────────────────────────────────────────
   15. KEY FEATURES (SIMPLE)
   ───────────────────────────────────────── */
.key-features {
  padding: 80px 0;
  background: #fff;
}
.key-features .container {
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: center;
}
.kf-heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1100px;
}
.kf-h3 {
  font-family: var(--font-body);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.kf-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: #404245;
}
.kf-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  max-width: 800px;
}
.kf-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}
.kf-icon {
  width: 300px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}
.kf-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.kf-item-title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: #262c37;
}
.kf-item-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: #404245;
}
.kf-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ─────────────────────────────────────────
   16. GLOBAL CTA
   ───────────────────────────────────────── */
.global-cta {
  padding: 60px 0;
  background: #fff;
}
.cta-box {
  background: var(--blue);
  border-radius: var(--radius-md);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
}
.cta-content {
  flex: 1;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 39px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
}
.cta-p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.8);
}
.cta-img {
  flex: 0 0 300px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  align-self: stretch;
}
.cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ─────────────────────────────────────────
   17. CONTACT FORM
   ───────────────────────────────────────── */
.contact-section {
  padding: 100px 0;
  background: #fff;
}
.contact-inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  justify-content: center;
}
.contact-left {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-bird-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.contact-bird-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.contact-h3 {
  font-family: var(--font-body);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
  text-align: center;
}
.contact-subtext {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: #404245;
  text-align: center;
  margin-top: 12px;
}
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow:
    0 0 4px 0 #d6d6d6,
    0 8px 32px rgba(0, 0, 0, 0.06);
  padding: 24px;
  width: 380px;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.contact-form-wrap:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: #454545;
}
.form-input {
  font-family: var(--font-body);
  font-size: 14px;
  color: #0d0d0d;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 10px 12px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.form-input::placeholder {
  color: #999;
}
.form-input:focus {
  border-color: #0099ff;
}
textarea.form-input {
  min-height: 100px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  padding: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #0d0d0d;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.form-submit:hover {
  background: #222;
}

/* ─────────────────────────────────────────
   18. PRODUCTS SECTION
   ───────────────────────────────────────── */
.products-section {
  padding: 80px 0 100px;
}
.products-heading {
  text-align: center;
  margin-bottom: 48px;
}
.products-heading p {
  margin-top: 8px;
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: var(--dark-80);
}
.products-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.03em;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.product-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.product-card-img {
  background: var(--light-bg);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.05);
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.1);
}
.product-card-info {
  padding: 20px 24px 24px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-bottom: 4px;
}
.product-model {
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: var(--dark-80);
}

/* ─────────────────────────────────────────
   19. FOOTER
   ───────────────────────────────────────── */
.footer {
  background: #fff;
  border-top: 1px solid var(--dark-08);
  padding: 60px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo img {
  height: 70px;
  object-fit: contain;
}
.footer-contact {
  font-family: "Rethink Sans", var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  font-weight: 700;
}

/* ─────────────────────────────────────────
   20. RESPONSIVE — Tablet (≤1024px)
   ───────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --gutter: 24px;
  }
  .who-inner {
    flex-direction: column;
  }
  .who-img {
    flex: unset;
    width: 100%;
    max-width: 480px;
    align-self: center;
  }
  .carousel {
    height: 340px;
  }
  .two-col-inner {
    flex-direction: column !important;
  }
  .two-col-content,
  .two-col-media {
    flex: unset;
    width: 100%;
  }
  .fl-row {
    flex-direction: column !important;
  }
  .cta-box {
    flex-direction: column;
  }
  .cta-content {
    max-width: 100%;
  }
  .cta-img {
    display: none;
  }
  .contact-inner {
    flex-direction: column;
    align-items: center;
  }
  .contact-left {
    flex: unset;
    width: 100%;
    align-items: center;
  }
  .contact-bird-img {
    display: none;
  }
  .contact-form-wrap {
    width: 100%;
    max-width: 480px;
  }
  .grid-features .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─────────────────────────────────────────
   21. RESPONSIVE — Mobile (≤640px)
   ───────────────────────────────────────── */
@media (max-width: 640px) {
  :root {
    --gutter: 16px;
  }
  .who-img {
    max-width: 100%;
  }
  .carousel {
    height: 260px;
  }
  .hero-content {
    padding: 140px var(--gutter) 60px;
  }
  .grid-features .container {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .kf-grid {
    grid-template-columns: 1fr;
  }
  .kf-item {
    flex-direction: column;
  }
  .kf-icon {
    width: 100%;
    height: 120px;
  }
  .trust-cards {
    flex-direction: column;
    align-items: center;
  }
  .trust-card {
    width: 100%;
    max-width: 360px;
  }
  .cta-box {
    padding: 32px 20px;
  }
}

/* ─────────────────────────────────────────
   22. EXTRACTED INLINE STYLES
   ───────────────────────────────────────── */

/* Video inside two-col sections */
.two-col-video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Workers image — top-aligned */
.fl-img-workers {
  object-position: center top;
}

/* Contact section heading wrapper */
.contact-heading-wrap {
  text-align: center;
  margin-bottom: 40px;
}

/* ─────────────────────────────────────────
   23. ACCESSIBILITY
   ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-text {
    animation: none;
  }
  .logos-track {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
