:root {
  --font-size: 16px;
  --font-main: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;

  --background: #f7f9fc;
  --foreground: #1a2638;
  --card: #ffffff;
  --card-foreground: #1a2638;
  --primary: #1b4f8c;
  --primary-dark: #0d2e5c;
  --primary-mid: #1e5fa0;
  --primary-soft: #eef3fa;
  --primary-muted: #5a7fa8;
  --muted: #e8edf5;
  --muted-foreground: #5a6b82;
  --accent: #e84b3a;
  --accent-soft: #ff8075;
  --accent-light: #ffaa9d;
  --border: rgba(27, 79, 140, 0.12);
  --white-border: rgba(255, 255, 255, 0.1);

  --radius-sm: 0.5rem;
  --radius-md: 0.625rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-3xl: 1.5rem;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 22px 50px rgba(15, 23, 42, 0.18);
  --shadow-2xl: 0 28px 70px rgba(15, 23, 42, 0.24);

  --container-width: 80rem;
  --navbar-height: 76px;
  --logo-height: 40px;
  --section-padding: 6rem;
  --page-gutter: 1.5rem;
}

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

html {
  font-size: var(--font-size);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(27, 79, 140, 0.3);
  outline-offset: 2px;
}

section {
  scroll-margin-top: calc(var(--navbar-height) + 16px);
}

.container,
.hero-container,
.nav-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.section-light {
  background: var(--background);
}

.section-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 1.5rem;
  color: var(--foreground);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-copy {
  margin: 0;
  color: var(--muted-foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
}

.section-heading {
  margin-bottom: 4rem;
}

.section-heading-center {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading-center .section-title {
  margin-bottom: 1rem;
}

.section-heading-center .section-copy {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.section-heading-inverse .section-label {
  color: var(--accent-soft);
}

.section-heading-inverse .section-title {
  color: #ffffff;
}

.section-heading-inverse .section-copy {
  color: rgba(255, 255, 255, 0.6);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  line-height: 1.5;
  transition:
    opacity 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
}

.button-primary:hover {
  opacity: 0.9;
}

.button-primary:active {
  transform: scale(0.95);
}

.button-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 700;
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: transparent;
  font-family: var(--font-main);
  transition:
    background-color 300ms ease,
    box-shadow 300ms ease,
    backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
}

.brand-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: var(--navbar-height);
  overflow: hidden;
}

.brand-logo {
  width: auto;
  height: var(--logo-height);
  max-height: 100%;
  object-fit: contain;
}

.nav-desktop,
.nav-actions {
  display: none;
}

.nav-link {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .nav-link {
  color: rgba(26, 38, 56, 0.7);
}

.site-header.is-scrolled .nav-link:hover {
  color: var(--primary);
  background: var(--primary-soft);
}

.nav-actions {
  align-items: center;
  gap: 0.75rem;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.language-switcher-desktop {
  padding: 0.125rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.1);
}

.language-button {
  min-height: 1.625rem;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.25;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.language-switcher-desktop .language-button:hover {
  color: #ffffff;
}

.language-switcher-desktop .language-button.is-active {
  background: #ffffff;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.nav-cta {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.5;
  box-shadow: var(--shadow-md);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover {
  opacity: 0.9;
}

.nav-cta:active {
  transform: scale(0.95);
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .mobile-menu-toggle {
  color: var(--foreground);
}

.site-header.is-scrolled .mobile-menu-toggle:hover {
  background: var(--primary-soft);
}

.menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-icon-close {
  display: none;
}

.site-header.is-mobile-open .menu-icon-open {
  display: none;
}

.site-header.is-mobile-open .menu-icon-close {
  display: inline-flex;
}

.mobile-navigation {
  display: none;
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.site-header.is-mobile-open .mobile-navigation,
.mobile-navigation.is-open {
  display: block;
}

.mobile-language-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(27, 79, 140, 0.08);
}

.mobile-language-icon {
  color: var(--muted-foreground);
  flex-shrink: 0;
}

.mobile-language-label {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switcher-mobile {
  margin-left: auto;
  gap: 0.25rem;
}

.language-switcher-mobile .language-button {
  border: 1px solid var(--border);
  color: var(--muted-foreground);
}

.language-switcher-mobile .language-button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.language-switcher-mobile .language-button.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.mobile-nav-link {
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(27, 79, 140, 0.08);
  color: rgba(26, 38, 56, 0.8);
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  transition: color 180ms ease;
}

.mobile-nav-link:last-of-type {
  border-bottom: 0;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-nav-cta {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.5;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 55%,
    var(--primary-mid) 100%
  );
  font-family: var(--font-main);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  background: var(--accent);
  pointer-events: none;
}

.hero-orb-top {
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  opacity: 0.1;
  transform: translate(30%, -30%);
}

.hero-orb-bottom {
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  opacity: 0.06;
  transform: translate(-40%, 40%);
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.hero-content {
  color: #ffffff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  background: rgba(232, 75, 58, 0.25);
  color: var(--accent-light);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #f87171;
  animation: tm-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-title {
  margin: 0 0 1.5rem;
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: var(--accent-soft);
}

.hero-description {
  max-width: 28rem;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-value {
  color: var(--accent-light);
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-stat-label {
  margin-top: 0.125rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.animated-truck-frame {
  position: relative;
  width: 100%;
  max-width: 36rem;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--primary-soft);
  box-shadow: var(--shadow-2xl);
}

.animated-truck-svg {
  width: 100%;
  height: 100%;
  max-height: 420px;
}

.hero-active-card {
  position: absolute;
  left: -1rem;
  bottom: -1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-2xl);
  background: #ffffff;
  box-shadow: var(--shadow-xl);
}

.hero-active-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--accent);
  flex-shrink: 0;
}

.hero-active-label {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.hero-active-value {
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.hero-wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
}

.hero-wave svg {
  width: 100%;
  height: auto;
}

.about-section,
.values-section,
.culture-section,
.contact-section,
.services-section,
.mission-section,
.multi-deliver-section,
.delivery-types-section,
.why-us-section {
  padding: var(--section-padding) 0;
  font-family: var(--font-main);
}

.about-grid,
.values-grid,
.culture-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.about-grid,
.culture-grid,
.contact-grid {
  align-items: center;
}

.values-grid {
  align-items: start;
}

.about-visual {
  position: relative;
}

.delivery-illustration-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 28rem;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  padding: 2rem;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  background: var(--primary-soft);
}

.delivery-illustration-svg {
  width: 100%;
  height: 100%;
}

.about-year-card,
.about-trusted-card {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.about-year-card {
  top: 1.5rem;
  right: -1rem;
  padding: 1rem 1.25rem;
}

.about-year-value {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.about-year-label {
  margin-top: 0.125rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  line-height: 1.5;
}

.about-trusted-card {
  left: 1.5rem;
  bottom: -1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
}

.about-trusted-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--primary);
  flex-shrink: 0;
}

.about-trusted-title {
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.4;
}

.about-trusted-subtitle {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  line-height: 1.4;
}

.about-content strong {
  color: var(--foreground);
}

.about-emphasis-copy {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: var(--primary-soft);
  transition: box-shadow 180ms ease;
}

.about-feature-card:hover {
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: #ffffff;
  flex-shrink: 0;
}

.feature-title {
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.4;
}

.feature-description {
  margin-top: 0.125rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  line-height: 1.4;
}

.services-section {
  background: var(--primary-dark);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.06);
  cursor: default;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-0.25rem);
}

.service-card-highlight {
  border-color: transparent;
  background: var(--accent);
  box-shadow: var(--shadow-2xl);
}

.service-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.25;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-2xl);
  background: rgba(27, 79, 140, 0.4);
  color: #7bafd4;
}

.service-card-highlight .service-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.service-title {
  margin: 0 0 0.75rem;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.45;
}

.service-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.75;
}

.service-card-highlight .service-description {
  color: rgba(255, 255, 255, 0.85);
}

.service-more {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1.25rem;
  color: #93c5fd;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}

.service-card-highlight .service-more {
  color: #ffffff;
}

.philosophy-card {
  padding: 2rem;
  border-radius: var(--radius-3xl);
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: #ffffff;
}

.philosophy-label {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.philosophy-quote,
.culture-quote-line {
  margin: 0;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.25;
}

.philosophy-quote {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.philosophy-quote-accent,
.culture-quote-accent {
  color: var(--accent-light);
}

.philosophy-description {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.75;
}

.values-section {
  background: var(--background);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

.values-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.values-content .section-copy {
  max-width: 36rem;
}

.values-philosophy {
  width: 100%;
  margin-top: 2rem;
  box-shadow: 0 18px 44px rgba(13, 46, 92, 0.16);
}

.value-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

.value-item {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 5.75rem;
  padding: 1.125rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.value-item:hover {
  border-color: rgba(27, 79, 140, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.value-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}

.value-number-blue {
  background: var(--primary);
}

.value-number-red {
  background: var(--accent);
}

.value-title {
  margin: 0;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.value-description {
  margin: 0.25rem 0 0;
  color: var(--muted-foreground);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.55;
}

.value-chevron {
  color: rgba(90, 107, 130, 0.35);
  flex-shrink: 0;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.value-item:hover .value-chevron {
  color: var(--primary);
  transform: translateX(2px);
}

.mission-section {
  background: var(--primary-soft);
}

.multi-deliver-section {
  overflow: hidden;
  background: linear-gradient(135deg, #f7f9fc 0%, #eef3fa 100%);
}

.multi-deliver-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.multi-deliver-copy .section-title {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.multi-deliver-copy .section-label {
  display: block;
  margin-bottom: 1rem;
}

.multi-deliver-copy .section-copy {
  max-width: 34rem;
}

.multi-deliver-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(232, 75, 58, 0.1);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.4;
}

.multi-deliver-badge-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: var(--accent);
  animation: tm-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.route-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-map-card {
  width: 100%;
  max-width: 24rem;
  padding: 2rem;
  border-radius: var(--radius-3xl);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: var(--shadow-xl);
}

.route-map-svg {
  width: 100%;
  height: auto;
}

.route-pin {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: tm-route-pin 1.8s ease-in-out infinite;
}

.route-pin-b {
  animation-delay: 0.18s;
}

.route-pin-c {
  animation-delay: 0.36s;
}

.route-pin-d {
  animation-delay: 0.54s;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-card h3,
.delivery-type-card h3,
.why-card h3 {
  margin: 0;
  color: var(--foreground);
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.35;
}

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

.benefit-card p,
.delivery-type-card p,
.why-card p {
  margin: 0.35rem 0 0;
  color: var(--muted-foreground);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.benefit-card p {
  font-size: 0.875rem;
}

.native-icon,
.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.native-icon {
  width: 3.5rem;
  height: 3.5rem;
}

.native-icon svg,
.why-icon svg {
  width: 100%;
  height: 100%;
}

.native-icon-blue,
.why-icon-blue {
  color: var(--primary);
}

.native-icon-red,
.why-icon-red {
  color: var(--accent);
}

.delivery-types-section {
  background: var(--background);
}

.delivery-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.delivery-type-card {
  display: flex;
  min-height: 13.25rem;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.25rem;
  border: 1px solid rgba(27, 79, 140, 0.08);
  border-radius: var(--radius-2xl);
  text-align: center;
  cursor: default;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.delivery-type-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-0.25rem);
}

.delivery-type-card:hover h3 {
  color: var(--primary);
}

.category-icon,
.category-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
}

.category-icon svg {
  width: 100%;
  height: 100%;
}

.delivery-type-blue {
  background: #eef3fa;
}

.delivery-type-orange {
  background: #fff8ee;
}

.delivery-type-yellow {
  background: #fffaee;
}

.delivery-type-stone {
  background: #f5f0e8;
}

.delivery-type-green {
  background: #f0f8f0;
}

.delivery-type-rose {
  background: #f5f0ee;
}

.delivery-type-slate {
  background: #eef1f5;
}

.delivery-type-more {
  justify-content: center;
  border: 2px dashed var(--accent);
  background: rgba(232, 75, 58, 0.03);
}

.category-plus {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.delivery-type-more h3 {
  color: var(--accent);
}

.why-us-section {
  background: #f0f4fa;
}

.why-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.why-card {
  display: flex;
  min-height: 13rem;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background: #ffffff;
  text-align: center;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-0.25rem);
}

.why-card:hover h3 {
  color: var(--primary);
}

.why-icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius-2xl);
}

.why-icon-blue {
  background: rgba(27, 79, 140, 0.08);
}

.why-icon-red {
  background: rgba(232, 75, 58, 0.08);
}

.why-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 2rem;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 60%,
    var(--accent) 100%
  );
  color: #ffffff;
}

.why-cta-copy {
  text-align: center;
}

.why-cta-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.why-cta h3 {
  margin: 0.25rem 0 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.why-cta-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.why-cta-point {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 700;
}

.why-cta-point span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: #f5c842;
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 900;
  flex-shrink: 0;
}

.why-cta-point p {
  margin: 0;
}

.why-cta-button {
  flex-shrink: 0;
  min-height: 3.5rem;
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-2xl);
  background: var(--accent);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.why-cta-button:hover {
  opacity: 0.9;
}

.why-cta-button:active {
  transform: scale(0.96);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.mission-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-3xl);
  background: #ffffff;
  transition: box-shadow 180ms ease;
}

.mission-card:hover {
  box-shadow: var(--shadow-lg);
}

.mission-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-2xl);
  color: #ffffff;
}

.mission-icon-blue {
  background: var(--primary);
}

.mission-icon-red {
  background: var(--accent);
}

.mission-title {
  margin: 0 0 0.75rem;
  color: var(--foreground);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.45;
}

.mission-description {
  margin: 0;
  color: var(--muted-foreground);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
}

.culture-section {
  background: var(--background);
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.culture-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.culture-content .section-copy {
  max-width: 36rem;
}

.culture-tier-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  margin-top: 2rem;
}

.culture-tier {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  min-height: 5.25rem;
  padding: 1.125rem;
  border: 1px solid rgba(27, 79, 140, 0.1);
  border-radius: var(--radius-xl);
  background: var(--primary-soft);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.culture-tier:hover {
  border-color: rgba(27, 79, 140, 0.2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.culture-tier-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-lg);
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}

.culture-tier-arrow-blue {
  background: var(--primary);
}

.culture-tier-arrow-muted {
  background: var(--primary-muted);
}

.culture-tier-arrow-red {
  background: var(--accent);
}

.culture-tier-title {
  margin: 0;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.culture-tier-description {
  margin: 0.25rem 0 0;
  color: var(--muted-foreground);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.55;
}

.culture-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-self: stretch;
}

.culture-philosophy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 17.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 18px 44px rgba(13, 46, 92, 0.16);
}

.culture-quote-line {
  margin: 0 0 0.25rem;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.culture-quote-accent {
  color: var(--accent-light);
}

.culture-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.culture-pillar {
  display: flex;
  min-height: 8.25rem;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.125rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background: #ffffff;
  text-align: center;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.culture-pillar:hover {
  border-color: rgba(27, 79, 140, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.culture-pillar-title {
  margin: 0 0 0.625rem;
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.35;
}

.culture-pillar-description {
  margin: 0;
  color: var(--muted-foreground);
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.6;
}

.contact-section {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
}

.contact-content {
  color: #ffffff;
}

.contact-section .section-label {
  color: var(--accent-soft);
}

.contact-section .section-title {
  color: #ffffff;
}

.contact-section .section-copy {
  color: rgba(255, 255, 255, 0.65);
}

.contact-info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-lg);
  background: rgba(232, 75, 58, 0.25);
  color: var(--accent-soft);
  flex-shrink: 0;
}

.contact-info-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info-value {
  margin-top: 0.125rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}

.contact-info-value a {
  color: inherit;
  text-decoration: none;
}

.contact-info-value a:hover {
  color: var(--accent-soft);
}

.contact-form {
  padding: 2rem;
  border-radius: var(--radius-3xl);
  background: #ffffff;
  box-shadow: var(--shadow-2xl);
}

.contact-form-title {
  margin: 0 0 1.5rem;
  color: var(--foreground);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.45;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.375rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--primary-soft);
  color: var(--foreground);
  font-size: 0.875rem;
  line-height: 1.5;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.form-field input {
  min-height: 3rem;
  padding: 0.75rem 1rem;
}

.form-field textarea {
  min-height: 7.5rem;
  padding: 0.75rem 1rem;
  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(90, 107, 130, 0.75);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(27, 79, 140, 0.38);
  box-shadow: 0 0 0 3px rgba(27, 79, 140, 0.18);
  outline: none;
}

.contact-submit {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.5;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.contact-submit:hover {
  opacity: 0.9;
}

.contact-submit:active {
  transform: scale(0.95);
}

.contact-submit.is-loading,
.contact-submit:disabled {
  cursor: wait;
  opacity: 0.85;
}

.contact-submit-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.swal2-terramove-popup {
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  background: #ffffff;
  box-shadow: var(--shadow-2xl);
  font-family: var(--font-main);
}

.swal2-terramove-title {
  color: var(--foreground);
  font-size: 1.5rem;
  font-weight: 800;
}

.swal2-terramove-html {
  color: var(--muted-foreground);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

.swal2-actions {
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.swal2-terramove-confirm {
  min-width: 10.75rem;
  min-height: 3.125rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.swal2-terramove-cancel {
  min-width: 7rem;
  min-height: 3.125rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--primary-soft);
  color: var(--muted-foreground);
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 800;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.swal2-terramove-confirm:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(232, 75, 58, 0.24);
}

.swal2-terramove-cancel:hover {
  border-color: rgba(27, 79, 140, 0.22);
  color: var(--primary);
  transform: translateY(-1px);
}

.swal2-terramove-confirm:focus,
.swal2-terramove-cancel:focus {
  box-shadow: 0 0 0 3px rgba(27, 79, 140, 0.18);
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.25rem;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #25d366;
  box-shadow: 0 16px 34px rgba(8, 28, 56, 0.18);
  backdrop-filter: blur(10px);
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 20px 38px rgba(8, 28, 56, 0.22);
}

.floating-whatsapp:active {
  transform: scale(0.97);
}

.floating-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.12);
  flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 1;
}

.floating-whatsapp-label {
  color: var(--foreground);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .swal2-actions {
    width: 100%;
    padding: 0 0.5rem;
  }

  .swal2-terramove-confirm,
  .swal2-terramove-cancel {
    flex: 1 1 0;
    min-width: 0;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
    min-height: 3rem;
    padding: 0.5rem;
  }

  .floating-whatsapp-label {
    display: none;
  }
}

.site-footer {
  background: #060f1f;
  font-family: var(--font-main);
}

.footer-container {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  width: auto;
  height: var(--logo-height);
  margin-bottom: 1rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-description {
  max-width: 20rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer-heading {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-link-list,
.footer-service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.footer-link {
  display: block;
  padding: 0;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.5;
  transition: color 180ms ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-service {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy,
.footer-founded {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.footer-copy {
  max-width: 100%;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
}

.footer-copy-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-copy-link:hover {
  color: #ffffff;
}

.footer-heart {
  color: #e44f64;
  display: inline-block;
  font-size: 1.35em;
  line-height: 1;
  vertical-align: -0.08em;
}

.footer-founded {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}

.image-with-fallback {
  vertical-align: middle;
}

.tm-wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: tm-wheel-spin 0.55s linear infinite;
}

.tm-road-track {
  animation: tm-road-move 0.55s linear infinite;
}

.tm-sl-1 {
  animation: tm-speed-line 0.7s ease-in infinite;
}

.tm-sl-2 {
  animation: tm-speed-line 0.7s ease-in infinite 0.23s;
}

.tm-sl-3 {
  animation: tm-speed-line 0.7s ease-in infinite 0.46s;
}

.tm-clouds {
  animation: tm-cloud-drift 9s linear infinite;
}

.tm-pkg-red {
  transform-box: fill-box;
  transform-origin: center;
  animation: tm-package-float-red 2.4s ease-in-out infinite;
}

.tm-pkg-blue {
  transform-box: fill-box;
  transform-origin: center;
  animation: tm-package-float-blue 3s ease-in-out infinite 0.5s;
}

.tm-pin {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: tm-pin-bounce 1.6s ease-in-out infinite;
}

@keyframes tm-wheel-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tm-road-move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-110px);
  }
}

@keyframes tm-speed-line {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-55px);
  }
}

@keyframes tm-cloud-drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-300px);
  }
}

@keyframes tm-package-float-red {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

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

@keyframes tm-package-float-blue {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(-5deg);
  }
}

@keyframes tm-pin-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes tm-route-pin {
  0%,
  100% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-6px);
  }
}

@keyframes tm-pulse {
  50% {
    opacity: 0.5;
  }
}
