:root {
  --color-primary: #008F4C;
  --color-primary-dark: #063D24;
  --color-primary-deep: #052B1A;
  --color-secondary: #F7E733;
  --color-white: #FFFFFF;
  --color-bg: #FFFFFF;
  --color-bg-soft: #F3FBF6;
  --color-bg-muted: #FBFEFC;
  --color-text: #163326;
  --color-muted: #64746B;
  --color-border: #DCEFE4;
  --color-card: rgba(255, 255, 255, 0.96);
  --color-success: #0B7D43;
  --shadow-soft: 0 14px 40px rgba(0, 55, 30, 0.14);
  --shadow-button: 0 14px 28px rgba(0, 143, 76, 0.28);
  --shadow-sm: 0 14px 32px rgba(0, 107, 58, 0.08);
  --shadow-md: 0 26px 56px rgba(0, 107, 58, 0.12);
  --shadow-lg: 0 40px 84px rgba(0, 78, 42, 0.14);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --container: 1320px;
  --container-padding: 32px;
  --header-height: 80px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(247, 231, 51, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(0, 143, 76, 0.08), transparent 30%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-muted) 100%);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(247, 231, 51, 0.9);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1001;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-primary-dark);
  color: #fff;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - 80px, 1320px);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 992px) {
  :root {
    --container-padding: 24px;
  }

  .container {
    width: min(100% - 48px, 100%);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 40px, 100%);
  }
}

@media (min-width: 1440px) {
  .container {
    width: min(100% - 80px, 1320px);
  }

  .hero-content h1 {
    font-size: 5.6rem;
  }

  .hero-content {
    max-width: 600px;
  }
}

.section {
  padding: 108px 0;
}

.section-muted {
  background: var(--color-bg-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 80px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(5, 43, 26, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 43, 26, 0.98);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 38px rgba(0, 13, 7, 0.2);
}

.home-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(5, 43, 26, 0.68);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.home-page .site-header .brand-text strong,
.home-page .site-header .brand-text small,
.home-page .site-header .main-nav > a:not(.btn) {
  color: #fff;
}

.home-page .site-header .main-nav > a:not(.btn)::after {
  background: var(--color-secondary);
}

.home-page .site-header .nav-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.home-page .site-header .nav-toggle span {
  background: #fff;
}

.home-page .site-header.is-scrolled {
  background: rgba(5, 43, 26, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 24, 12, 0.22);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  flex-shrink: 0;
}

.brand-mark svg,
.brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

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

.main-nav > a:not(.btn) {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 0;
  font-weight: 700;
  font-size: 0.875rem;
  transition: color 0.25s ease;
}

.main-nav > a:not(.btn):hover,
.main-nav > a:not(.btn):focus-visible {
  color: #fff;
}

.main-nav > a[aria-current="page"] {
  color: #fff;
}

.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--color-secondary);
  border-radius: 999px;
  transition: transform 0.3s ease;
}

.main-nav > a:not(.btn):hover::after,
.main-nav > a:not(.btn):focus-visible::after,
.main-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn,
.slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
}

.btn:hover,
.slider-arrow:hover {
  transform: translateY(-3px);
}

.btn:active,
.slider-arrow:active {
  transform: scale(0.97);
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.main-nav > a:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 4px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #008F4C 0%, #16B86A 100%);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #009F55 0%, #21C875 100%);
  box-shadow:
    0 18px 38px rgba(0, 143, 76, 0.36),
    0 0 0 4px rgba(247, 231, 51, 0.12);
}

.btn-secondary {
  color: var(--color-primary-dark);
  background: #fff;
  border-color: rgba(0, 143, 76, 0.18);
  box-shadow: 0 12px 28px rgba(0, 55, 30, 0.08);
}

.btn-secondary:hover {
  color: var(--color-primary-dark);
  background: var(--color-bg-soft);
  border-color: rgba(0, 143, 76, 0.35);
  box-shadow: var(--shadow-soft);
}

.btn-outline,
.btn-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover,
.btn-light:hover {
  color: var(--color-primary-dark);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.btn-full {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(247, 231, 51, 0.22);
  color: var(--color-primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow-dark {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading h2,
.why-copy h2,
.contact-copy h2,
.cta-card h2 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-heading p,
.hero-lead,
.about-grid p,
.service-card p,
.project-card p,
.process-card p,
.testimonial-card p,
.contact-copy p,
.contact-card p,
.form-note,
.footer-copy,
.delivery-note span,
.fact-card span,
.mini-product span {
  color: var(--color-muted);
}

.hero-section {
  padding: 58px 0 72px;
}

.hero-grid,
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.hero-grid {
  min-height: calc(100vh - var(--header-height) - 24px);
}

.hero-copy,
.why-copy,
.contact-copy {
  grid-column: span 5;
}

.hero-visual,
.why-features,
.contact-form {
  grid-column: span 7;
}

.hero-copy h1 {
  margin: 20px 0 18px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  max-width: 11ch;
}

.hero-lead {
  max-width: 60ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 22px rgba(0, 107, 58, 0.05);
  color: var(--color-text);
  font-weight: 700;
}

.hero-trust li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(247, 231, 51, 0.22);
}

.dashboard-shell {
  position: relative;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 251, 246, 0.98)),
    radial-gradient(circle at top right, rgba(247, 231, 51, 0.18), transparent 28%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.dashboard-shell::before,
.dashboard-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.dashboard-shell::before {
  width: 180px;
  height: 180px;
  top: -60px;
  right: -30px;
  background: rgba(247, 231, 51, 0.16);
}

.dashboard-shell::after {
  width: 120px;
  height: 120px;
  bottom: -40px;
  left: -20px;
  background: rgba(0, 143, 76, 0.1);
}

.dashboard-top,
.panel-head,
.project-meta,
.activity-list li,
.footer-bottom,
.delivery-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-top h2,
.panel-head h3 {
  margin: 4px 0 0;
  font-size: 1.3rem;
  line-height: 1.15;
}

.mini-label {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.status-pill,
.panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.status-pill {
  background: rgba(0, 143, 76, 0.12);
  color: var(--color-success);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.panel-tag {
  background: rgba(247, 231, 51, 0.26);
  color: var(--color-primary-dark);
}

.dashboard-stats,
.dashboard-panels,
.about-grid,
.facts-grid,
.services-grid,
.projects-grid,
.process-grid,
.testimonials-grid,
.contact-cards,
.footer-grid,
.stats-grid,
.why-features,
.products-mini-grid {
  display: grid;
  gap: 20px;
}

.dashboard-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 22px 0 18px;
}

.dashboard-panels {
  grid-template-columns: 1.45fr 1fr;
}

.products-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.mini-product,
.stat-card,
.panel-card,
.info-card,
.value-card,
.service-card,
.project-card,
.process-card,
.testimonial-card,
.contact-card,
.contact-form,
.check-card,
.fact-card {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-card);
  box-shadow: var(--shadow-sm);
}

.mini-product,
.stat-card,
.panel-card,
.info-card,
.value-card,
.service-card,
.project-card,
.process-card,
.testimonial-card,
.contact-card,
.fact-card {
  padding: 24px;
}

.contact-form {
  padding: 30px;
}

.mini-product strong,
.stat-card strong,
.fact-card strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.2;
}

.mini-product span {
  display: block;
  margin-top: 6px;
  font-size: 0.94rem;
}

.stat-card strong {
  margin-top: 18px;
}

.stat-card p {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.stat-icon,
.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
}

.stat-icon svg,
.service-icon svg {
  width: 22px;
  height: 22px;
}

.icon-primary {
  color: var(--color-primary-dark);
  background: rgba(0, 143, 76, 0.12);
}

.icon-accent {
  color: #887a00;
  background: rgba(247, 231, 51, 0.3);
}

.icon-dark {
  color: var(--color-text);
  background: rgba(22, 51, 38, 0.08);
}

.about-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.facts-grid,
.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-index {
  display: inline-flex;
  min-height: 36px;
  padding: 0 12px;
  align-items: center;
  border-radius: 999px;
  background: rgba(247, 231, 51, 0.26);
  color: var(--color-primary-dark);
  font-weight: 800;
}

.info-card h3,
.value-card h3,
.service-card h3,
.project-card h3,
.process-card h3,
.testimonial-card strong,
.contact-card h3 {
  margin: 18px 0 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.services-grid,
.projects-grid,
.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover,
.project-card:hover,
.check-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.list-card:hover,
.media-card:hover,
.fact-card:hover,
.process-note:hover,
.page-hero-card:hover,
.contact-cta-box:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 143, 76, 0.35);
  box-shadow: 0 20px 45px rgba(0, 107, 58, 0.14);
}

.project-card,
.check-card,
.testimonial-card,
.contact-card,
.list-card,
.media-card,
.fact-card,
.process-note,
.page-hero-card,
.contact-cta-box {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.service-icon {
  color: var(--color-primary-dark);
  background: linear-gradient(180deg, rgba(247, 231, 51, 0.26), rgba(0, 143, 76, 0.08));
}

.why-features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
}

.check-card span,
.process-card > span {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(247, 231, 51, 0.24);
  color: var(--color-primary-dark);
  font-weight: 800;
}

.check-card p {
  margin: 6px 0 0;
  font-weight: 700;
}

.project-card {
  min-height: 230px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 251, 246, 0.94)),
    #fff;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card p,
.testimonial-card p,
.contact-card p,
.fact-card span {
  margin: 0;
}

.process-card:nth-child(7) {
  grid-column: span 4;
}

.delivery-note {
  margin-top: 24px;
  padding: 20px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.delivery-note strong {
  color: var(--color-primary-dark);
}

.stats-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcf9 100%);
}

.fact-card strong {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
  color: var(--color-primary-dark);
}

.fact-card span {
  display: block;
  margin-top: 10px;
}

.cta-section {
  padding-top: 38px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(247, 231, 51, 0.24), transparent 24%),
    linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-card p {
  max-width: 60ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.contact-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.contact-card a:hover {
  color: var(--color-primary-dark);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.form-field label {
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(22, 51, 38, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--color-text);
  padding: 15px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(0, 143, 76, 0.42);
  box-shadow: 0 0 0 4px rgba(247, 231, 51, 0.18);
}

.form-status {
  min-height: 24px;
  margin: 16px 0 4px;
  color: var(--color-primary-dark);
  font-weight: 700;
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(0, 143, 76, 0.22), transparent 32%),
    linear-gradient(135deg, #052B1A 0%, #063D24 55%, #031F13 100%);
  color: #fff;
  padding: 80px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.page-hero {
  padding: 48px 0 24px;
}

.page-hero-grid,
.content-grid,
.contact-layout,
.profile-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.page-hero-copy,
.content-main,
.contact-main {
  grid-column: span 7;
}

.page-hero-side,
.content-side,
.contact-side {
  grid-column: span 5;
}

.page-hero-card,
.media-card,
.list-card,
.contact-cta-box,
.process-note {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.page-hero-card,
.media-card,
.list-card,
.contact-cta-box,
.process-note {
  padding: 28px;
}

.page-hero-card {
  background:
    radial-gradient(circle at top right, rgba(247, 231, 51, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 251, 246, 0.98));
}

.page-hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 12ch;
}

.page-hero-copy p,
.page-hero-card p,
.media-card p,
.list-card p,
.simple-list li,
.contact-cta-box p,
.process-note p {
  color: var(--color-muted);
}

.page-hero-card strong,
.media-card strong,
.process-note strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
}

.eyebrow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.eyebrow-list li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 143, 76, 0.08);
  color: var(--color-primary-dark);
  font-weight: 700;
}

.stat-strip,
.list-grid,
.image-card-grid,
.process-grid-3 {
  display: grid;
  gap: 20px;
}

.stat-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.process-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-card > img,
.media-card-image > img:first-child {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 0;
  transition: transform 0.55s ease, filter 0.55s ease;
  transform-origin: center;
}

.media-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f7fbf8);
  border: 1px solid rgba(6, 59, 45, 0.08);
  box-shadow: 0 18px 40px rgba(6, 59, 45, 0.08);
}

.media-card .btn {
  margin-top: auto;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.media-card-image {
  margin-bottom: 0;
}

.media-card-image.product-image-wrapper {
  padding: 0;
  border-radius: 24px;
}

.media-card-image.product-image-wrapper > img:first-child {
  margin-bottom: 0;
}

.media-card:hover > img,
.media-card:hover .media-card-image > img:first-child {
  filter: saturate(1.03) contrast(1.02);
}

.product-showcase {
  position: relative;
}

.product-showcase::before {
  content: "";
  position: absolute;
  inset: 36px 0 auto;
  height: 420px;
  background:
    radial-gradient(circle at 12% 16%, rgba(242, 217, 78, 0.14), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(15, 107, 75, 0.14), transparent 24%);
  pointer-events: none;
}

.product-intro {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  padding: 30px 32px;
  margin-bottom: 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(242, 217, 78, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 246, 0.98));
  border: 1px solid rgba(6, 59, 45, 0.08);
  box-shadow: 0 18px 42px rgba(6, 59, 45, 0.08);
}

.product-intro-copy {
  max-width: 760px;
}

.product-intro-copy h2 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.product-intro-copy p {
  margin: 0;
  max-width: 62ch;
  color: var(--color-muted);
}

.product-intro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-intro-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(6, 59, 45, 0.06);
  border: 1px solid rgba(6, 59, 45, 0.08);
  color: var(--color-primary-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.product-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcf9 100%);
  border: 1px solid rgba(6, 59, 45, 0.08);
  box-shadow: 0 16px 36px rgba(6, 59, 45, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card::before {
  display: none;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(6, 59, 45, 0.14);
  border-color: rgba(15, 107, 75, 0.18);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 0;
  border-radius: 24px 24px 0 0;
  background:
    radial-gradient(circle at top right, rgba(242, 217, 78, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfdfb 0%, #f3f8f4 100%);
  border-bottom: 1px solid rgba(6, 59, 45, 0.06);
}

.product-image-wrapper > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  transform-origin: center;
}

.product-card:hover .product-image-wrapper > img:first-child {
  filter: saturate(1.03) contrast(1.02);
}

.product-photo {
  --photo-shift-x: -7%;
  --photo-shift-y: 0%;
  --photo-scale: 1.16;
  transform: translate(var(--photo-shift-x), var(--photo-shift-y)) scale(var(--photo-scale));
}

.product-photo--focus-left {
  --photo-shift-x: -7%;
}

.product-card:hover .product-photo,
.media-card:hover .product-photo {
  transform: translate(var(--photo-shift-x), var(--photo-shift-y)) scale(1.22);
}

.product-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 22px 22px 24px;
}

.product-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(6, 59, 45, 0.08);
  color: #063b2d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card-body h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.18;
  color: var(--color-primary-dark);
}

.product-card-body p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.product-uses {
  font-size: 0.95rem;
}

.product-uses strong {
  color: var(--color-primary-dark);
}

.product-card .btn {
  width: fit-content;
  margin-top: auto;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.product-card:hover .btn,
.media-card:hover .btn {
  transform: translateY(-1px);
}

.stock-section {
  padding-top: 40px;
}

.stock-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 28px;
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(6, 59, 45, 0.96), rgba(15, 107, 75, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 60px rgba(6, 59, 45, 0.22);
  color: #fff;
  overflow: hidden;
}

.stock-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(242, 217, 78, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 26%);
  pointer-events: none;
}

.stock-visual,
.stock-copy {
  position: relative;
  z-index: 1;
}

.stock-visual {
  overflow: hidden;
  border-radius: 28px;
  min-height: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.stock-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.stock-photo {
  transform: scale(1.12) translate(-7%, 4%);
  transform-origin: center;
}

.stock-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 59, 45, 0.16), rgba(6, 59, 45, 0.62)),
    radial-gradient(circle at top right, rgba(242, 217, 78, 0.12), transparent 28%);
}

.stock-badge-row {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stock-badge-row span,
.stock-feature-list li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.stock-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 10px 4px 10px 8px;
}

.stock-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.stock-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.stock-copy .eyebrow {
  background: rgba(242, 217, 78, 0.18);
  color: #fff;
}

.stock-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.stock-feature-list li::before {
  content: "✔";
  margin-right: 8px;
  color: #f2d94e;
}

.stock-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stock-stats article {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stock-stats strong,
.stock-stats span {
  display: block;
}

.stock-stats strong {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.stock-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.stock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.media-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.simple-list {
  padding-left: 18px;
  margin: 16px 0 0;
}

.simple-list li + li {
  margin-top: 8px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(247, 231, 51, 0.22);
  color: var(--color-primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

.contact-cta-box {
  background:
    radial-gradient(circle at top right, rgba(247, 231, 51, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 251, 246, 0.98));
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.whatsapp-cta {
  color: #fff;
  background: linear-gradient(135deg, #11a860, #087844);
  box-shadow: var(--shadow-sm);
}

.process-note {
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 42px;
  align-items: start;
  padding: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.footer-logo-text strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.footer-logo-text span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-description {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-title {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.footer-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--color-secondary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links li,
.footer-contact span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-secondary);
  transform: translateX(4px);
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-whatsapp {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
}

.footer-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.38);
}

.footer-whatsapp img {
  width: 24px;
  height: 24px;
}

.footer-whatsapp span {
  color: #fff;
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--color-secondary);
  font-weight: 700;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stock-showcase {
    grid-template-columns: 1fr;
  }

  .stock-stats {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card-body {
    padding: 20px 20px 22px;
  }

  .product-image-wrapper {
    aspect-ratio: 1 / 1;
  }

  .product-intro {
    padding: 22px;
    border-radius: 24px;
  }

  .product-intro-badges {
    gap: 10px;
  }

  .stock-showcase {
    padding: 18px;
    border-radius: 28px;
  }

  .stock-visual img {
    min-height: 360px;
  }

  .stock-photo {
    transform: scale(1.18) translate(-10%, 4%);
  }

  .stock-badge-row {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .stock-actions,
  .footer-whatsapp {
    justify-content: center;
  }

  .stock-actions .btn {
    width: 100%;
  }

  .footer-contact {
    justify-items: center;
  }

  .site-footer {
    padding: 56px 0 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@keyframes shimmerSweep {
  from {
    transform: translateX(-115%);
  }

  to {
    transform: translateX(135%);
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  padding-top: 120px;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../assets/images/hero-new-horizon.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(5, 43, 26, 0.94) 0%,
      rgba(5, 43, 26, 0.82) 28%,
      rgba(5, 43, 26, 0.48) 58%,
      rgba(5, 43, 26, 0.18) 100%
    );
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  max-width: 680px;
  margin: 0;
  padding-left: clamp(48px, 6vw, 110px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-content--animated .eyebrow,
.hero-content--animated h1,
.hero-content--animated p,
.hero-content--animated .hero-actions,
.hero-content--animated .hero-trust li {
  opacity: 0;
  transform: translateY(24px);
}

.hero-content--animated .eyebrow {
  animation: heroFadeUp 0.7s ease 0.08s forwards;
}

.hero-content--animated h1 {
  animation: heroFadeUp 0.85s ease 0.18s forwards;
}

.hero-content--animated p {
  animation: heroFadeUp 0.85s ease 0.34s forwards;
}

.hero-content--animated .hero-actions {
  animation: heroFadeUp 0.85s ease 0.48s forwards;
}

.hero-content--animated .hero-trust li {
  animation: heroFadeUp 0.75s ease forwards, heroBadgeFloat 4.6s ease-in-out 1.2s infinite;
}

.hero-content--animated .hero-trust li:nth-child(1) {
  animation-delay: 0.58s, 1.4s;
}

.hero-content--animated .hero-trust li:nth-child(2) {
  animation-delay: 0.66s, 1.55s;
}

.hero-content--animated .hero-trust li:nth-child(3) {
  animation-delay: 0.74s, 1.7s;
}

.hero-content--animated .hero-trust li:nth-child(4) {
  animation-delay: 0.82s, 1.85s;
}

.hero-content h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 680px;
}

.line-1 {
  font-size: clamp(3.4rem, 5vw, 5.6rem);
  font-weight: 800;
}

.line-2 {
  font-size: clamp(3.2rem, 4.5vw, 5rem);
  font-weight: 700;
}

.line-3 {
  font-size: clamp(3rem, 4vw, 4.6rem);
  font-style: italic;
  font-family: "Playfair Display", serif;
  color: #F7E733;
}

.hero-content p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero .eyebrow {
  background: rgba(247, 231, 51, 0.2);
  color: var(--color-primary-deep);
}

.hero .hero-trust li {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 24, 12, 0.16);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-buttons,
.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0;
  margin-bottom: 0;
}

.hero-badges,
.hero .hero-trust {
  display: grid;
  grid-template-columns: auto auto;
  gap: 12px;
  width: fit-content;
  max-width: 680px;
  margin-top: 0;
}

.hero-badges .badge:last-child {
  margin-left: auto;
}

.hero .btn-primary {
  box-shadow: 0 18px 34px rgba(0, 143, 76, 0.24);
}

.hero-section,
.hero-slider,
.hero-slider__viewport,
.hero-slide,
.hero-slider__controls {
  display: none;
}

.hero-slider {
  position: relative;
}

.hero-slider__viewport {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 32px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease, transform 1s ease;
  transform: translateX(26px);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 2;
}

.hero-slide__backdrop {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
}

.hero-slide__backdrop::before,
.hero-slide__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-slide__backdrop::before {
  background:
    linear-gradient(90deg, rgba(0, 53, 28, 0.7) 0%, rgba(0, 53, 28, 0.4) 42%, rgba(0, 53, 28, 0.22) 62%, rgba(255, 255, 255, 0.12) 100%),
    var(--scene-image);
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 7s ease, filter 1s ease;
}

.hero-slide__backdrop::after {
  background:
    radial-gradient(circle at top right, rgba(247, 231, 51, 0.22), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08));
}

.hero-slide.is-active .hero-slide__backdrop::before {
  transform: scale(1.05);
}

.hero-slide__content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-height) - 32px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

.hero-slide__copy,
.hero-slide__aside {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-slide__copy {
  grid-column: span 6;
  color: #fff;
  transform: translateY(44px);
}

.hero-slide.is-active .hero-slide__copy {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide__copy h1,
.hero-slide__copy h2 {
  margin: 18px 0 16px;
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero-slide__copy p {
  max-width: 60ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-slide .eyebrow {
  background: rgba(247, 231, 51, 0.18);
  color: #fff;
}

.hero-slide .hero-trust li {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-slide__aside {
  grid-column: 8 / span 5;
  transform: translateY(28px);
}

.hero-slide.is-active .hero-slide__aside {
  opacity: 1;
  transform: translateY(0);
}

.hero-info-card,
.hero-product-card,
.hero-timeline-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 60px rgba(0, 38, 20, 0.18);
  backdrop-filter: blur(14px);
  color: #fff;
}

.hero-info-card {
  padding: 26px;
}

.hero-info-card__label {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(247, 231, 51, 0.22);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-info-card strong {
  display: block;
  margin: 18px 0 10px;
  font-size: 1.5rem;
  line-height: 1.1;
}

.hero-info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.hero-info-card--glow {
  position: relative;
}

.hero-info-card--glow::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(247, 231, 51, 0.32), transparent 32%, rgba(255, 255, 255, 0.06));
  opacity: 0.65;
  z-index: -1;
  filter: blur(18px);
}

.hero-product-stack {
  display: grid;
  gap: 14px;
}

.hero-product-card {
  padding: 18px 20px;
  transform: translateY(18px);
  opacity: 0;
  animation: none;
  will-change: transform, opacity;
}

.hero-slide.is-active .hero-product-card {
  animation: productCardIn 0.72s ease forwards;
}

.hero-slide.is-active .hero-product-card:nth-child(1) {
  animation-delay: 0.12s;
}

.hero-slide.is-active .hero-product-card:nth-child(2) {
  animation-delay: 0.24s;
}

.hero-slide.is-active .hero-product-card:nth-child(3) {
  animation-delay: 0.36s;
}

.hero-slide.is-active .hero-product-card:nth-child(4) {
  animation-delay: 0.48s;
}

.hero-product-card strong {
  display: block;
  font-size: 1.05rem;
}

.hero-product-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.hero-timeline-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.hero-timeline-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-timeline-card strong {
  font-size: 1rem;
}

.hero-timeline-card span {
  color: rgba(255, 255, 255, 0.82);
  text-align: right;
  font-size: 0.92rem;
}

.hero-slider__controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-slider__nav,
.slider-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-arrow,
.slider-dots button {
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(12px);
}

.slider-arrow {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(0, 35, 18, 0.16);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.slider-arrow:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 40px rgba(0, 35, 18, 0.2);
}

.slider-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 999px;
  transition: width var(--transition), background var(--transition), transform var(--transition);
}

.slider-dots button.is-active {
  width: 34px;
  background: var(--color-secondary);
  transform: translateY(-1px);
}

.slide-warehouse {
  --scene-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 980'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%23f8fcf9'/%3E%3Cstop offset='1' stop-color='%23e4efe9'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1600' height='980' fill='url(%23g)'/%3E%3Crect x='70' y='160' width='1460' height='620' rx='28' fill='%23edf4f0'/%3E%3Cpath d='M110 260h1380' stroke='%23cfdcd4' stroke-width='10'/%3E%3Cpath d='M110 360h1380' stroke='%23d5e1da' stroke-width='6'/%3E%3Cpath d='M110 460h1380' stroke='%23d5e1da' stroke-width='6'/%3E%3Cpath d='M110 560h1380' stroke='%23d5e1da' stroke-width='6'/%3E%3Cpath d='M110 660h1380' stroke='%23d5e1da' stroke-width='6'/%3E%3Crect x='240' y='310' width='150' height='260' rx='18' fill='%23008F4C' fill-opacity='.28'/%3E%3Crect x='430' y='330' width='150' height='240' rx='18' fill='%23ffffff'/%3E%3Crect x='620' y='290' width='170' height='280' rx='18' fill='%23F7E733' fill-opacity='.42'/%3E%3Crect x='830' y='330' width='150' height='240' rx='18' fill='%23008F4C' fill-opacity='.22'/%3E%3Crect x='1020' y='300' width='170' height='270' rx='18' fill='%23ffffff'/%3E%3Crect x='1225' y='340' width='120' height='230' rx='18' fill='%23006B3A' fill-opacity='.25'/%3E%3Cpath d='M0 820h1600' stroke='%23c1d0c8' stroke-width='14'/%3E%3C/svg%3E");
}

.slide-products {
  --scene-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 980'%3E%3Crect width='1600' height='980' fill='%23f7fbf8'/%3E%3Cellipse cx='350' cy='720' rx='220' ry='46' fill='%23dbe9e1'/%3E%3Cellipse cx='860' cy='760' rx='260' ry='52' fill='%23dfece5'/%3E%3Cellipse cx='1230' cy='720' rx='210' ry='44' fill='%23dbe9e1'/%3E%3Crect x='240' y='260' width='210' height='330' rx='32' fill='%23ffffff' stroke='%23dcefe4' stroke-width='8'/%3E%3Crect x='310' y='220' width='70' height='70' rx='18' fill='%23F7E733' fill-opacity='.85'/%3E%3Crect x='580' y='210' width='280' height='420' rx='38' fill='%23ffffff' stroke='%23dcefe4' stroke-width='8'/%3E%3Ccircle cx='720' cy='340' r='76' fill='%23008F4C' fill-opacity='.18'/%3E%3Ccircle cx='720' cy='340' r='48' fill='%23F7E733' fill-opacity='.65'/%3E%3Crect x='1040' y='260' width='250' height='360' rx='34' fill='%23ffffff' stroke='%23dcefe4' stroke-width='8'/%3E%3Cpath d='M1120 300c65 32 124 111 124 182 0 48-38 86-92 86-68 0-116-47-116-101 0-73 38-127 84-167Z' fill='%23008F4C' fill-opacity='.16'/%3E%3Ccircle cx='1330' cy='220' r='42' fill='%23F7E733' fill-opacity='.65'/%3E%3C/svg%3E");
}

.slide-logistics {
  --scene-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 980'%3E%3Crect width='1600' height='980' fill='%23f5faf7'/%3E%3Cpath d='M120 690h1360' stroke='%23d7e6dd' stroke-width='18'/%3E%3Crect x='160' y='260' width='600' height='320' rx='28' fill='%23eef6f1'/%3E%3Crect x='220' y='320' width='220' height='200' rx='16' fill='%23ffffff'/%3E%3Crect x='480' y='320' width='220' height='200' rx='16' fill='%23ffffff'/%3E%3Crect x='910' y='330' width='320' height='170' rx='26' fill='%23008F4C' fill-opacity='.2'/%3E%3Crect x='1160' y='390' width='230' height='110' rx='22' fill='%23ffffff'/%3E%3Ccircle cx='1210' cy='540' r='52' fill='%23294d3c' fill-opacity='.16'/%3E%3Ccircle cx='1350' cy='540' r='52' fill='%23294d3c' fill-opacity='.16'/%3E%3Cpath d='M840 390h220' stroke='%23F7E733' stroke-width='18' stroke-linecap='round'/%3E%3Cpath d='M800 430h220' stroke='%23008F4C' stroke-width='18' stroke-linecap='round'/%3E%3Cpath d='M760 470h220' stroke='%23d3e4da' stroke-width='18' stroke-linecap='round'/%3E%3C/svg%3E");
}

.slide-quality {
  --scene-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 980'%3E%3Crect width='1600' height='980' fill='%23f8fcf9'/%3E%3Ccircle cx='1250' cy='190' r='120' fill='%23F7E733' fill-opacity='.22'/%3E%3Crect x='180' y='220' width='1240' height='520' rx='34' fill='%23eef6f1'/%3E%3Crect x='300' y='320' width='260' height='240' rx='24' fill='%23ffffff'/%3E%3Crect x='610' y='280' width='340' height='320' rx='28' fill='%23ffffff'/%3E%3Crect x='1020' y='320' width='200' height='240' rx='24' fill='%23ffffff'/%3E%3Cpath d='M760 310v240' stroke='%23008F4C' stroke-width='12' stroke-linecap='round'/%3E%3Cpath d='M690 390c0 48 33 82 70 82s70-34 70-82c0-40-31-71-70-122-39 51-70 82-70 122Z' fill='%23008F4C' fill-opacity='.16' stroke='%23008F4C' stroke-width='8'/%3E%3Cpath d='M360 520h140' stroke='%23F7E733' stroke-width='16' stroke-linecap='round'/%3E%3Cpath d='M1060 380h120' stroke='%23008F4C' stroke-width='16' stroke-linecap='round'/%3E%3Cpath d='M1060 430h90' stroke='%23d7e6dd' stroke-width='16' stroke-linecap='round'/%3E%3C/svg%3E");
}

.slide-logistics .hero-slide__copy,
.slide-logistics .hero-slide__aside {
  transform: translateX(-34px);
}

.slide-logistics .hero-slide__backdrop::before {
  filter: blur(10px);
}

.slide-logistics.is-active .hero-slide__copy,
.slide-logistics.is-active .hero-slide__aside {
  transform: translateX(0);
}

.slide-logistics.is-active .hero-slide__backdrop::before {
  filter: blur(0);
}

.slide-quality .hero-slide__copy,
.slide-quality .hero-slide__aside {
  transform: scale(0.94);
}

.slide-quality.is-active .hero-slide__copy,
.slide-quality.is-active .hero-slide__aside {
  transform: scale(1);
}

@keyframes productCardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes heroBadgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.reveal,
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
  will-change: transform, opacity;
}

.reveal.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html,
  body {
    scroll-behavior: auto !important;
  }

  .reveal,
  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-content--animated .eyebrow,
  .hero-content--animated h1,
  .hero-content--animated p,
  .hero-content--animated .hero-actions,
  .hero-content--animated .hero-trust li {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1199px) {
  .section {
    padding: 92px 0;
  }

  .hero-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider__viewport,
  .hero-slide__content {
    min-height: 820px;
  }

  .hero-copy,
  .hero-visual,
  .why-copy,
  .why-features,
  .contact-copy,
  .contact-form {
    grid-column: auto;
  }

  .hero-slide__copy,
  .hero-slide__aside {
    grid-column: auto;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .dashboard-panels,
  .about-grid,
  .facts-grid,
  .services-grid,
  .projects-grid,
  .process-grid,
  .testimonials-grid,
  .footer-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero-grid,
  .content-grid,
  .contact-layout,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-copy,
  .page-hero-side,
  .content-main,
  .content-side,
  .contact-main,
  .contact-side {
    grid-column: auto;
  }

  .stat-strip,
  .list-grid,
  .image-card-grid,
  .process-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-card:nth-child(7) {
    grid-column: auto;
  }
}

@media (max-width: 992px) {
  .hero-container {
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 72px;
    --container-padding: 20px;
  }

  body {
    overflow-x: hidden;
  }

  .section,
  .hero-section {
    padding: 78px 0;
  }

  .site-header {
    min-height: 72px;
  }

  .container,
  .header-inner,
  .footer-inner,
  .footer-container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .header-inner {
    min-height: 72px;
    gap: 16px;
    justify-content: space-between;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand-mark svg,
  .brand-mark img {
    width: 30px;
    height: 30px;
  }

  .brand-text small {
    display: none;
  }

  .hero-section {
    padding-top: 10px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .home-page .site-header .main-nav {
    background: rgba(5, 43, 26, 0.98);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .home-page .site-header .main-nav > a:not(.btn) {
    color: #fff;
  }

  .hero {
    padding: 88px 0;
    padding-top: 100px;
  }

  .hero-content {
    max-width: none;
    padding-left: 0;
    padding: 36px 0 24px;
    text-align: center;
  }

  .hero-background {
    background-position: 64% center;
  }

  .hero-container {
    min-height: auto;
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 38px;
  }

  .hero-content p {
    max-width: none;
  }

  .hero-badges,
  .hero .hero-trust {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .line-3 {
    font-size: clamp(2.4rem, 6vw, 3rem);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(5, 43, 26, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav > a:not(.btn) {
    color: rgba(255, 255, 255, 0.9);
    padding: 14px 12px;
    font-size: 16px;
  }

  .nav-cta {
    width: 100%;
    margin-top: 8px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .hero-slider__viewport,
  .hero-slide__content {
    min-height: 760px;
  }

  .hero-slide__content {
    padding-top: 34px;
    padding-bottom: 110px;
  }

  .hero-slide__copy h1,
  .hero-slide__copy h2 {
    max-width: none;
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .hero-slide__backdrop::before {
    background-position: 66% center;
  }

  .hero-actions,
  .hero-trust,
  .delivery-note,
  .cta-card,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-slider__controls {
    right: 16px;
    left: 16px;
    bottom: 18px;
    transform: none;
    width: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-slider__nav,
  .slider-dots {
    justify-content: center;
  }

  .dashboard-stats,
  .dashboard-panels,
  .products-mini-grid,
  .about-grid,
  .facts-grid,
  .services-grid,
  .why-features,
  .projects-grid,
  .process-grid,
  .testimonials-grid,
  .contact-cards,
  .footer-grid,
  .form-row,
  .stats-grid,
  .stat-strip,
  .list-grid,
  .image-card-grid,
  .process-grid-3 {
    grid-template-columns: 1fr;
  }

  .dashboard-shell,
  .cta-card,
  .contact-form {
    padding: 22px;
  }

  .site-footer {
    padding: 56px 0 24px;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-brand,
  .footer-contact {
    width: 100%;
  }

  .footer-description {
    max-width: 100%;
    line-height: 1.7;
  }

  .footer-links {
    gap: 14px;
  }

  .footer-bottom {
    margin-top: 36px;
    gap: 10px;
  }

  .dashboard-top,
  .panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .check-card {
    padding: 20px;
  }
}
