:root {
  --brand-blue: #2F56A3;
  --brand-blue-light: #4D88FF;
  --brand-blue-surface: #011067;
  --brand-white: #FFFFFF;
  --brand-black: #020202;
  --brand-contrast: #EFD82C;
  --ticker-height: 56px;
  --max-width: 1180px;
  --radius-card: 24px;
  --radius-button: 12px;
  --pad-x: clamp(20px, 4.5vw, 56px);
  --pad-y: clamp(60px, 8vw, 110px);
  --carousel-gap: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--ticker-height);
  background: var(--brand-white);
  color: var(--brand-black);
  font-family: "Sora", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex-shrink: 0;
  fill: currentColor;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.gallery-section,
.benefits-section,
.about-section,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.section-label {
  margin: 0 0 10px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-label-light {
  color: var(--brand-contrast);
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-title-light {
  color: var(--brand-white);
}

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

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 30px;
  border: 0;
  border-radius: var(--radius-button);
  background: #25D366;
  color: var(--brand-white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  background: #20BD5C;
}

.btn-cta .icon {
  font-size: 1.25rem;
  color: var(--brand-white);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.ticker {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  overflow: hidden;
  height: var(--ticker-height);
  background: var(--brand-contrast);
  color: var(--brand-black);
  border-bottom: 1px solid var(--brand-black);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 100%;
  animation: ticker-scroll 26s linear infinite;
  will-change: transform;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 34px;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ticker-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-black);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--ticker-height));
  background: var(--brand-blue-surface);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, var(--brand-blue-surface), transparent 30%),
    repeating-linear-gradient(
      135deg,
      var(--brand-blue-surface) 0,
      var(--brand-blue-surface) 1px,
      transparent 1px,
      transparent 28px
    ),
    linear-gradient(180deg, transparent, var(--brand-blue) 55%);
  opacity: 0.18;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--ticker-height));
  padding-top: clamp(32px, 6vw, 72px);
  padding-bottom: clamp(32px, 6vw, 72px);
}

.hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: min(100%, 760px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--brand-white);
  border-radius: 30px;
  background: var(--brand-blue);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.hero-title {
  margin: 0;
  color: var(--brand-contrast);
  font-size: clamp(3.45rem, 7.6vw, 6.6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  margin: 0;
  max-width: 24ch;
  color: var(--brand-white);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 800;
  line-height: 1.3;
}

.hero-subtitle span,
.hero-description span {
  display: block;
}

.hero-description-highlight {
  display: block;
  margin: 2px 0;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-description {
  margin: 0;
  max-width: 36ch;
  color: var(--brand-white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.hero-description-box {
  width: min(100%, 420px);
  padding: 14px 18px;
  border: 1px solid var(--brand-white);
  border-radius: 18px;
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-description-box .hero-description {
  max-width: none;
  font-size: 0.98rem;
  line-height: 1.4;
}

.hero-logo {
  width: min(100%, 250px);
  height: auto;
}

.hero-scroll-cue {
  display: none;
}

.gallery-section {
  padding: var(--pad-y) 0;
}

.gallery-section {
  background: var(--brand-white);
}


.carousel-block {
  position: relative;
  margin-top: 42px;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: var(--carousel-gap);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc((100% - (var(--carousel-gap) * 2)) / 3);
  min-width: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--brand-white);
  border: 1px solid var(--brand-blue);
}

.carousel-slide img {
  width: 100%;
  height: clamp(280px, 33vw, 380px);
  object-fit: cover;
  transition: transform 0.35s ease;
}

.carousel-image-contain {
  object-fit: contain !important;
  background: var(--brand-white);
  padding: 18px;
}

.carousel-slide:hover img {
  transform: scale(1.03);
}

.carousel-arrow {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--brand-blue);
  color: var(--brand-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-arrow:hover {
  transform: translateY(-1px) scale(1.05);
  background: var(--brand-blue-dark);
}

.carousel-arrow.prev {
  left: calc(var(--pad-x) * 0.25);
}

.carousel-arrow.next {
  right: calc(var(--pad-x) * 0.25);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--brand-blue-surface);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.active {
  background: var(--brand-blue);
  transform: scale(1.2);
}

.benefits-section {
  padding: var(--pad-y) 0;
  background: var(--brand-blue-surface);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.benefit-card {
  padding: 28px 22px 30px;
  border: 1px solid var(--brand-blue);
  border-radius: 22px;
  background: var(--brand-contrast);
  color: var(--brand-black);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-card h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-weight: 800;
  line-height: 1.02;
}

.benefit-card p {
  margin: 0 !important;
}

.benefit-note {
  margin: 10px 0 0;
  max-width: 20ch;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.3;
}

.benefit-note span {
  display: block;
}

.benefit-note-secondary {
  margin-top: 6px;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.35;
  opacity: 0.82;
}

.benefit-card-freight .benefit-note {
  max-width: 16ch;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.14;
}

.benefit-card-freight .benefit-note-secondary {
  max-width: none;
  font-size: 0.68rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.benefits-section .benefit-card.benefit-card-freight h3,
.benefits-section .benefit-card.benefit-card-freight p {
  margin: 0 !important;
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

.benefits-section .benefit-card.benefit-card-freight .benefit-note {
  margin-top: 8px !important;
}

.benefits-section .benefit-card.benefit-card-freight .benefit-note-secondary {
  margin-top: 7px !important;
}

.benefit-icon {
  margin: 0 auto 16px;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon-svg {
  color: var(--brand-black);
}

.benefit-icon-svg .icon {
  font-size: 4.2rem;
}

.benefit-icon-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-icon-region {
  width: 112px;
  height: 112px;
  margin-bottom: 14px;
}

.hero-cta {
  margin-top: 8px;
  width: min(100%, 320px);
}

.about-section {
  padding: var(--pad-y) 0;
  background: var(--brand-white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: center;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-copy .section-title {
  color: var(--brand-blue);
  font-size: clamp(2rem, 3.8vw, 3.1rem);
}

.about-copy p:not(.section-label) {
  margin: 0;
  color: var(--brand-black);
  font-size: 1rem;
  line-height: 1.85;
}

.about-image {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--brand-blue);
}

.about-image img {
  width: 100%;
  height: clamp(320px, 38vw, 460px);
  object-fit: cover;
}

.carousel-slide-labeled {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.slide-label {
  padding: 16px 16px 18px;
  background: var(--brand-white);
  border-top: 1px solid var(--brand-blue-light);
}

.slide-label strong {
  display: block;
  color: var(--brand-blue);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.slide-label small {
  display: block;
  margin-top: 6px;
  color: var(--brand-black);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

.slide-label-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slide-label-detail span {
  display: block;
}

.footer {
  background: var(--brand-black);
  color: var(--brand-white);
  padding: clamp(52px, 7vw, 84px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.footer-brand,
.footer-card {
  padding: 28px;
  border: 1px solid var(--brand-blue-light);
  border-radius: 24px;
  background: var(--brand-black);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  width: min(100%, 220px);
  height: auto;
}

.footer-card h3 {
  margin: 0 0 14px;
  color: var(--brand-contrast);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-card a {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--brand-white);
  font-size: 0.98rem;
  line-height: 1.75;
  transition: color 0.2s ease;
}

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

.footer-contact a {
  display: flex;
  align-items: center;
  width: 100%;
  line-height: 1.5;
}

.footer-card a:hover {
  color: var(--brand-white);
}

.footer-card .icon {
  margin-top: 3px;
  font-size: 1.15rem;
  color: var(--brand-contrast);
}

.footer-bottom {
  margin-top: 34px;
  padding: 18px var(--pad-x) 22px;
  border-top: 1px solid var(--brand-blue-light);
  color: var(--brand-white);
  text-align: center;
  font-size: 0.82rem;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 130;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: var(--brand-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  background: #20BD5C;
}

.floating-whatsapp .icon {
  font-size: 1.7rem;
  color: var(--brand-white);
}

@media (min-width: 769px) {
  .benefit-card-freight .benefit-note span {
    display: inline;
  }

  .benefit-card-freight .benefit-note span + span {
    margin-left: 0.3em;
  }

  .hero-description-box .hero-description {
    max-width: none;
    line-height: 1.3;
  }

  .hero-description-box .hero-description span:first-child {
    display: inline;
  }

  .hero-description-box .hero-description .hero-description-highlight {
    display: inline;
    margin: 0 0 0 0.28em;
  }

  .hero-description-box .hero-description span:last-child {
    display: block;
    margin-top: 2px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 70px 0 50px;
  }

  .hero-shell {
    justify-content: center;
    align-items: flex-start;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
    align-items: start;
    width: min(100%, 920px);
    padding: 34px 38px;
    gap: 34px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 60px rgba(2, 2, 2, 0.24);
  }

  .hero-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: start;
    width: min(100%, 320px);
    filter: drop-shadow(0 4px 24px rgba(2, 2, 2, 0.28));
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 440px;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
  }

  .hero-title {
    font-size: clamp(2.75rem, 4.9vw, 4.2rem);
    line-height: 0.92;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .hero-title span {
    display: inline-block;
  }

  .hero-title span + span {
    margin-left: 0.2em;
  }

  .hero-subtitle {
    max-width: 24ch;
    font-size: clamp(0.98rem, 1.2vw, 1.2rem);
    line-height: 1.22;
  }

  .hero-description-box {
    width: min(100%, 400px);
    padding: 13px 18px;
    margin-top: -2px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-description-box .hero-description {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .hero-cta {
    width: auto;
    min-width: 280px;
    margin-top: 6px;
  }

  .hero-scroll-cue {
    display: flex;
    width: fit-content;
    margin: 18px auto 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }

  .hero-scroll-cue span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .hero-scroll-cue .icon {
    font-size: 1.2rem;
    transform: rotate(90deg);
    animation: hero-scroll-bob 1.7s ease-in-out infinite;
  }
}

@keyframes hero-scroll-bob {
  0%, 100% {
    transform: rotate(90deg) translateX(0);
  }
  50% {
    transform: rotate(90deg) translateX(6px);
  }
}

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

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

@media (max-width: 768px) {
  :root {
    --carousel-gap: 14px;
    --ticker-height: 52px;
  }

  .ticker-item {
    padding: 0 24px;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-card {
    padding: 22px;
    border-radius: 26px;
  }

  .hero-title {
    font-size: clamp(1.92rem, 8.9vw, 2.95rem);
    letter-spacing: -0.04em;
  }

  .hero-title span {
    display: inline-block;
  }

  .hero-title span + span {
    margin-left: 0.28em;
  }

  .hero-description {
    font-size: 0.92rem;
    max-width: 28ch;
  }

  .hero-description-box {
    width: min(100%, 320px);
    padding: 12px 14px;
    border-radius: 16px;
  }

  .hero-description-box .hero-description {
    max-width: none;
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .carousel-slide {
    flex-basis: calc((100% - var(--carousel-gap)) / 2);
  }

  .carousel-arrow.prev {
    left: 4px;
  }

  .carousel-arrow.next {
    right: 4px;
  }

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

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

  .footer-brand,
  .footer-card {
    padding: 24px;
  }
}

@media (max-width: 520px) {
  .section-title {
    line-height: 0.98;
  }

  .carousel-slide {
    flex-basis: 100%;
  }

  .carousel-slide img {
    height: 300px;
  }

  .benefits-grid {
    gap: 14px;
  }

  .benefit-card {
    min-height: 210px;
    padding: 22px 14px 24px;
  }

  .benefit-card h3 {
    font-size: 1.06rem;
  }

  .benefit-card-freight {
    justify-content: flex-start;
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .benefit-card-freight .benefit-icon {
    margin-bottom: 24px;
    width: 72px;
    height: 72px;
  }

  .benefit-card-freight h3 {
    margin: 0 !important;
    margin-block: 0 !important;
    font-size: 1rem;
    line-height: 1 !important;
  }

  .benefits-section .benefit-card.benefit-card-freight .benefit-note {
    margin-top: 8px !important;
    font-size: 0.74rem;
    line-height: 1.08 !important;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }
}
