.to-banner {
  --c-dark: #111e1a;
  --c-accent: #ffaa66;
  --c-white: #ffffff;
  --c-muted: rgba(255,255,255,0.65);
  --radius: 10px;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--c-dark);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.to-img-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
}

.to-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  filter: brightness(0.82) saturate(0.92);
}

.to-banner:hover .to-img-wrap img {
  transform: scale(1.02);
}

.to-overlay {
  display: none;
}

.to-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.to-banner:hover .to-track {
  opacity: 1;
}

@keyframes drawTrack {
  from { stroke-dashoffset: 800; }
  to { stroke-dashoffset: 0; }
}

.to-banner:hover .to-track-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawTrack 1.4s ease forwards;
}

@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.8); }
}

.to-track-dot {
  transform-origin: 600px 30px;
  animation: pulseDot 2s ease-in-out infinite;
}

.to-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 22px 22px;
  background: var(--c-dark);
  color: var(--c-white);
}

.to-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.to-headline {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.to-brand {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.to-model {
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--c-white);
  text-transform: uppercase;
  line-height: 0.95;
}

.to-claim {
  font-size: clamp(0.95rem, 2.2vw, 1.35rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.45;
  margin: 0;
  border-left: 3px solid var(--c-accent);
  padding-left: 14px;
}

.to-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.to-btn {
  position: relative;
  z-index: 5;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.8em 1.8em;
  background: transparent;
  border: 2px solid var(--c-accent);
  color: var(--c-accent) !important;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.to-btn:hover {
  background: var(--c-accent);
  color: var(--c-dark) !important;
  box-shadow: 0 4px 18px rgba(255,170,102,0.35);
}

.to-btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.to-btn:hover .to-btn-arrow {
  transform: translateX(4px);
}

.to-copy {
  font-size: 0.85rem;
  color: var(--c-muted);
  opacity: 0.75;
  position: relative;
  z-index: 4;
  pointer-events: none;
  bottom: 270px;
    right: -53%; 	
}

.pf {
  --pf-dark: #111e1a;
  --pf-dark-soft: #16261f;
  --pf-accent: #ffaa66;
  --pf-white: #ffffff;
  --pf-muted: rgba(255,255,255,0.68);
  --pf-radius: 10px;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--pf-radius);
  background: var(--pf-dark);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.pf-img-wrapper {
  position: relative;
  width: 100%;
  line-height: 0;
  background: var(--pf-dark-soft);
}

.pf-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: transform 1.1s cubic-bezier(0.25, 1, 0.5, 1), filter 0.35s ease;
  filter: brightness(0.9) saturate(0.95);
}

.pf:hover .pf-img-wrapper img {
  transform: scale(1.03);
  filter: brightness(1) saturate(1.05);
}

.pf-overlay {
  display: none;
}

.pf-bar {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 22px 22px;
  background: var(--pf-dark);
  color: var(--pf-white);
}

.pf-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pf-eye {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pf-muted);
}

.pf-title {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.6rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--pf-white);
  text-transform: uppercase;
}

.pf-title em {
  font-style: normal;
}

.pf-highlight {
  color: var(--pf-accent);
}

.pf-sub {
  margin: 0;
  font-size: clamp(0.95rem, 2.2vw, 1.28rem);
  line-height: 1.45;
  color: rgba(255,255,255,0.9);
  border-left: 3px solid var(--pf-accent);
  padding-left: 14px;
  max-width: 620px;
}

.pf-cta {
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

.pf-btn {
  position: relative;
  z-index: 6;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;  
  padding: 0.8em 1.8em;
  background: #2f5d50;
  border: 2px solid var(--pf-accent);
  color: var(--pf-accent) !important;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.pf-btn:hover {
  background: var(--pf-accent);
  color: var(--pf-dark) !important;
  box-shadow: 0 4px 18px rgba(255,170,102,0.35);
}

.pf-copy {
  font-size: 0.85rem;
  color: var(--pf-muted);
  opacity: 0.75;
  position: relative;
  z-index: 4;
  pointer-events: none;
}

.pf-img-wrapper::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -75%;
  width: 42%;
  height: 140%;
  background: linear-gradient(115deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 35%, rgba(255,255,255,0.16) 50%, rgba(255,255,255,0) 65%, rgba(255,255,255,0) 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}

.pf:hover .pf-img-wrapper::after {
  opacity: 1;
  animation: pfShineSweep 1.1s ease forwards;
}

@keyframes pfShineSweep {
  from { left: -75%; }
  to { left: 140%; }
}

@media (min-width: 768px) {
  .to-banner {
    aspect-ratio: 1192 / 722;
  }

  .to-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .to-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .to-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 30%, rgba(17, 30, 26, 0.55) 60%, rgba(17, 30, 26, 0.92) 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.35s ease;
    z-index: 1;
  }

  .to-banner:hover .to-overlay {
    opacity: 0;
  }

  .to-content {
    position: absolute;
    left: 52px;
    right: 52px;
    bottom: 40px;
    z-index: 3;
    background: transparent;
    padding: 0;
    gap: 16px;
    max-width: 620px;
    text-shadow: 0 2px 18px rgba(0,0,0,0.55);
    pointer-events: none;
  }

  .to-footer,
  .to-btn {
    pointer-events: auto;
  }

  .to-claim {
    max-width: 620px;
  }

  .to-copy {
    position: absolute;
    top: 18px;
    right: 18px;
    margin: 0;
  }

  .pf {
    aspect-ratio: 1192 / 722;
  }

  .pf-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .pf-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .pf-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 28%, rgba(17, 30, 26, 0.48) 58%, rgba(17, 30, 26, 0.9) 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.35s ease;
    z-index: 1;
  }

  .pf:hover .pf-overlay {
    opacity: 0.12;
  }

  .pf-bar {
    position: absolute;
    left: 52px;
    right: 52px;
    bottom: 40px;
    z-index: 3;
    background: transparent;
    padding: 0;
    max-width: 680px;
    gap: 18px;
    text-shadow: 0 2px 18px rgba(0,0,0,0.5);
    pointer-events: none;
  }

  .pf-text,
  .pf-cta,
  .pf-btn {
    pointer-events: auto;
  }

  .pf-copy {
    position: absolute;
    top: 18px;
    right: 18px;
    margin: 0;
  }
}

@media (min-width: 1100px) {
  .to-content {
    left: 64px;
    right: 64px;
    bottom: 50px;
    max-width: 680px;
  }

  .pf-bar {
    left: 64px;
    right: 64px;
    bottom: 50px;
    max-width: 740px;
  }
}