/* ==========================================================================
   Hanimun Food - Corporate Website
   Design System & Global Styles
   ========================================================================== */

:root {
  /* Brand Colors */
  --hf-blue: #264796;
  --hf-blue-dark: #1d3873;
  --hf-green: #6CB36E;
  --hf-green-dark: #569958;

  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --border-gray: #E5E5E5;
  --text-primary: #222222;
  --text-secondary: #666666;

  /* Layout */
  --max-container: 1600px;
  --content-width: 1320px;
  --section-spacing: 88px;
  --radius-btn: 6px;
  --radius-card: 12px;
  --hero-h: 82vh;
  --hero-min-h: 540px;

  /* Typography */
  --font-base: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shadow-card: 0 8px 30px rgba(34, 34, 34, 0.06);
  --shadow-card-hover: 0 18px 50px rgba(38, 71, 150, 0.14);
  --header-h: 84px;
  --promo-h: 36px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--hf-blue);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--hf-green);
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h1 { font-size: 64px; }
h2 { font-size: 48px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }
h5 { font-size: 18px; }

p { margin: 0 0 1em; }

.text-lg { font-size: 18px; }
.text-sm { font-size: 14px; }
.text-min { font-size: 11px; }
.text-secondary { color: var(--text-secondary); }
.text-blue { color: var(--hf-blue); }
.text-green { color: var(--hf-green); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: var(--max-container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-spacing) 0;
}

.section.bg-gray + .section.bg-gray,
.section.bg-gray + .another-brands,
.another-brands + .section.bg-gray {
  padding-top: calc(var(--section-spacing) * 0.55);
}

.section-sm {
  padding: 64px 0;
}

.bg-gray { background: var(--light-gray); }
.bg-blue { background: var(--hf-blue); }
.bg-dark { background: #16203a; }

.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }

/* ---------- Section Heading ---------- */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hf-green);
  margin-bottom: 18px;
  position: relative;
  padding-left: 42px;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--hf-green);
  transform: translateY(-50%);
}

.eyebrow.center {
  padding-left: 0;
}

.eyebrow.center::before {
  display: none;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--hf-blue);
  color: var(--white);
  border-color: var(--hf-blue);
}

.btn-primary:hover {
  background: var(--hf-green);
  border-color: var(--hf-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--hf-blue);
  border-color: var(--hf-blue);
}

.btn-secondary:hover {
  background: var(--hf-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--hf-blue);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--hf-green);
  border-color: var(--hf-green);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--hf-blue);
}

.btn-sm { padding: 11px 22px; font-size: 13px; }
.btn-lg { padding: 18px 38px; font-size: 16px; }

/* Pill outline + circle arrow (Explore Articles style) */
.btn-pill-outline,
.btn-news-outline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 10px 28px;
  background: transparent;
  border: 1px solid var(--border-gray);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-base);
  transition: all 0.3s ease;
}

.btn-pill-outline.btn-sm,
.btn-news-outline.btn-sm {
  padding: 8px 8px 8px 22px;
  font-size: 13px;
  gap: 12px;
}

.btn-pill-outline.btn-sm .btn-circle-arrow,
.btn-news-outline.btn-sm .btn-circle-arrow {
  width: 36px;
  height: 36px;
  font-size: 16px;
}

.btn-pill-outline.btn-lg,
.btn-news-outline.btn-lg {
  padding: 12px 12px 12px 32px;
  font-size: 16px;
}

.btn-pill-outline .btn-circle-arrow,
.btn-news-outline .btn-circle-arrow,
.btn-pill-outline .news-arrow,
.btn-news-outline .news-arrow {
  background: var(--hf-green);
  color: var(--white);
}

.btn-pill-outline:hover,
.btn-news-outline:hover {
  border-color: var(--hf-blue);
  color: var(--hf-blue);
  transform: translateY(-2px);
  background: transparent;
}

.btn-pill-outline:hover .btn-circle-arrow,
.btn-news-outline:hover .btn-circle-arrow,
.btn-pill-outline:hover .news-arrow,
.btn-news-outline:hover .news-arrow {
  background: var(--hf-blue);
  color: var(--white);
  transform: rotate(45deg);
}

/* Header CTA — solid blue partner button */
.nav-cta .btn-pill-outline {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  background: var(--hf-blue);
  border-color: var(--hf-blue);
  color: var(--white);
  backdrop-filter: none;
}

.nav-cta .btn-pill-outline .btn-circle-arrow {
  background: var(--white);
  color: var(--text-primary);
  font-size: 0;
  line-height: 1;
  transform: none;
}

.nav-cta .btn-pill-outline .btn-circle-arrow::before {
  content: "→";
  font-size: 18px;
  font-weight: 400;
  display: block;
}

.nav-cta .btn-pill-outline.btn-sm .btn-circle-arrow::before {
  font-size: 16px;
}

.nav-cta .btn-pill-outline:hover {
  background: var(--hf-blue);
  border-color: var(--hf-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.nav-cta .btn-pill-outline:hover .btn-circle-arrow {
  background: var(--hf-green);
  color: var(--white);
  transform: none;
}

/* CTA band on dark background */
.cta-band .btn-pill-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.cta-band .btn-pill-outline:hover {
  background: var(--hf-green);
  border-color: var(--hf-green);
  color: var(--white);
}

.cta-band .btn-pill-outline:hover .btn-circle-arrow {
  background: var(--white);
  color: var(--hf-green);
}

/* Footer newsletter */
.newsletter-form .btn-pill-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  flex-shrink: 0;
}

.newsletter-form .btn-pill-outline:hover {
  background: var(--hf-blue);
  border-color: var(--hf-blue);
  color: var(--white);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
}

.arrow-link span {
  transition: transform 0.25s ease;
}

.arrow-link:hover span {
  transform: translateX(5px);
}

/* ==========================================================================
   Promo Top Bar
   ========================================================================== */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--promo-h);
  background: var(--hf-blue);
  color: var(--white);
  z-index: 1001;
  overflow: hidden;
}

.promo-marquee {
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.promo-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: promoScroll 55s linear infinite;
  will-change: transform;
}

.promo-track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 8px;
  flex-shrink: 0;
}

.promo-track span::before {
  content: "\2726";
  margin-right: 10px;
  color: var(--hf-green);
}

@keyframes promoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .promo-track {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
    text-align: center;
    gap: 8px;
    padding: 0 12px;
  }
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: var(--promo-h);
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 18px 0;
}

.site-header.transparent {
  background: transparent;
}

.site-header.scrolled,
.site-header.solid {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

.site-header.transparent .brand-logo img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.site-header.scrolled .brand-logo img,
.site-header.solid .brand-logo img {
  filter: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-header.transparent .main-nav a {
  color: var(--white);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--hf-green);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--hf-blue);
}

.site-header.transparent .main-nav a:hover,
.site-header.transparent .main-nav a.active {
  color: var(--hf-green);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.site-header.transparent .menu-toggle span {
  background: var(--white);
}

.site-header.scrolled .menu-toggle span {
  background: var(--text-primary);
}

/* ==========================================================================
   Hero / Slider
   ========================================================================== */
.hero {
  position: relative;
  height: var(--hero-h);
  min-height: var(--hero-min-h);
  overflow: hidden;
  color: var(--white);
}

/* Remove old single-bg overlay — slides handle their own */
.hero::before { display: none; }

/* ---------- Slider track ---------- */
.slider-track {
  position: relative;
  width: 100%;
  height: var(--hero-h);
  min-height: var(--hero-min-h);
}

.slider-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  display: flex;
  align-items: center;
  z-index: 1;
}

.slider-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.slider-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 16, 34, 0.85) 0%, rgba(10, 16, 34, 0.55) 45%, rgba(10, 16, 34, 0.2) 100%);
  pointer-events: none;
}

.slider-slide .container-wide {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
}

/* ---------- Arrow buttons ---------- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.slider-arrow:hover {
  background: var(--hf-blue);
  border-color: var(--hf-blue);
  transform: translateY(-50%) scale(1.08);
}

.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* ---------- Dot navigation ---------- */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 28px;
  border-radius: 6px;
  background: var(--white);
}

/* ---------- Ticker band ---------- */
.ticker-band {
  background: var(--hf-blue);
  overflow: hidden;
  height: 96px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 50s linear infinite;
  will-change: transform;
}

.ticker-track span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 64px;
  position: relative;
}

.ticker-track span::after {
  content: "\2666";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--hf-green);
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-slider .container-wide {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: end;
  height: 100%;
  min-height: var(--hero-min-h);
  padding: calc(var(--header-h) + var(--promo-h) + 28px) 0 72px;
  box-sizing: border-box;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0;
  align-self: center;
}

.hero-tag {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 28px;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 10px 28px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-base);
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.btn-hero-outline:hover {
  background: var(--hf-blue);
  border-color: var(--hf-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-circle-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn-hero-outline:hover .btn-circle-arrow {
  transform: rotate(45deg);
}

.hero-side {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: end;
}

.hero-float-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  width: 100%;
  max-width: 560px;
}

.hero-stat-card {
  background: rgba(18, 26, 48, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px 30px;
  min-width: 0;
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.hero-stat-big {
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.hero-stat-card > p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 22px;
  line-height: 1.5;
}

.hero-stat-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

.hero-stat-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-stat-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hf-green);
}

.hero-img-card {
  width: 100%;
  min-height: 260px;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats .stat-num {
  font-size: 44px;
  font-weight: 700;
  color: var(--hf-green);
}

.hero-stats .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--promo-h) + 90px) 0 90px;
  color: var(--white);
  background-size: cover;
  background-position: center;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 22, 48, 0.7), rgba(13, 22, 48, 0.78));
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  font-size: 56px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a { color: rgba(255, 255, 255, 0.8); }
.breadcrumb a:hover { color: var(--hf-green); }
.breadcrumb .sep { color: var(--hf-green); }

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-card);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-img img {
  transform: scale(1.07);
}

.card-body {
  padding: 28px;
}

.card-body h4 {
  margin-bottom: 12px;
}

.card-body h4 a { color: var(--text-primary); }
.card-body h4 a:hover { color: var(--hf-blue); }

.card-body p {
  color: var(--text-secondary);
  font-size: 15px;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hf-blue);
  background: rgba(38, 71, 150, 0.08);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.tag.green {
  color: var(--hf-green-dark);
  background: rgba(108, 179, 110, 0.14);
}

/* Service / Feature Card with icon */
.icon-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
  height: 100%;
}

.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(38, 71, 150, 0.08);
  color: var(--hf-blue);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.icon-card:hover .icon-box {
  background: var(--hf-blue);
  color: var(--white);
}

.icon-card h4 { margin-bottom: 14px; }
.icon-card p { color: var(--text-secondary); font-size: 15px; margin-bottom: 18px; }

/* ==========================================================================
   About Showcase (Home)
   ========================================================================== */
.about-showcase {
  position: relative;
  padding: var(--section-spacing) 0;
  color: var(--white);
  overflow: hidden;
  background-color: #0c1020;
}

.about-showcase-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-showcase-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 14, 32, 0.78) 0%,
    rgba(10, 14, 32, 0.58) 45%,
    rgba(10, 14, 32, 0.38) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.about-showcase::before {
  display: none;
}

.about-showcase-watermark {
  position: absolute;
  left: -2%;
  bottom: -8%;
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 700;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -0.03em;
  pointer-events: none;
  z-index: 2;
  user-select: none;
}

.about-showcase .container {
  position: relative;
  z-index: 3;
}

.about-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.about-showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}

.about-showcase-content h2,
.about-features {
  width: 100%;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}

.about-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hf-green);
  flex-shrink: 0;
}

.about-showcase-content h2 {
  color: var(--white);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.12;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.about-highlight {
  color: var(--hf-green);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
  margin-bottom: 28px;
}

.about-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.about-check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--hf-green);
  font-size: 15px;
  font-weight: 700;
}

.about-showcase-content p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: 36px;
}

.about-showcase-content .btn-hero-outline {
  background: transparent;
}

.about-showcase-content .btn-hero-outline:hover {
  background: var(--hf-blue);
  border-color: var(--hf-blue);
  color: var(--white);
}

.about-showcase-content .about-arrow {
  background: var(--hf-green);
  color: var(--white);
}

.about-showcase-content .btn-hero-outline:hover .about-arrow {
  background: var(--white);
  color: var(--hf-blue);
}

.about-showcase-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  height: 100%;
  min-height: 320px;
  display: flex;
}

.about-slider-track {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 100%;
}

.about-slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.about-slider-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.about-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: var(--hf-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.about-slider-arrow:hover {
  background: var(--hf-blue);
  color: var(--white);
  transform: translateY(-50%) scale(1.06);
}

.about-slider-prev { left: 14px; }
.about-slider-next { right: 14px; }

.about-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.about-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.about-slider-dot.active {
  width: 22px;
  border-radius: 5px;
  background: var(--white);
}

.about-showcase-media img {
  width: 100%;
  border-radius: 0;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
  box-shadow: none;
}

.about-progress-ring {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 11;
}

.about-progress-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.about-progress-ring .ring-bg {
  fill: none;
  stroke: rgba(38, 71, 150, 0.12);
  stroke-width: 5;
}

.about-progress-ring .ring-fill {
  fill: none;
  stroke: var(--hf-green);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 214;
  stroke-dashoffset: 52;
}

.about-progress-text {
  position: relative;
  z-index: 2;
  font-size: 20px;
  font-weight: 700;
  color: var(--hf-blue);
  line-height: 1;
}

/* ==========================================================================
   Our Hero Brand
   ========================================================================== */
.hero-brand {
  position: relative;
  background: var(--light-gray);
  overflow: hidden;
}

.hero-brand-deco {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 90%;
  opacity: 0.06;
  background-image: url("../img/home/salad-ingredients.png");
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.2);
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.5), transparent);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.5), transparent);
}

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

.hero-brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: stretch;
}

/* Left — overlapping images */
.hero-brand-visual {
  position: relative;
  min-height: 480px;
  height: 100%;
}

.hero-brand-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}

.hero-brand-content h2,
.hero-brand-features {
  width: 100%;
}

.hero-brand-img {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(34, 34, 34, 0.12);
}

.hero-brand-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-brand-img-back {
  top: 0;
  left: 0;
  width: 58%;
  height: 72%;
  z-index: 1;
}

.hero-brand-img-front {
  bottom: 0;
  right: 0;
  width: 68%;
  height: 78%;
  z-index: 2;
}

.hero-brand-exp {
  position: absolute;
  left: 8%;
  bottom: 12%;
  z-index: 3;
  background: var(--hf-green);
  color: var(--white);
  padding: 22px 28px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(108, 179, 110, 0.35);
}

.hero-brand-exp-num {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.hero-brand-exp-lbl {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

/* Right — content */
.hero-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-brand-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hf-green);
  flex-shrink: 0;
}

.hero-brand-content h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-brand-highlight {
  color: var(--hf-green);
}

.hero-brand-content > p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-brand-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.hero-brand-feature h4 {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.hero-brand-feature hr {
  border: none;
  height: 1px;
  background: var(--border-gray);
  margin: 0 0 14px;
}

.hero-brand-feature p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

.btn-brand-outline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 10px 28px;
  background: transparent;
  border: 1px solid var(--text-primary);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-base);
  transition: all 0.3s ease;
}

.btn-brand-outline:hover {
  background: var(--hf-blue);
  border-color: var(--hf-blue);
  color: var(--white);
}

.btn-brand-outline .brand-arrow {
  background: var(--hf-green);
  color: var(--white);
}

.btn-brand-outline:hover .brand-arrow {
  background: var(--white);
  color: var(--hf-blue);
}

/* ==========================================================================
   Another Brands
   ========================================================================== */
.another-brands {
  position: relative;
  padding: var(--section-spacing) 0;
  color: var(--white);
  overflow: hidden;
  background-color: #0a0e1a;
}

.another-brands-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.another-brands-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.another-brands-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(8, 12, 28, 0.92) 0%,
    rgba(8, 12, 28, 0.85) 40%,
    rgba(8, 12, 28, 0.72) 100%
  );
  pointer-events: none;
}

.another-brands .container-wide {
  position: relative;
  z-index: 2;
}

.another-brands-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
  align-items: stretch;
}

.another-brands-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}

.another-brands-intro h2 {
  width: 100%;
}

.another-brands-slider-wrap {
  position: relative;
  overflow: hidden;
  margin-right: -80px;
  padding-right: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.another-brands-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.another-brands-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hf-green);
  flex-shrink: 0;
}

.another-brands-intro h2 {
  color: var(--white);
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.another-brands-highlight {
  color: var(--hf-green);
}

.another-brands-intro p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 460px;
  margin-bottom: 28px;
}

.another-brands-intro .btn-hero-outline {
  background: transparent;
}

.another-brands-intro .btn-hero-outline:hover {
  background: var(--hf-blue);
  border-color: var(--hf-blue);
  color: var(--white);
}

.another-brands-intro .another-arrow {
  background: var(--hf-green);
  color: var(--white);
}

.another-brands-intro .btn-hero-outline:hover .another-arrow {
  background: var(--white);
  color: var(--hf-blue);
}

.another-brands-slider {
  overflow: hidden;
}

.another-brands-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.another-brand-card {
  position: relative;
  flex: 0 0 calc(52% - 14px);
  min-width: 360px;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.another-brand-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 179, 110, 0.4);
}

.another-brand-num {
  position: absolute;
  top: 24px;
  left: 26px;
  z-index: 3;
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.another-brand-img {
  height: 320px;
  overflow: hidden;
}

.another-brand-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.another-brand-card:hover .another-brand-img img {
  transform: scale(1.06);
}

.another-brand-body {
  padding: 20px 26px 22px;
  background: rgba(0, 0, 0, 0.35);
}

.another-brand-body h4 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 10px;
}

.another-brand-body p {
  display: none;
}

.another-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hf-green);
}

.another-brand-link:hover {
  color: var(--white);
}

.another-brand-link span {
  transition: transform 0.25s ease;
}

.another-brand-link:hover span {
  transform: translateX(4px);
}

.another-brands-controls {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.another-brands-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.another-brands-arrow:hover {
  background: var(--hf-blue);
  border-color: var(--hf-blue);
}

.another-brands-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.another-brands-arrow:disabled:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   Our Services
   ========================================================================== */
.our-services-head {
  max-width: 720px;
  margin-bottom: 44px;
}

.our-services-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.our-services-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hf-green);
  flex-shrink: 0;
}

.our-services-head h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.our-services-highlight {
  color: var(--hf-green);
}

.our-services-head p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

.our-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.our-services-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(34, 34, 34, 0.1);
  align-self: stretch;
  min-height: 0;
}

.our-services-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.4s ease;
}

.our-services-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  max-width: 340px;
  padding: 22px 24px;
  background: rgba(10, 14, 32, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.65;
}

.our-services-list {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.our-service-item {
  display: grid;
  grid-template-columns: 48px 1fr 44px;
  grid-template-rows: auto;
  align-items: center;
  gap: 16px 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-gray);
  color: var(--text-primary);
  transition: color 0.25s ease, padding-left 0.25s ease;
  flex: 1;
}

.our-service-item:first-child {
  border-top: 1px solid var(--border-gray);
}

.our-service-item:hover,
.our-service-item.active {
  color: var(--hf-blue);
}

.our-service-item:hover {
  padding-left: 6px;
}

.our-service-num {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  align-self: center;
}

.our-service-item.active .our-service-num,
.our-service-item:hover .our-service-num {
  color: var(--hf-green);
}

.our-service-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.our-service-title {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.35;
  color: inherit;
}

.our-service-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  display: block;
}

.our-service-item:hover .our-service-desc,
.our-service-item.active .our-service-desc {
  color: var(--text-secondary);
}

.our-service-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--hf-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  align-self: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.our-service-item:hover .our-service-btn,
.our-service-item.active .our-service-btn {
  background: var(--hf-blue);
  transform: translateX(4px);
}

/* ==========================================================================
   Home News
   ========================================================================== */
.home-news {
  background: var(--white);
  overflow: hidden;
}

.home-news-grid {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 56px;
  align-items: center;
}

.home-news-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--border-gray);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.home-news-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hf-green);
  flex-shrink: 0;
}

.home-news-intro h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.18;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.home-news-highlight {
  color: var(--hf-green);
}

.home-news-intro p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 420px;
  margin-bottom: 28px;
}

.home-news-slider-wrap {
  position: relative;
  overflow: hidden;
  margin-right: -80px;
  padding-right: 20px;
}

.home-news-slider {
  overflow: hidden;
}

.home-news-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.home-news-card {
  flex: 0 0 calc(50% - 14px);
  min-width: 300px;
  max-width: 420px;
}

.home-news-card-link {
  display: block;
  color: inherit;
  height: 100%;
}

.home-news-card-link:hover h4 {
  color: var(--hf-blue);
}

.home-news-card-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 22px;
}

.home-news-card-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.home-news-card-link:hover .home-news-card-img img {
  transform: scale(1.04);
}

.home-news-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 50px;
  background: var(--hf-green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.home-news-meta time {
  color: var(--text-secondary);
}

.home-news-author {
  color: var(--hf-green);
  font-weight: 600;
}

.home-news-card-body h4 {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color 0.25s ease;
}

.home-news-card-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-news-controls {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.home-news-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-gray);
  background: var(--white);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.home-news-arrow:hover {
  background: var(--hf-blue);
  border-color: var(--hf-blue);
  color: var(--white);
}

.home-news-arrow:disabled {
  opacity: 1;
  cursor: pointer;
}

.home-news-arrow:disabled:hover {
  background: var(--hf-blue);
  border-color: var(--hf-blue);
  color: var(--white);
}

/* ==========================================================================
   Instagram Gallery
   ========================================================================== */
.ig-gallery {
  overflow: hidden;
}

.ig-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.ig-gallery-head-text {
  max-width: 640px;
}

.ig-gallery-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--border-gray);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.ig-gallery-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hf-green);
  flex-shrink: 0;
}

.ig-gallery-head h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.ig-gallery-highlight {
  color: var(--hf-green);
}

.ig-gallery-head p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.ig-gallery-follow {
  flex-shrink: 0;
  white-space: nowrap;
}

.home-news-intro .btn-pill-outline:hover,
.ig-gallery-follow.btn-pill-outline:hover {
  background: var(--hf-blue);
  border-color: var(--hf-blue);
  color: var(--white);
}

.home-news-intro .btn-pill-outline:hover .btn-circle-arrow,
.ig-gallery-follow.btn-pill-outline:hover .btn-circle-arrow {
  background: var(--white);
  color: var(--hf-blue);
}

.ig-gallery-slider-wrap {
  position: relative;
}

.ig-gallery-slider {
  overflow: hidden;
  margin-right: -40px;
  padding-right: 12px;
}

.ig-gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.ig-gallery-card {
  flex: 0 0 calc(20% - 16px);
  min-width: 200px;
}

.ig-gallery-embed-slot {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-gray);
  box-shadow: 0 8px 28px rgba(34, 34, 34, 0.06);
  aspect-ratio: 1 / 1;
}

.ig-gallery-embed-slot iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.ig-gallery-embed-slot .instagram-media {
  margin: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

.ig-gallery-embed-slot.is-embedded .ig-gallery-fallback {
  display: none;
}

.ig-gallery-fallback {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: inherit;
}

.ig-gallery-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.ig-gallery-fallback:hover img {
  transform: scale(1.06);
}

.ig-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 14, 32, 0.42);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ig-gallery-fallback:hover .ig-gallery-overlay {
  opacity: 1;
}

.ig-gallery-controls {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.ig-gallery-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-gray);
  background: var(--white);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ig-gallery-arrow:hover {
  background: var(--hf-blue);
  border-color: var(--hf-blue);
  color: var(--white);
}

.ig-gallery-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ig-gallery-arrow:disabled:hover {
  background: var(--white);
  border-color: var(--border-gray);
  color: var(--text-primary);
}

/* ==========================================================================
   About / Two Column
   ========================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.two-col .media img {
  border-radius: var(--radius-card);
  width: 100%;
  object-fit: cover;
}

.media-stack {
  position: relative;
}

.media-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--hf-green);
  color: var(--white);
  padding: 26px 30px;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 40px rgba(108, 179, 110, 0.35);
}

.media-badge .num { font-size: 40px; font-weight: 700; line-height: 1; }
.media-badge .lbl { font-size: 13px; }

.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  color: var(--text-secondary);
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  background: var(--hf-green);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ==========================================================================
   Stats Strip
   ========================================================================== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item .num {
  font-size: 52px;
  font-weight: 700;
  color: var(--hf-blue);
  line-height: 1;
}

.bg-blue .stat-item .num { color: var(--hf-green); }
.bg-blue .stat-item .lbl { color: rgba(255,255,255,0.85); }

.stat-item .lbl {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 10px;
}

/* ==========================================================================
   Process / Timeline
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step {
  position: relative;
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-card);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.process-step .step-num {
  font-size: 48px;
  font-weight: 700;
  color: rgba(38, 71, 150, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.process-step:hover .step-num { color: var(--hf-green); }

.process-step h4 { font-size: 20px; margin-bottom: 10px; }
.process-step p { color: var(--text-secondary); font-size: 14px; margin: 0; }

/* Vertical timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-gray);
  transform: translateX(-50%);
}

.tl-item {
  position: relative;
  width: 50%;
  padding: 0 50px 50px;
}

.tl-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.tl-item:nth-child(even) {
  left: 50%;
}

.tl-item .tl-dot {
  position: absolute;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--hf-green);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--hf-green);
}

.tl-item:nth-child(odd) .tl-dot { right: -9px; }
.tl-item:nth-child(even) .tl-dot { left: -9px; }

.tl-year {
  font-size: 22px;
  font-weight: 700;
  color: var(--hf-blue);
  margin-bottom: 6px;
}

.tl-item h4 { font-size: 19px; margin-bottom: 8px; }
.tl-item p { color: var(--text-secondary); font-size: 15px; margin: 0; }

/* ==========================================================================
   Brands
   ========================================================================== */
.brand-card .card-img { aspect-ratio: 16/10; }
.brand-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.brand-meta span strong { color: var(--text-primary); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--border-gray);
  background: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-base);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--hf-blue);
  border-color: var(--hf-blue);
  color: var(--white);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 22, 48, 0.82));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay .cat { color: var(--hf-green); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.gallery-item .overlay .title { color: var(--white); font-size: 18px; font-weight: 700; }

.hidden { display: none !important; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-card);
  padding: 44px;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-group label .req { color: var(--hf-green); }

.form-control {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-base);
  font-size: 15px;
  color: var(--text-primary);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-btn);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--hf-blue);
  box-shadow: 0 0 0 3px rgba(38, 71, 150, 0.12);
}

textarea.form-control { resize: vertical; min-height: 140px; }

.form-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 14px;
}

.form-success {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(108, 179, 110, 0.14);
  border: 1px solid var(--hf-green);
  color: var(--hf-green-dark);
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 500;
}

.form-success.show { display: block; }

/* ==========================================================================
   Contact info
   ========================================================================== */
.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-info-item .ci-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(38, 71, 150, 0.08);
  color: var(--hf-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-info-item h5 { font-size: 17px; margin-bottom: 4px; }
.contact-info-item p { font-size: 15px; color: var(--text-secondary); margin: 0; }

.map-embed {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-gray);
}

.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(38, 71, 150, 0.94), rgba(29, 56, 115, 0.86));
}

.cta-band-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 0 auto;
}

.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255, 255, 255, 0.9); font-size: 18px; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Team / Values / Certifications
   ========================================================================== */
.team-card { text-align: center; }
.team-card .card-img { aspect-ratio: 1; border-radius: var(--radius-card); }
.team-card h4 { margin: 20px 0 4px; font-size: 20px; }
.team-card .role { color: var(--hf-green-dark); font-size: 14px; font-weight: 500; }

.value-card {
  padding: 36px 30px;
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid var(--border-gray);
  transition: all 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); border-color: transparent; }
.value-card .v-icon { font-size: 32px; margin-bottom: 18px; }
.value-card h4 { font-size: 20px; margin-bottom: 10px; }
.value-card p { color: var(--text-secondary); font-size: 15px; margin: 0; }

.cert-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 34px 18px;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-card);
  text-align: center;
  transition: all 0.3s ease;
}
.cert-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.cert-item .c-badge { font-size: 34px; }
.cert-item .c-name { font-size: 14px; font-weight: 700; color: var(--hf-blue); }
.cert-item .c-desc { font-size: 12px; color: var(--text-secondary); }

/* ==========================================================================
   Article detail / prose
   ========================================================================== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 34px; margin: 40px 0 16px; }
.prose h3 { font-size: 24px; margin: 32px 0 14px; }
.prose p { font-size: 17px; color: #3a3a3a; line-height: 1.8; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 1.4em; }
.prose ul li { margin-bottom: 8px; color: #3a3a3a; }
.prose blockquote {
  margin: 30px 0;
  padding: 22px 28px;
  border-left: 4px solid var(--hf-green);
  background: var(--light-gray);
  border-radius: 0 8px 8px 0;
  font-size: 19px;
  font-style: italic;
  color: var(--text-primary);
}
.prose img { border-radius: var(--radius-card); margin: 30px 0; }

.article-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ==========================================================================
   Accordion
   ========================================================================== */
.accordion-item {
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-card);
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--white);
}

.accordion-head {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  background: none;
  border: none;
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.accordion-head .acc-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(38, 71, 150, 0.08);
  color: var(--hf-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.accordion-item.open .acc-icon {
  background: var(--hf-blue);
  color: var(--white);
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body-inner {
  padding: 0 26px 24px;
  color: var(--text-secondary);
  font-size: 15px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #121a30;
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 22px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-col h5 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 22px;
  font-weight: 700;
}

.footer-col p { font-size: 14px; line-height: 1.7; }

.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255, 255, 255, 0.7); font-size: 14px; }
.footer-links a:hover { color: var(--hf-green); padding-left: 4px; }

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.footer-contact li .fc-icon { color: var(--hf-green); flex-shrink: 0; }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.social-links a:hover {
  background: var(--hf-green);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer-bottom a { color: rgba(255, 255, 255, 0.7); }
.footer-bottom a:hover { color: var(--hf-green); }

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-btn);
  color: var(--white);
  font-family: var(--font-base);
  font-size: 14px;
}

.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--hf-green); }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Mobile Nav Panel
   ========================================================================== */
.mobile-nav {
  position: fixed;
  top: var(--promo-h);
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: calc(100vh - var(--promo-h));
  background: var(--white);
  z-index: 1100;
  padding: 30px 28px;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  transition: right 0.35s ease;
  overflow-y: auto;
}

.mobile-nav.open { right: 0; }

.mobile-nav .close-btn {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.mobile-nav ul li { border-bottom: 1px solid var(--border-gray); }
.mobile-nav ul li a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mobile-nav ul li a:hover { color: var(--hf-blue); }
.mobile-nav .btn { width: 100%; margin-top: 24px; }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.open { opacity: 1; visibility: visible; }

/* ==========================================================================
   Misc utilities
   ========================================================================== */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mt-md { margin-top: 32px; }
.divider { height: 1px; background: var(--border-gray); border: none; margin: 0; }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 50px;
  background: var(--light-gray);
  border: 1px solid var(--border-gray);
  color: var(--text-primary);
}

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-gray);
  font-size: 15px;
}
.spec-table th { width: 38%; color: var(--text-primary); font-weight: 700; }
.spec-table td { color: var(--text-secondary); }

.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-card);
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.job-card:hover { box-shadow: var(--shadow-card-hover); border-color: transparent; transform: translateX(4px); }
.job-card .job-info h4 { margin-bottom: 8px; font-size: 20px; }
.job-card .job-tags { display: flex; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--text-secondary); }
.job-card .job-tags span { display: inline-flex; gap: 5px; align-items: center; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
  h1 { font-size: 52px; }
  h2 { font-size: 40px; }
  .main-nav ul { gap: 18px; }
  .main-nav a { font-size: 13px; }
}

@media (max-width: 1024px) {
  :root { --section-spacing: 72px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-bottom: 72px;
    min-height: var(--hero-min-h);
  }
  .hero-side {
    justify-content: flex-start;
  }
  .hero-float-cards {
    width: 100%;
    max-width: 520px;
  }
  .slider-prev { left: 16px; }
  .slider-next { right: 16px; }
  .slider-arrow { width: 42px; height: 42px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav, .nav-cta .btn { display: none; }
  .menu-toggle { display: flex; }
  .two-col { gap: 40px; }
  .about-showcase-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
  .hero-brand-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-brand-visual {
    min-height: 400px;
    max-width: 520px;
    margin: 0 auto;
  }
  .another-brands-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .another-brands-slider-wrap {
    margin-right: 0;
    padding-right: 0;
  }
  .another-brand-card {
    flex: 0 0 88%;
    min-width: 300px;
    max-width: none;
  }
  .another-brand-img { height: 280px; }
  .another-brand-num { font-size: 44px; }
  .our-services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .our-services-visual {
    min-height: 320px;
  }
  .our-services-list {
    height: auto;
    justify-content: flex-start;
  }
  .our-service-item {
    flex: none;
  }
  .home-news-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .home-news-slider-wrap {
    margin-right: 0;
    padding-right: 0;
  }
  .home-news-card {
    flex: 0 0 88%;
    min-width: 280px;
    max-width: none;
  }
  .ig-gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .ig-gallery-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 180px;
  }
  .ig-gallery-slider {
    margin-right: 0;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  :root { --section-spacing: 56px; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  h3 { font-size: 24px; }
  .page-hero h1 { font-size: 36px; }
  .hero-content h1 { font-size: 40px; }
  .hero-float-cards {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }
  .hero-stat-card,
  .hero-img-card,
  .hero-img-card img {
    min-height: 260px;
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .about-showcase-content h2 { font-size: 32px; }
  .hero-brand-features { grid-template-columns: 1fr; gap: 28px; }
  .hero-brand-visual { min-height: 340px; }
  .hero-brand-exp-num { font-size: 36px; }
  .ig-gallery-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 160px;
  }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .timeline::before { left: 8px; }
  .tl-item { width: 100%; left: 0 !important; text-align: left !important; padding: 0 0 40px 40px; }
  .tl-item .tl-dot { left: 0 !important; right: auto !important; }
  .media-badge { position: static; margin-top: 20px; display: inline-block; }
  .hero-stats { gap: 30px; }
  .section-head { margin-bottom: 36px; }
  .job-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container, .container-wide { padding: 0 18px; }
  h1, .hero-content h1 { font-size: 32px; }
  .hero-grid {
    padding-top: calc(var(--header-h) + var(--promo-h) + 24px);
    min-height: var(--hero-min-h);
  }
  .ticker-band { height: 72px; }
  .ticker-track span { font-size: 18px; padding: 0 40px; }
  .ticker-track span::after { font-size: 14px; }
  .hero-float-cards {
    grid-template-columns: 1fr;
  }
  .hero-tag {
    font-size: 11px;
    padding: 8px 14px;
  }
  .hero-stat-big {
    font-size: 44px;
  }
  .gallery-grid { grid-template-columns: 1fr; }
  .ig-gallery-card {
    flex: 0 0 78%;
    min-width: 0;
  }
  .form-card { padding: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* ==========================================================================
   Homepage Splash Loader
   ========================================================================== */
body.splash-active {
  overflow: hidden;
}

.splash-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafbfc;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-loader.is-exiting {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-pattern {
  position: absolute;
  inset: 0;
  background-color: #fafbfc;
  background-image: url("../img/splash-wave-pattern.svg");
  background-size: 320px 320px;
  background-repeat: repeat;
  animation: splashWaveDrift 24s linear infinite;
}

@keyframes splashWaveDrift {
  from { background-position: 0 0; }
  to { background-position: 320px 320px; }
}

.splash-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 24px;
}

.splash-logo-zone {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-deco {
  position: absolute;
  pointer-events: none;
}

.splash-deco-ring {
  border-radius: 50%;
  border: 1px solid transparent;
}

.splash-deco-ring--1 {
  inset: 0;
  border-top-color: rgba(38, 71, 150, 0.45);
  border-right-color: rgba(38, 71, 150, 0.12);
  animation: splashSpin 3.6s linear infinite;
}

.splash-deco-ring--2 {
  inset: 22px;
  border-bottom-color: rgba(108, 179, 110, 0.5);
  border-left-color: rgba(108, 179, 110, 0.15);
  animation: splashSpin 4.8s linear infinite reverse;
}

.splash-deco-corner {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(38, 71, 150, 0.35);
  opacity: 0;
  animation: splashCornerIn 0.8s ease forwards;
}

.splash-deco-corner--tl {
  top: 36px;
  left: 36px;
  border-right: none;
  border-bottom: none;
  animation-delay: 0.2s;
}

.splash-deco-corner--tr {
  top: 36px;
  right: 36px;
  border-left: none;
  border-bottom: none;
  animation-delay: 0.3s;
}

.splash-deco-corner--bl {
  bottom: 36px;
  left: 36px;
  border-right: none;
  border-top: none;
  animation-delay: 0.4s;
}

.splash-deco-corner--br {
  bottom: 36px;
  right: 36px;
  border-left: none;
  border-top: none;
  animation-delay: 0.5s;
}

.splash-deco-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hf-green);
  box-shadow: 0 0 0 4px rgba(108, 179, 110, 0.14);
  animation: splashDotPulse 2.2s ease-in-out infinite;
}

.splash-deco-dot--1 { top: 8px; left: 50%; transform: translateX(-50%); }
.splash-deco-dot--2 {
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hf-blue);
  box-shadow: 0 0 0 4px rgba(38, 71, 150, 0.12);
  animation-delay: 0.4s;
  animation-name: splashDotPulseY;
}
.splash-deco-dot--3 {
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  background: var(--hf-blue);
  box-shadow: 0 0 0 4px rgba(38, 71, 150, 0.12);
  animation-delay: 0.8s;
  animation-name: splashDotPulseX;
}
.splash-deco-dot--4 {
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  animation-delay: 1.2s;
  animation-name: splashDotPulseX;
}

@keyframes splashSpin {
  to { transform: rotate(360deg); }
}

@keyframes splashCornerIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes splashDotPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.75; }
  50% { transform: translateX(-50%) scale(1.25); opacity: 1; }
}

@keyframes splashDotPulseY {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.75; }
  50% { transform: translateX(-50%) scale(1.25); opacity: 1; }
}

@keyframes splashDotPulseX {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.75; }
  50% { transform: translateY(-50%) scale(1.25); opacity: 1; }
}

.splash-logo {
  position: relative;
  z-index: 2;
  width: 220px;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0;
  transform: translateY(10px);
  animation: splashLogoIn 0.9s ease 0.15s forwards;
}

@keyframes splashLogoIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.splash-progress-wrap {
  width: min(300px, 78vw);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.splash-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.splash-progress-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.splash-progress-percent {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--hf-blue);
  font-variant-numeric: tabular-nums;
}

.splash-progress {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(38, 71, 150, 0.1);
  overflow: hidden;
}

.splash-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--hf-blue) 0%, var(--hf-green) 100%);
  transition: width 0.12s linear;
}

@media (max-width: 480px) {
  .splash-logo-zone {
    width: 240px;
    height: 240px;
  }

  .splash-logo {
    width: 176px;
  }

  .splash-deco-ring--2 {
    inset: 18px;
  }

  .splash-deco-corner {
    width: 18px;
    height: 18px;
  }

  .splash-deco-corner--tl,
  .splash-deco-corner--tr {
    top: 28px;
  }

  .splash-deco-corner--bl,
  .splash-deco-corner--br {
    bottom: 28px;
  }

  .splash-deco-corner--tl,
  .splash-deco-corner--bl {
    left: 28px;
  }

  .splash-deco-corner--tr,
  .splash-deco-corner--br {
    right: 28px;
  }

  .splash-stage {
    gap: 32px;
  }
}
